shithub: candycrisis

ref: c75e4291d7a56380d858c5b3fbee8ec23026a233
dir: /CMakeLists.txt/

View raw version
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)