mirror of
https://github.com/gwm17/PunchTable.git
synced 2024-11-22 18:28:52 -05:00
10 lines
198 B
CMake
10 lines
198 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(PunchTable)
|
|
|
|
set(CXX_STANDARD 17)
|
|
|
|
set(PUNCHTABLE_BINARY_DIR ${CMAKE_CURRENT_SOURCE_DIR}/bin)
|
|
|
|
add_subdirectory(src/vendor/catima)
|
|
add_subdirectory(src) |