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:
authorMartijn Berger <martijn.berger@gmail.com>2016-02-18 10:19:14 +0300
committerMartijn Berger <martijn.berger@gmail.com>2016-02-18 10:19:14 +0300
commita8e6b633c9f54f0948a0b9a47534bc38ac95889f (patch)
tree65179c33af64c5e4c51886a330ae798ad39a3333 /source/creator
parenta8fe3a1ceef31ca39a455fee25bc1e361e1048ff (diff)
Fix: T46526, Do not try to install sqlite3.dll anymore as we link it statically into pythons _sqlite
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index aa4b0c37efd..2710cffd2d3 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -621,21 +621,6 @@ elseif(WIN32)
if(WITH_PYTHON)
string(REPLACE "." "" _PYTHON_VERSION_NO_DOTS ${PYTHON_VERSION})
- # MinGW TODO: This bit of Python configuration diverges from MSVC
- if(NOT CMAKE_COMPILER_IS_GNUCC)
- install(
- FILES ${LIBDIR}/python/lib/python${_PYTHON_VERSION_NO_DOTS}.dll ${LIBDIR}/python/lib/sqlite3.dll
- DESTINATION "."
- CONFIGURATIONS Release;RelWithDebInfo;MinSizeRel
- )
-
- install(
- FILES ${LIBDIR}/python/lib/python${_PYTHON_VERSION_NO_DOTS}_d.dll ${LIBDIR}/python/lib/sqlite3_d.dll
- DESTINATION "."
- CONFIGURATIONS Debug
- )
- endif()
-
if(WITH_PYTHON_INSTALL)
# note, as far as python is concerned 'RelWithDebInfo' is not debug since its without debug flags.