diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2019-11-07 23:34:06 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-08 08:41:29 -0500 |
commit | c4c62db41d3aa70ae0c99b53d3d697285a7f0e18 (patch) | |
tree | bb34ebf1bfc8d5501652e6584146bd6d177c0e21 /CMakeLists.txt | |
download | reloc-c4c62db41d3aa70ae0c99b53d3d697285a7f0e18.tar.gz |
Initial commit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1c8055f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 2.8.11) +project(reloc C) + +set(CMAKE_C_STANDARD 99) +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra") + +add_executable(reloc main.c reloc.h) |