mirror of
https://github.com/DaedalusX64/daedalus.git
synced 2025-04-02 10:21:48 -04:00
15 lines
400 B
CMake
15 lines
400 B
CMake
add_library(Debug OBJECT
|
|
DebugConsoleImpl.cpp
|
|
DebugLog.cpp
|
|
Dump.cpp
|
|
PrintOpCode.cpp
|
|
Registers.cpp
|
|
Synchroniser.cpp
|
|
)
|
|
|
|
if(DAEDALUS_PROFILE_DEBUG)
|
|
target_compile_options(Debug PRIVATE -pg)
|
|
endif(DAEDALUS_PROFILE_DEBUG)
|
|
|
|
list(APPEND daed_libs "Debug")
|
|
set(daed_libs ${daed_libs} PARENT_SCOPE)
|