aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas-Karl Pietrowski <thopiekar@googlemail.com>2015-09-28 16:50:11 +0200
committerThomas-Karl Pietrowski <thopiekar@googlemail.com>2015-09-28 16:50:11 +0200
commitdbd84dee2310715531be3579b615130909599611 (patch)
tree16f2ccd21540f79c1a37e5d97e1a2ebd275eb763
parent3bf98a1ba7b3aafa2914d96c06875a9fa47494da (diff)
Removing CMAKE_DEBUG_POSTFIX for Windows
1. This is wrong for Python >= 3 2. No needed, because PySide2 does it now on it's own.
-rw-r--r--setup.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 5c70f4360..c4b793247 100644
--- a/setup.py
+++ b/setup.py
@@ -602,9 +602,6 @@ class pyside_build(_build):
if self.build_type.lower() == 'debug':
cmake_cmd.append("-DPYTHON_DEBUG_LIBRARY=%s" % self.py_library)
- if sys.platform == 'win32':
- cmake_cmd.append("-DCMAKE_DEBUG_POSTFIX=_d")
-
if extension.lower() == "shiboken2":
cmake_cmd.append("-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=yes")
if sys.version_info[0] > 2: