13 lines
290 B
Text
13 lines
290 B
Text
|
cmake_minimum_required(VERSION 3.12)
|
||
|
|
||
|
project(doompanning)
|
||
|
|
||
|
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)
|
||
|
|
||
|
add_subdirectory(external)
|
||
|
add_subdirectory(src)
|