mirror of
https://github.com/DaedalusX64/daedalus.git
synced 2025-04-02 10:21:48 -04:00
8 lines
208 B
CMake
8 lines
208 B
CMake
add_library(Math OBJECT Matrix4x4.cpp)
|
|
|
|
if(DAEDALUS_PROFILE_MATH)
|
|
target_compile_options(Math PRIVATE -pg)
|
|
endif(DAEDALUS_PROFILE_MATH)
|
|
|
|
list(APPEND daed_libs "Math")
|
|
set(daed_libs ${daed_libs} PARENT_SCOPE)
|