Skip to content

Commit 2713267

Browse files
authored
[CORE] Move debug and profile libraries from Zero Hour to Core (#819)
1 parent 0820395 commit 2713267

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+26
-32
lines changed

Core/Libraries/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
add_subdirectory(Source/WWVegas)
33

44
# profiling library
5-
#add_subdirectory(Source/profile)
5+
add_subdirectory(Source/profile)
66

77
# debugging library
8-
#add_subdirectory(Source/debug)
8+
add_subdirectory(Source/debug)
99

1010
add_subdirectory(Source/EABrowserDispatch)
1111
add_subdirectory(Source/EABrowserEngine)

GeneralsMD/Code/Libraries/Source/debug/CMakeLists.txt renamed to Core/Libraries/Source/debug/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ set(DEBUG_SRC
2424
"internal.h"
2525
)
2626

27-
add_library(z_debug STATIC)
27+
add_library(core_debug STATIC)
2828

29-
target_sources(z_debug PRIVATE ${DEBUG_SRC})
29+
target_sources(core_debug PRIVATE ${DEBUG_SRC})
3030

31-
target_include_directories(z_debug INTERFACE
31+
target_include_directories(core_debug INTERFACE
3232
${CMAKE_CURRENT_SOURCE_DIR}
3333
)
3434

35-
target_link_libraries(z_debug PRIVATE
35+
target_link_libraries(core_debug PRIVATE
3636
core_config
37-
zi_always
37+
corei_always
3838
)

0 commit comments

Comments
 (0)