diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-11-01 18:53:50 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-11-01 18:53:50 -0400 |
commit | dc1303d5d1e04ec63b4a5776909cf007fb8fdfe6 (patch) | |
tree | 9617fe3444faf78073e7d11976127e31258a71fa /CMakeLists.txt | |
download | jdtalkc-dc1303d5d1e04ec63b4a5776909cf007fb8fdfe6.tar.gz |
Initial commit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..c6f5d02 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.8) +project(jdtalkc C) + +set(CMAKE_C_STANDARD 99) + +add_executable(jdtalkc main.c) |