Salome HOME
40c20ba81a37e1275f0b590b83b0712e3c619732
[modules/gui.git] / tools / PyInterp / 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(PyInterp C CXX)
22
23 # Versioning
24 # ===========
25 # Project name, upper case
26 STRING(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UC)
27
28 # To be changed once externalized CMake procedure:
29 ###################
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(PYINTERP_BUILD_WITH_QT5 "Build PYINTERP with Qt 5" ON)
48
49 #
50 # Set list of prerequisites
51 # =========================
52
53 FIND_PACKAGE(SalomePythonInterp REQUIRED)
54 FIND_PACKAGE(SalomePythonLibs REQUIRED)
55 # Qt
56 IF(NOT PYINTERP_BUILD_WITH_QT5)
57   FIND_PACKAGE(SalomeQt4 REQUIRED)
58 ELSE()
59   FIND_PACKAGE(SalomeQt5 REQUIRED)
60 ENDIF()
61
62 # Detection report
63 SALOME_PACKAGE_REPORT_AND_CHECK()
64
65 # Directories
66 #
67 # Directories have to be given after prerequisites (to be able to use
68 # Python version string for example).
69 # ===========
70 SET(PYINTERP_INSTALL_LIBS lib CACHE PATH "Install path: PyInterp libs")
71 SET(PYINTERP_INSTALL_HEADERS include CACHE PATH "Install path: PyInterp headers")
72
73 SET(PYINTERP_INSTALL_RES share/resources CACHE PATH "Install path: PyInterp resources")
74
75 # Sources
76 # ========
77 ADD_SUBDIRECTORY(src)
78