mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
12 lines
295 B
CMake
12 lines
295 B
CMake
cmake_minimum_required(VERSION 3.26)
|
|
project(omath)
|
|
|
|
set(CMAKE_CXX_STANDARD 26)
|
|
option(BUILD_TESTS "Build test programs" ON)
|
|
add_library(omath STATIC source/Vector3.cpp)
|
|
|
|
add_subdirectory(source)
|
|
add_subdirectory(extlibs)
|
|
add_subdirectory(tests)
|
|
|
|
target_include_directories(omath PUBLIC include) |