ref: dbf642749d4890bced0a237d5c512ff0f8083b51
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)