From 96b3dfcc4247c60e59b40bb5c9b6368a460a7554 Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Wed, 14 Apr 2021 11:13:01 -0700 Subject: [PATCH] Add stub definitions of inject debug resources targets to fix runtimeinfo build dependency issues. --- src/coreclr/dlls/mscoree/coreclr/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/coreclr/dlls/mscoree/coreclr/CMakeLists.txt b/src/coreclr/dlls/mscoree/coreclr/CMakeLists.txt index 2df7852c304f90..fae55ecdc3ea50 100644 --- a/src/coreclr/dlls/mscoree/coreclr/CMakeLists.txt +++ b/src/coreclr/dlls/mscoree/coreclr/CMakeLists.txt @@ -243,6 +243,9 @@ if(CLR_CMAKE_TARGET_WIN32) add_custom_target(inject_debug_resources_singlefilehost ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/inject_debug_resources_singlefilehost.timestamp) add_dependencies(runtime inject_debug_resources_singlefilehost) endif() +else() + add_custom_target(inject_debug_resources_coreclr DEPENDS coreclr) + add_custom_target(inject_debug_resources_singlefilehost DEPENDS singlefilehost) endif(CLR_CMAKE_TARGET_WIN32) # add the install targets