mirror of
https://github.com/gwm17/PunchTable.git
synced 2024-11-22 18:28:52 -05:00
17 lines
379 B
CMake
17 lines
379 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(PunchTable)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
set(CMAKE_BUILD_TYPE "Release")
|
|
MESSAGE(STATUS "Build type Release")
|
|
else()
|
|
MESSAGE(STATUS "Build type Debug")
|
|
endif()
|
|
|
|
set(PUNCHTABLE_BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/bin)
|
|
|
|
add_subdirectory(src/vendor/catima)
|
|
add_subdirectory(src) |