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:
authorNathan Letwory <nathan@letworyinteractive.com>2011-03-09 23:58:26 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-03-09 23:58:26 +0300
commit58fbef0a19e7cdf985e84b14855c561acf40b4ac (patch)
tree5927cd96ca1c60b463423bdcfb751a30ec46b0a6 /source/creator
parent108d150032a22f6eeb87253ec6ea5d4a88d1e8d8 (diff)
Don't try to copy gnu_gettext.dll when building 64bit Blender - it's linked statically on win64.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 85d2dad66b3..7e00b554c6c 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -358,13 +358,13 @@ if(WITH_INSTALL)
PATTERN ".svn" EXCLUDE
)
- install(
- FILES ${LIBDIR}/gettext/lib/gnu_gettext.dll
- DESTINATION ${TARGETDIR}/
- )
-
if(NOT CMAKE_CL_64)
install(
+ FILES ${LIBDIR}/gettext/lib/gnu_gettext.dll
+ DESTINATION ${TARGETDIR}/
+ )
+
+ install(
FILES ${LIBDIR}/iconv/lib/iconv.dll
DESTINATION ${TARGETDIR}/
)