libcaesium/demo/CMakeLists.txt

9 lines
261 B
CMake
Raw Normal View History

2019-12-23 18:48:19 +01:00
if (NOT WIN32)
set(CMAKE_C_FLAGS "--std=gnu99 -fPIC -Wno-nullability-completeness ${CMAKE_C_FLAGS}")
else ()
set(CMAKE_C_FLAGS "--std=gnu99 ${CMAKE_C_FLAGS}")
endif ()
2017-02-21 12:54:52 +01:00
add_executable(caesiumd main.c)
2016-11-04 11:00:04 +01:00
2017-03-18 19:51:18 +01:00
target_link_libraries(caesiumd LINK_PUBLIC caesium)