14 lines
348 B
CMake
14 lines
348 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
|
|
project(sdl-nyan)
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
## Create binaries in the root of the build directory
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|
|
set(CMAKE_VERBOSE_MAKEFILE ON CACHE BOOL "ON")
|
|
|
|
if (NOT DOOMPANNING_INTERNAL_SDL)
|
|
find_package(SDL2 2.0.17)
|
|
endif()
|
|
|
|
add_subdirectory(src)
|