1
0
Fork 0
mirror of https://github.com/gwm17/Specter.git synced 2024-05-18 06:43:20 -04:00
Specter/CMakeLists.txt

16 lines
320 B
CMake

cmake_minimum_required(VERSION 3.16)
set(CMAKE_CXX_STANDARD 20)
if(NOT CMAKE_BUILD_TYPE STREQUAL "Release")
set(CMAKE_BUILD_TYPE "Debug")
message("Building debug")
else()
message("Building release")
endif()
project(Specter)
set(CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_SOURCE_DIR})
add_subdirectory(Specter)