mirror of
https://github.com/DaedalusX64/daedalus.git
synced 2025-04-02 10:21:48 -04:00
12 lines
316 B
CMake
12 lines
316 B
CMake
add_library(Utility_POSIX OBJECT
|
|
CondPosix.cpp
|
|
)
|
|
|
|
if(DAEDALUS_PROFILE_UTILITY_POSIX)
|
|
target_compile_options(Utility_POSIX PRIVATE -pg)
|
|
endif(DAEDALUS_PROFILE_UTILITY_POSIX)
|
|
|
|
|
|
list(APPEND daed_libs Utility_POSIX)
|
|
set(daed_libs ${daed_libs} PARENT_SCOPE)
|
|
|