initial commit

This commit is contained in:
Orange
2023-11-23 05:03:54 +03:00
committed by Vladislav Alpatov
commit 7c533861a7
15 changed files with 954 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.26)
project(uml)
add_library(uml source/Vector3.cpp)
add_subdirectory(source)
target_include_directories(uml PUBLIC include)