kerstezel-klant/CMakeLists.txt
2020-12-07 11:49:21 +01:00

15 lines
330 B
CMake

set(CMAKE_MINIMUM_VERSION_REQUIRED 3.0)
project(kerstezel-klant)
if (MSVC)
add_compile_options(/W4 /WX)
else()
add_compile_options(-Wall -Wextra -pedantic -Werror)
endif()
set(KERSTEZEL_SOURCES src/kerstezel.c)
set(KERSTEZEL_HEADERS src/kerstezel.h)
add_executable(kerstezel ${KERSTEZEL_SOURCES} ${KERSTEZEL_HEADERS})