Skip to content

Commit 3857c16

Browse files
committed
build: add core_utility dependency to tools needing CppMacros.h
1 parent 8699708 commit 3857c16

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

Core/Tools/Babylon/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ target_sources(core_babylon PRIVATE ${BABYLON_SRC})
5858

5959
target_link_libraries(core_babylon PRIVATE
6060
core_config
61+
core_utility
6162
)
6263

6364
if(WIN32 OR "${CMAKE_SYSTEM}" MATCHES "Windows")

Core/Tools/DebugWindow/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ target_sources(core_debugwindow PRIVATE ${DEBUGWINDOW_SRC})
1414

1515
target_link_libraries(core_debugwindow PRIVATE
1616
core_config
17+
core_utility
1718
)
1819

1920
if(WIN32 OR "${CMAKE_SYSTEM}" MATCHES "Windows")

Core/Tools/W3DView/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ target_precompile_headers(corei_w3dview INTERFACE
177177
[["WWCommon.h"]]
178178
)
179179

180+
target_link_libraries(corei_w3dview INTERFACE
181+
core_utility
182+
)
183+
180184
if(WIN32 OR "${CMAKE_SYSTEM}" MATCHES "Windows")
181185
target_sources(corei_w3dview INTERFACE W3DView.rc)
182186
endif()

0 commit comments

Comments
 (0)