Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürgen Herrmann <shadowrom@me.com>2013-05-14 23:08:45 +0400
committerJürgen Herrmann <shadowrom@me.com>2013-05-14 23:08:45 +0400
commitd70497cefc0921a70d3a6179af7df58bb55f974c (patch)
treee5bebc14caf9fe8292aea1342be4183d562873b8 /source/creator
parent1f3bf34ccd8b7b29560b819c72619fce7bfc7f4c (diff)
Patch to CMake build system.
Install needed dlls for libjack.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index dd2029cafc9..cd846eb1978 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -636,6 +636,22 @@ elseif(WIN32)
)
endif()
+ if(WITH_JACK AND MSVC11)
+ if(CMAKE_CL_64)
+ install(
+ FILES
+ ${LIBDIR}/jack/lib/libjack64.dll
+ DESTINATION ${TARGETDIR}
+ )
+ else()
+ install(
+ FILES
+ ${LIBDIR}/jack/lib/libjack.dll
+ DESTINATION ${TARGETDIR}
+ )
+ endif()
+ endif()
+
if(WITH_SDL)
if(NOT CMAKE_CL_64)
install(