mirror of
https://github.com/AxioDL/zeus.git
synced 2025-07-07 05:36:08 +00:00
11 lines
269 B
CMake
11 lines
269 B
CMake
cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) # because of CMAKE_CXX_STANDARD
|
|
project(zeustest)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
include_directories(../include)
|
|
|
|
add_executable(zeustest main.cpp)
|
|
target_link_libraries(zeustest zeus)
|