Salome HOME
redispatch ADAO files between tool and module
[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 set(CONFIGURATION_ROOT_DIR $ENV{CONFIGURATION_ROOT_DIR} CACHE PATH "Path to the Salome CMake configuration files")
48 if(EXISTS ${CONFIGURATION_ROOT_DIR})
49   list(APPEND CMAKE_MODULE_PATH "${CONFIGURATION_ROOT_DIR}/cmake")
50   include(SalomeMacros)
51 else()
52   message(FATAL_ERROR "We absolutely need the Salome CMake configuration files, please define CONFIGURATION_ROOT_DIR !")
53 endif()
54
55 if(ADAO_PYTHON_MODULE)
56
57   if(ADAO_BUILD_DOC)
58     find_package(SalomeSphinx)
59     if(NOT SPHINX_FOUND)
60       message(FATAL_ERROR "Sphinx has not been found !")
61     endif(NOT SPHINX_FOUND)
62   endif(ADAO_BUILD_DOC)
63   
64   add_subdirectory(src)
65   add_subdirectory(resources)
66   add_subdirectory(bin)
67   add_subdirectory(test)
68   add_subdirectory(i18n)
69   add_subdirectory(doc)
70   
71 else(ADAO_PYTHON_MODULE)
72
73   # ADAO_SALOME_MODULE
74
75   find_package(SalomeOmniORB REQUIRED)
76   find_package(SalomeOmniORBPy REQUIRED)
77   find_package(SalomeKERNEL REQUIRED)
78   KERNEL_WITH_CORBA()
79   
80   if(NOT ADAO_PYTHON_ROOT_DIR)
81     message(FATAL_ERROR "ADAO_PYTHON_ROOT_DIR cmake variable has to be set if ADAO_SALOME_MODULE option is ON.")
82   endif(NOT ADAO_PYTHON_ROOT_DIR)
83   find_file(FILE_OF_ADAO_PYTHON_MODULE "daCore/__init__.py" PATHS "${ADAO_PYTHON_ROOT_DIR}/${ADAO_SCRIPT_PYTHON}/adao")
84   if(NOT FILE_OF_ADAO_PYTHON_MODULE)
85     message(FATAL_ERROR "Could not locate daCore/__init__.py into specified ADAO_PYTHON_ROOT_DIR directory ! Sounds bad !")
86   endif(NOT FILE_OF_ADAO_PYTHON_MODULE)
87
88   if(NOT EFICAS_ROOT_DIR)
89     message(FATAL_ERROR "EFICAS_ROOT_DIR is absolutely needed !")
90   endif(NOT EFICAS_ROOT_DIR)
91   
92   find_file(FILE_OF_EFICAS "generator/__init__.py" PATHS ${EFICAS_ROOT_DIR})
93
94   if(NOT FILE_OF_EFICAS)
95     message(FATAL_ERROR "Could not locate generator/__init__.py into EFICAS_ROOT_DIR")
96   endif(NOT FILE_OF_EFICAS)
97   
98   add_subdirectory(src)
99   add_subdirectory(idl)
100   add_subdirectory(resources)
101   
102 endif(ADAO_PYTHON_MODULE)