summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2016-03-22 14:28:18 -0700
committerMike McLaughlin <mikem@microsoft.com>2016-03-22 14:28:18 -0700
commitcfe34e6d0ed068caab9c4ee370549e86db4ee2bd (patch)
treecfc60ded18c454e47ccca85f34383a4d7b0edfd2 /src/tools
parent672176b73de7bea8bf66457152ae0c19f156cb56 (diff)
parent4efef62f0ead16b4f8ca2c6ccf0a77ce112f73b9 (diff)
downloadcoreclr-cfe34e6d0ed068caab9c4ee370549e86db4ee2bd.tar.gz
coreclr-cfe34e6d0ed068caab9c4ee370549e86db4ee2bd.tar.bz2
coreclr-cfe34e6d0ed068caab9c4ee370549e86db4ee2bd.zip
Merge pull request #3794 from mikem8361/stripsym
Strip symbols on release builds into separate binaries
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/crossgen/CMakeLists.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/tools/crossgen/CMakeLists.txt b/src/tools/crossgen/CMakeLists.txt
index 9bbf37334a..d5e956620f 100644
--- a/src/tools/crossgen/CMakeLists.txt
+++ b/src/tools/crossgen/CMakeLists.txt
@@ -64,14 +64,11 @@ else()
if (NOT CLR_CMAKE_PLATFORM_ARCH_ARM64)
target_link_libraries(crossgen ${STATIC_MT_VCRT_LIB})
endif()
-
- # We will generate PDB only for the debug configuration
- install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/crossgen.pdb DESTINATION PDB)
-
endif(CLR_CMAKE_PLATFORM_UNIX)
-install (TARGETS crossgen DESTINATION .)
-
add_subdirectory(../../zap/crossgen ../../zap/crossgen)
add_subdirectory(../../vm/crossgen ../../vm/crossgen)
add_subdirectory(../../vm/crossgen_mscorlib ../../vm/crossgen_mscorlib)
+
+# add the install targets
+install_clr(crossgen) \ No newline at end of file