diff options
-rw-r--r-- | crosscomponents.cmake | 5 | ||||
-rw-r--r-- | src/ToolBox/superpmi/mcs/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/ToolBox/superpmi/superpmi-shim-collector/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/ToolBox/superpmi/superpmi-shim-counter/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/ToolBox/superpmi/superpmi-shim-simple/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/ToolBox/superpmi/superpmi/CMakeLists.txt | 4 |
6 files changed, 10 insertions, 15 deletions
diff --git a/crosscomponents.cmake b/crosscomponents.cmake index f68587d04f..be50ffa9d9 100644 --- a/crosscomponents.cmake +++ b/crosscomponents.cmake @@ -8,13 +8,8 @@ set (CLR_CROSS_COMPONENTS_LIST if(NOT CLR_CMAKE_PLATFORM_LINUX) list (APPEND CLR_CROSS_COMPONENTS_LIST - mcs mscordaccore mscordbi sos - superpmi - superpmi-shim-collector - superpmi-shim-counter - superpmi-shim-simple ) endif() diff --git a/src/ToolBox/superpmi/mcs/CMakeLists.txt b/src/ToolBox/superpmi/mcs/CMakeLists.txt index 0856b6f5e6..9f1bde4f5f 100644 --- a/src/ToolBox/superpmi/mcs/CMakeLists.txt +++ b/src/ToolBox/superpmi/mcs/CMakeLists.txt @@ -67,7 +67,7 @@ else() ${STATIC_MT_CPP_LIB} ) - install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/mcs.pdb DESTINATION PDB) + _install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/mcs.pdb DESTINATION PDB) endif(CLR_CMAKE_PLATFORM_UNIX) -install (TARGETS mcs DESTINATION .) +_install (TARGETS mcs DESTINATION .) diff --git a/src/ToolBox/superpmi/superpmi-shim-collector/CMakeLists.txt b/src/ToolBox/superpmi/superpmi-shim-collector/CMakeLists.txt index 3e0df52808..d79d3a583c 100644 --- a/src/ToolBox/superpmi/superpmi-shim-collector/CMakeLists.txt +++ b/src/ToolBox/superpmi/superpmi-shim-collector/CMakeLists.txt @@ -67,7 +67,7 @@ else() ${STATIC_MT_CPP_LIB} ) - install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi-shim-collector.pdb DESTINATION PDB) + _install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi-shim-collector.pdb DESTINATION PDB) endif(CLR_CMAKE_PLATFORM_UNIX) -install (TARGETS superpmi-shim-collector DESTINATION .) +_install (TARGETS superpmi-shim-collector DESTINATION .) diff --git a/src/ToolBox/superpmi/superpmi-shim-counter/CMakeLists.txt b/src/ToolBox/superpmi/superpmi-shim-counter/CMakeLists.txt index 232c8d96be..3330c65e30 100644 --- a/src/ToolBox/superpmi/superpmi-shim-counter/CMakeLists.txt +++ b/src/ToolBox/superpmi/superpmi-shim-counter/CMakeLists.txt @@ -68,7 +68,7 @@ else() ${STATIC_MT_CPP_LIB} ) - install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi-shim-counter.pdb DESTINATION PDB) + _install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi-shim-counter.pdb DESTINATION PDB) endif(CLR_CMAKE_PLATFORM_UNIX) -install (TARGETS superpmi-shim-counter DESTINATION .) +_install (TARGETS superpmi-shim-counter DESTINATION .) diff --git a/src/ToolBox/superpmi/superpmi-shim-simple/CMakeLists.txt b/src/ToolBox/superpmi/superpmi-shim-simple/CMakeLists.txt index f37c1d2416..1b6e8472c6 100644 --- a/src/ToolBox/superpmi/superpmi-shim-simple/CMakeLists.txt +++ b/src/ToolBox/superpmi/superpmi-shim-simple/CMakeLists.txt @@ -67,7 +67,7 @@ else() ${STATIC_MT_CPP_LIB} ) - install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi-shim-simple.pdb DESTINATION PDB) + _install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi-shim-simple.pdb DESTINATION PDB) endif(CLR_CMAKE_PLATFORM_UNIX) -install (TARGETS superpmi-shim-simple DESTINATION .) +_install (TARGETS superpmi-shim-simple DESTINATION .) diff --git a/src/ToolBox/superpmi/superpmi/CMakeLists.txt b/src/ToolBox/superpmi/superpmi/CMakeLists.txt index bbea80515d..3bb3c6f0e8 100644 --- a/src/ToolBox/superpmi/superpmi/CMakeLists.txt +++ b/src/ToolBox/superpmi/superpmi/CMakeLists.txt @@ -68,7 +68,7 @@ else() ${STATIC_MT_CPP_LIB} ) - install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi.pdb DESTINATION PDB) + _install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/superpmi.pdb DESTINATION PDB) endif(CLR_CMAKE_PLATFORM_UNIX) -install (TARGETS superpmi DESTINATION .) +_install (TARGETS superpmi DESTINATION .) |