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