aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scratchpad/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/scratchpad/CMakeLists.txt b/scratchpad/CMakeLists.txt
index 1109ca6..d1e4223 100644
--- a/scratchpad/CMakeLists.txt
+++ b/scratchpad/CMakeLists.txt
@@ -3,7 +3,11 @@ add_executable(scratchpad
scratchpad.c
)
+target_compile_options(scratchpad
+ PRIVATE -std=c99
+)
+
target_link_libraries(scratchpad
PRIVATE cmix
PRIVATE cmix-crypto
-) \ No newline at end of file
+)