doompanning/external/sdl_nyan/CMakeLists.txt

15 lines
348 B
Text
Raw Normal View History

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")
2024-12-16 20:14:37 +01:00
if (NOT DOOMPANNING_INTERNAL_SDL)
find_package(SDL2 2.0.17)
endif()
add_subdirectory(src)