mirror of
https://github.com/DaedalusX64/daedalus.git
synced 2025-04-02 10:21:48 -04:00
26 lines
864 B
CMake
26 lines
864 B
CMake
add_library(Utility OBJECT
|
|
BatchTest.cpp
|
|
CRC.cpp
|
|
FastMemcpy.cpp
|
|
FramerateLimiter.cpp
|
|
Hash.cpp
|
|
IniFile.cpp
|
|
MemoryHeap.cpp
|
|
Paths.cpp
|
|
Profiler.cpp
|
|
Stream.cpp
|
|
StringUtil.cpp
|
|
Timer.cpp
|
|
Translate.cpp
|
|
|
|
)
|
|
|
|
|
|
# Utility/FastMemcpy_test.cpp Utility/MemoryPool.cpp These are testing
|
|
|
|
if(DAEDALUS_PROFILE_UTILITY)
|
|
target_compile_options(Utility PRIVATE -pg)
|
|
endif(DAEDALUS_PROFILE_UTILITY)
|
|
|
|
list(APPEND daed_libs "Utility")
|
|
set(daed_libs ${daed_libs} PARENT_SCOPE)
|