mirror of
https://github.com/AxioDL/zeus.git
synced 2025-07-07 05:36:08 +00:00
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)
|