View Issue Details [ Jump to Notes ] | [ Print ] |
ID | Project | Category | View Status | Date Submitted | Last Update |
0011871 | VTK | (No Category) | public | 2011-02-16 16:18 | 2013-04-05 19:34 |
|
Reporter | Mathieu Malaterre | |
Assigned To | David Cole | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | won't fix | |
Platform | | OS | | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | | |
|
Summary | 0011871: Add install rule for Kitware.mummy.Runtime.dll |
Description | It would be nice to also have install rules for Kitware.mummy.Runtime.dll
See attached patch
Thanks |
Tags | No tags attached. |
|
Project | |
Type | |
|
Attached Files | install_mummy_runtime_dll.patch [^] (819 bytes) 2011-02-16 16:18 [Show Content] [Hide Content]Index: mummy-1.0.2/Runtime/CMakeLists.txt
===================================================================
--- mummy-1.0.2.orig/Runtime/CMakeLists.txt 2011-02-16 22:08:55.000000000 +0100
+++ mummy-1.0.2/Runtime/CMakeLists.txt 2011-02-16 22:15:33.000000000 +0100
@@ -81,6 +81,17 @@
"${CMAKE_CURRENT_SOURCE_DIR}/WrappedObject.cs"
)
+ SET(ace_BinDir "${CMAKE_CURRENT_BINARY_DIR}")
+
+ SET(ace_ExeDir "${ace_BinDir}/${CMAKE_CFG_INTDIR}")
+ IF(EXECUTABLE_OUTPUT_PATH)
+ SET(ace_ExeDir "${EXECUTABLE_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}")
+ ENDIF(EXECUTABLE_OUTPUT_PATH)
+
+INSTALL(FILES
+ ${ace_ExeDir}/Kitware.mummy.Runtime.dll
+ DESTINATION ${MUMMY_RUNTIME_UNMANAGED_INSTALL_LIB_DIR}
+)
ADD_LIBRARY(MRSmokeTest SHARED MRSmokeTest.cxx)
TARGET_LINK_LIBRARIES(MRSmokeTest Kitware.mummy.Runtime.Unmanaged)
|
|