diff options
author | sanine <sanine.not@pm.me> | 2021-12-21 01:00:11 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2021-12-21 01:00:11 -0600 |
commit | 781b61d0d0131c880d54bd9667fb0b9c81643ba7 (patch) | |
tree | cc751806eaa29cffd6f5d6791c5f79083feb505a /CMakeLists.txt |
initial commit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..379417a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.2) +project( + lily-test + VERSION 0.1.0 + DESCRIPTION "A super-simple single-header C test framework") + +add_executable(lily-metatest ${CMAKE_SOURCE_DIR}/src/test.c) +set_target_properties(lily-metatest PROPERTIES + C_STANDARD 99 + CMAKE_C_FLAGS "-Wall -Wextra -Werror -Wfatal-errors -Wpedantic") |