Salome HOME
Update copyrights
[modules/gui.git] / tools / PyConsole / CMakeLists.txt
1 # Copyright (C) 2015-2019  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12 FATAL_ERROR)
21 PROJECT(PyConsole C CXX)
22
23 # Versioning
24 # ===========
25 # Project name, upper case
26 STRING(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UC)
27
28 ###################
29 # To be changed once externalized CMake procedure:
30 SET(KERNEL_ROOT_DIR $ENV{KERNEL_ROOT_DIR} CACHE PATH "Path to the Salome KERNEL")
31 IF(EXISTS ${KERNEL_ROOT_DIR})
32   LIST(APPEND CMAKE_MODULE_PATH "${KERNEL_ROOT_DIR}/salome_adm/cmake_files")
33   INCLUDE(SalomeMacros)
34 ELSE(EXISTS ${KERNEL_ROOT_DIR})
35   MESSAGE(FATAL_ERROR "We absolutely need a Salome KERNEL, please define KERNEL_ROOT_DIR")
36 ENDIF(EXISTS ${KERNEL_ROOT_DIR})
37 # From GUI - again to be changed once externalized:
38 LIST(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/../../adm_local/cmake_files")
39 ###################
40
41 # Platform setup
42 # ==============
43 INCLUDE(SalomeSetupPlatform)
44
45 # Options
46 # =======
47 OPTION(PYCONSOLE_BUILD_WITH_QT5 "Build PYCONSOLE with Qt 5" ON)
48 OPTION(PYCONSOLE_BUILD_PYTHON "Build Python wrapping for PyConsole" ON)
49
50 #
51 # Set list of prerequisites
52 # =========================
53
54 FIND_PACKAGE(SalomePythonInterp REQUIRED)
55 FIND_PACKAGE(SalomePythonLibs REQUIRED)
56
57 # Qt
58 IF(NOT PYCONSOLE_BUILD_WITH_QT5)
59   FIND_PACKAGE(SalomeQt4 REQUIRED)
60 ELSE()
61   FIND_PACKAGE(SalomeQt5 REQUIRED)
62 ENDIF()
63
64 IF(PYCONSOLE_BUILD_PYTHON)
65   # Sip
66   FIND_PACKAGE(SalomeSIP REQUIRED)  # should come after Python and before PyQt
67   SALOME_LOG_OPTIONAL_PACKAGE(SalomeSIP PYCONSOLE_BUILD_PYTHON)
68   # PyQt
69   IF (NOT PYCONSOLE_BUILD_WITH_QT5)
70     FIND_PACKAGE(SalomePyQt4 REQUIRED)
71     SALOME_LOG_OPTIONAL_PACKAGE(SalomePyQt4 PYCONSOLE_BUILD_PYTHON)
72   ELSE()
73     FIND_PACKAGE(SalomePyQt5 REQUIRED)
74     SALOME_LOG_OPTIONAL_PACKAGE(SalomePyQt5 PYCONSOLE_BUILD_PYTHON)
75   ENDIF()
76 ENDIF(PYCONSOLE_BUILD_PYTHON)
77
78 # Detection report
79 SALOME_PACKAGE_REPORT_AND_CHECK()
80
81 # Directories
82 #
83 # Directories have to be given after prerequisites (to be able to use
84 # Python version string for example).
85 # ===========
86 SET(PYCONSOLE_INSTALL_LIBS lib CACHE PATH "Install path: PyConsole libs")
87 SET(PYCONSOLE_INSTALL_HEADERS include CACHE PATH "Install path: PyConsole headers")
88
89 SET(PYCONSOLE_INSTALL_RES share/resources CACHE PATH "Install path: PyConsole resources")
90
91 # Tool dependencies
92 # =================
93 # PyConsole depends on PyInterp:
94 SET(PYINTERP_INSTALL_LIBS "${PYCONSOLE_INSTALL_LIBS}"  CACHE PATH "")
95 SET(PYINTERP_INSTALL_HEADERS "${PYCONSOLE_INSTALL_HEADERS}" CACHE PATH "")
96 SET(PYINTERP_INSTALL_RES "${PYCONSOLE_INSTALL_RES}" CACHE PATH "")
97 OPTION(PYINTERP_BUILD_WITH_QT5 "Build PYCONSOLE with Qt 5" ${PYCONSOLE_BUILD_WITH_QT5})
98
99 ADD_SUBDIRECTORY(${PROJECT_SOURCE_DIR}/../PyInterp ${PROJECT_BINARY_DIR}/PyInterp)
100 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/../PyInterp/src)
101
102 # Sources
103 # ========
104 ADD_SUBDIRECTORY(src)
105