8 lines
251 B
CMake
8 lines
251 B
CMake
cmake_minimum_required(VERSION 3.30)
|
|
|
|
project(Utils)
|
|
|
|
file(GLOB SOURCES "./private/*.cpp")
|
|
add_library(${PROJECT_NAME} ${SOURCES})
|
|
target_include_directories(${PROJECT_NAME} PUBLIC public)
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC Containers Math)
|