]> SALOME platform Git repositories - modules/adao.git/blob - CMakeLists.txt
Salome HOME
CMake implementation pour split d install pour branchement a l IHM
[modules/adao.git] / CMakeLists.txt
1 # Copyright (C) 2008-2019 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.
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 # Author: Anthony Geay, anthony.geay@edf.fr, EDF R&D
20
21 cmake_minimum_required(VERSION 2.6)
22
23 # Ensure a proper linker behavior:
24 CMAKE_POLICY(SET CMP0003 NEW)
25
26 project(ADAO)
27
28 include(CMakeDependentOption)
29
30 option(ADAO_PYTHON_MODULE "Build and install ADAO python module files only." ON)
31 option(ADAO_BUILD_DOC "Build and install ADAO documentation." ON)
32 cmake_dependent_option(ADAO_SALOME_MODULE "Build and install ADAO SALOME module files based on ADAO python module." ON "NOT ADAO_PYTHON_MODULE" OFF)
33
34 find_package(PythonInterp)
35
36 if(NOT PYTHONINTERP_FOUND)
37   message(FATAL_ERROR "Python interp not found ! We absolutely need it !")
38 endif(NOT PYTHONINTERP_FOUND)
39
40 set(ADAO_SCRIPT_PYTHON "lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages")
41 set(ADAO_SCRIPT_PYTHON_SALOME "${ADAO_SCRIPT_PYTHON}/salome")
42 set(ADAO_LIB "lib/salome")
43 set(ADAO_RES "share/salome/resources/adao")
44 set(ADAO_BIN "bin/salome")
45 set(ADAO_BIN_TEST "bin/salome/test")
46
47 if(ADAO_PYTHON_MODULE)
48   
49   add_subdirectory(src)
50   
51 else(ADAO_PYTHON_MODULE)
52
53   # ADAO_SALOME_MODULE
54   set(CONFIGURATION_ROOT_DIR $ENV{CONFIGURATION_ROOT_DIR} CACHE PATH "Path to the Salome CMake configuration files")
55   if(EXISTS ${CONFIGURATION_ROOT_DIR})
56     list(APPEND CMAKE_MODULE_PATH "${CONFIGURATION_ROOT_DIR}/cmake")
57     include(SalomeMacros)
58
59     if(ADAO_BUILD_DOC)
60       find_package(SalomeSphinx)
61       if(NOT SPHINX_FOUND)
62         message(FATAL_ERROR "Sphinx has not been found !")
63       endif(NOT SPHINX_FOUND)
64     endif(ADAO_BUILD_DOC)
65     
66   else()
67     message(FATAL_ERROR "We absolutely need the Salome CMake configuration files, please define CONFIGURATION_ROOT_DIR !")
68   endif()
69
70   find_package(SalomeOmniORB REQUIRED)
71   find_package(SalomeOmniORBPy REQUIRED)
72   find_package(SalomeKERNEL REQUIRED)
73   KERNEL_WITH_CORBA()
74   
75   if(NOT ADAO_PYTHON_ROOT_DIR)
76     message(FATAL_ERROR "ADAO_PYTHON_ROOT_DIR cmake variable has to be set if ADAO_SALOME_MODULE option is ON.")
77   endif(NOT ADAO_PYTHON_ROOT_DIR)
78   find_file(FILE_OF_ADAO_PYTHON_MODULE "daCore/__init__.py" PATHS "${ADAO_PYTHON_ROOT_DIR}/${ADAO_SCRIPT_PYTHON_SALOME}/adao")
79   if(NOT FILE_OF_ADAO_PYTHON_MODULE)
80     message(FATAL_ERROR "Could not locate daCore/__init__.py into specified ADAO_PYTHON_ROOT_DIR directory ! Sounds bad !")
81   endif(NOT FILE_OF_ADAO_PYTHON_MODULE)
82
83   if(NOT EFICAS_ROOT_DIR)
84     message(FATAL_ERROR "EFICAS_ROOT_DIR is absolutely needed !")
85   endif(NOT EFICAS_ROOT_DIR)
86   
87   find_file(FILE_OF_EFICAS "generator/__init__.py" PATHS ${EFICAS_ROOT_DIR})
88
89   if(NOT FILE_OF_EFICAS)
90     message(FATAL_ERROR "Could not locate generator/__init__.py into EFICAS_ROOT_DIR")
91   endif(NOT FILE_OF_EFICAS)
92   
93   add_subdirectory(src)
94   add_subdirectory(idl)
95   add_subdirectory(resources)
96   add_subdirectory(bin)
97   add_subdirectory(examples)
98   add_subdirectory(test)
99   add_subdirectory(i18n)
100   add_subdirectory(doc)
101   
102 endif(ADAO_PYTHON_MODULE)