]> SALOME platform Git repositories - modules/gui.git/blob - tools/PyInterp/CMakeLists.txt
Salome HOME
55a496784978eb64bb91a55ae5b44a5555b786a3
[modules/gui.git] / tools / PyInterp / CMakeLists.txt
1 # Copyright (C) 2015-2020  CEA/DEN, EDF R&D, OPEN CASCADE
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
48 #
49 # Set list of prerequisites
50 # =========================
51
52 FIND_PACKAGE(SalomePythonInterp REQUIRED)
53 FIND_PACKAGE(SalomePythonLibs REQUIRED)
54 # Qt
55 FIND_PACKAGE(SalomeQt5 REQUIRED)
56
57 # Detection report
58 SALOME_PACKAGE_REPORT_AND_CHECK()
59
60 # Directories
61 #
62 # Directories have to be given after prerequisites (to be able to use
63 # Python version string for example).
64 # ===========
65 SET(PYINTERP_INSTALL_LIBS lib CACHE PATH "Install path: PyInterp libs")
66 SET(PYINTERP_INSTALL_HEADERS include CACHE PATH "Install path: PyInterp headers")
67
68 SET(PYINTERP_INSTALL_RES share/resources CACHE PATH "Install path: PyInterp resources")
69
70 # Sources
71 # ========
72 ADD_SUBDIRECTORY(src)
73