From 781b61d0d0131c880d54bd9667fb0b9c81643ba7 Mon Sep 17 00:00:00 2001 From: sanine Date: Tue, 21 Dec 2021 01:00:11 -0600 Subject: initial commit --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') 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") -- cgit v1.2.1