cmake_minimum_required(VERSION 3.10) set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) set(BOT_INCLUDEDIR ${CMAKE_CURRENT_SOURCE_DIR}/include) project(LaikaBot VERSION ${LAIKA_VERSION_MAJOR}.${LAIKA_VERSION_MINOR}) # Put CMake targets (ALL_BUILD/ZERO_CHECK) into a folder set_property(GLOBAL PROPERTY USE_FOLDERS ON) # compile LaikaBot file(GLOB_RECURSE BOTSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/**.c) add_executable(LaikaBot ${BOTSOURCE}) target_link_libraries(LaikaBot PUBLIC LaikaLib) # add the 'DEBUG' preprocessor definition if we're compiling as Debug target_compile_definitions(LaikaBot PUBLIC "$<$:DEBUG>") # add include directory target_include_directories(LaikaBot PUBLIC ${BOT_INCLUDEDIR})