1
0
Fork 0
mirror of https://github.com/gwm17/PunchTable.git synced 2025-02-16 18:48:50 -05:00
PunchTable/CMakeLists.txt

17 lines
379 B
CMake
Raw Normal View History

2022-06-09 16:24:29 -04:00
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()
2022-06-09 16:24:29 -04:00
set(PUNCHTABLE_BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/bin)
add_subdirectory(src/vendor/catima)
add_subdirectory(src)