ref: 3202125056967596f1e82e3fe1a74d5df0ae28a6
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)