aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Tismer <ctismer@gmail.com>2015-09-21 11:53:43 +0200
committerChristian Tismer <ctismer@gmail.com>2015-09-21 11:53:43 +0200
commit388ac528de721b8307870ff0096195b246eb6b1b (patch)
tree73f6ec677209ea1de180d0b96ef38b6450f49297
parent4322c2e0f7b790789b685696affad7130e297802 (diff)
huge change on project layout.
The intention is to have PySide2 and Shiboken2 as project names, to allow for co-existence of PySide and PySide2. This is the first version that builds with these settings on OS X: $ python3 setup.py build --debug --no-examples --ignore-git --qmake=/usr/local/Cellar/qt5/5.5.0/bin/qmake --jobs=9 This is not yet tested.
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a8579c3..41482cc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
-project(pyside-tools)
+project(pyside2-tools)
find_package(Shiboken 2.0.0 REQUIRED)
find_package(Qt5 REQUIRED Core)
@@ -8,7 +8,7 @@ find_package(PySide 2.0.0 REQUIRED)
set(pyside_tools_MAJOR_VERSION "2")
set(pyside_tools_MINOR_VERSION "0")
set(pyside_tools_MICRO_VERSION "0")
-set(pyside_tools_VERSION "${pyside_tools_MAJOR_VERSION}.${pyside_tools_MINOR_VERSION}.${pyside_tools_MICRO_VERSION}")
+set(pyside2_tools_VERSION "${pyside_tools_MAJOR_VERSION}.${pyside_tools_MINOR_VERSION}.${pyside_tools_MICRO_VERSION}")
configure_file("pysideuic/__init__.py.in" "__init__.py" @ONLY)