Salome HOME
30f21888b22d34a22d4475a6c9701393a2d53ad8
[modules/gui.git] / tools / PyConsole / CMakeLists.txt
1 # Copyright (C) 2015-2016  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
49 #
50 # Set list of prerequisites
51 # =========================
52
53 FIND_PACKAGE(SalomePythonInterp REQUIRED)
54 FIND_PACKAGE(SalomePythonLibs REQUIRED)
55
56 # Qt
57 IF(NOT PYCONSOLE_BUILD_WITH_QT5)
58   FIND_PACKAGE(SalomeQt4 REQUIRED)
59 ELSE()
60   FIND_PACKAGE(SalomeQt5 REQUIRED)
61 ENDIF()
62
63 # Detection report
64 SALOME_PACKAGE_REPORT_AND_CHECK()
65
66 # Directories
67 #
68 # Directories have to be given after prerequisites (to be able to use
69 # Python version string for example).
70 # ===========
71 SET(PYCONSOLE_INSTALL_LIBS lib CACHE PATH "Install path: PyConsole libs")
72 SET(PYCONSOLE_INSTALL_HEADERS include CACHE PATH "Install path: PyConsole headers")
73
74 SET(PYCONSOLE_INSTALL_RES share/resources CACHE PATH "Install path: PyConsole resources")
75
76 # Tool dependencies
77 # =================
78 # PyConsole depends on PyInterp:
79 SET(PYINTERP_INSTALL_LIBS "${PYCONSOLE_INSTALL_LIBS}"  CACHE PATH "")
80 SET(PYINTERP_INSTALL_HEADERS "${PYCONSOLE_INSTALL_HEADERS}" CACHE PATH "")
81 SET(PYINTERP_INSTALL_RES "${PYCONSOLE_INSTALL_RES}" CACHE PATH "")
82 OPTION(PYINTERP_BUILD_WITH_QT5 "Build PYCONSOLE with Qt 5" ${PYCONSOLE_BUILD_WITH_QT5})
83
84 ADD_SUBDIRECTORY(${PROJECT_SOURCE_DIR}/../PyInterp ${PROJECT_BINARY_DIR}/PyInterp)
85 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/../PyInterp/src)
86
87 # Sources
88 # ========
89 ADD_SUBDIRECTORY(src)
90