ref: 02db2e7cc119355cdb4994cd588fd38411f3195b
dir: /CMakeLists.txt/
cmake_minimum_required(VERSION 3.16) project(CandyCrisis) set(CMAKE_CXX_STANDARD 17) find_package(SDL2 REQUIRED) include_directories(${SDL2_INCLUDE_DIRS}) file(GLOB_RECURSE GAME_SOURCES CONFIGURE_DEPENDS src/*.cpp src/*.c src/*.h) add_executable(CandyCrisis ${GAME_SOURCES}) target_link_libraries(CandyCrisis ${SDL2_LIBRARIES} ${SDL2_IMAGE_LIBRARIES} SDL2)