mirror of
https://github.com/DaedalusX64/daedalus.git
synced 2025-04-02 10:21:48 -04:00
15 lines
376 B
CMake
15 lines
376 B
CMake
add_library(Utility_CTR OBJECT
|
|
CacheCTR.S
|
|
MemoryCTR.c
|
|
TimingCTR.cpp
|
|
)
|
|
|
|
if(DAEDALUS_PROFILE_UTILITY_CTR)
|
|
target_compile_options(Utility_CTR PRIVATE -pg)
|
|
endif(DAEDALUS_PROFILE_UTILITY_CTR)
|
|
|
|
|
|
list(APPEND daed_libs "Utility_CTR")
|
|
set(daed_libs ${daed_libs} PARENT_SCOPE)
|
|
|
|
|