mirror of https://github.com/AxioDL/zeus.git
11 lines
168 B
CMake
11 lines
168 B
CMake
|
cmake_minimum_required(VERSION 3.0)
|
||
|
project(zeustest)
|
||
|
|
||
|
include_directories(../include)
|
||
|
|
||
|
add_executable(zeustest
|
||
|
main.cpp)
|
||
|
|
||
|
target_link_libraries(zeustest
|
||
|
Math)
|