mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
8 lines
186 B
CMake
8 lines
186 B
CMake
cmake_minimum_required(VERSION 3.26)
|
|
set(CMAKE_CXX_STANDARD 26)
|
|
project(uml)
|
|
|
|
add_library(uml source/Vector3.cpp)
|
|
add_subdirectory(source)
|
|
|
|
target_include_directories(uml PUBLIC include) |