mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
11 lines
164 B
CMake
11 lines
164 B
CMake
file(GLOB PRIVATE_SOURCES "*.cpp")
|
|
|
|
add_library(math STATIC
|
|
${PRIVATE_SOURCES}
|
|
)
|
|
|
|
target_include_directories(math
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/src
|
|
)
|