]> SALOME platform Git repositories - modules/yacs.git/blob - src/hmi/CMakeLists.txt
Salome HOME
Introduction of CMake build procedure for YACS module.
[modules/yacs.git] / src / hmi / CMakeLists.txt
1 # Copyright (C) 2012-2013  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.
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 # --- options ---
21
22 IF(SALOME_YACS_USE_KERNEL)
23   SET(SALOME_INCL_PATH ${KERNEL_INCLUDE_DIRS})
24 ENDIF(SALOME_YACS_USE_KERNEL)
25
26 # additional include directories
27 INCLUDE_DIRECTORIES(
28   ${OMNIORB_INCLUDE_DIR}
29   ${LIBXML2_INCLUDE_DIR}
30   ${PYTHON_INCLUDE_DIR}
31   ${SALOME_INCL_PATH}
32   ${PROJECT_SOURCE_DIR}/src/bases
33   ${PROJECT_SOURCE_DIR}/src/engine
34   ${PROJECT_SOURCE_DIR}/src/runtime
35   ${PROJECT_SOURCE_DIR}/src/yacsloader
36   ${PROJECT_BINARY_DIR}/idl
37   ${PROJECT_BINARY_DIR}/src/yacsorb
38   )
39
40 # additional preprocessor / compiler flags
41 ADD_DEFINITIONS(
42   -DYACS_PTHREAD
43   ${PYTHON_DEFINITIONS}
44   ${OMNIORB_DEFINITIONS}
45   )
46
47 # libraries to link to
48 SET(_link_LIBRARIES
49   ${EXPAT_LIBRARIES}
50   ${LIBXML2_LIBRARIES}
51   YACSRuntimeSALOME
52   YACSloader
53   )
54
55 # --- sources ---
56
57 SET(HMI_SOURCES
58   commands.cxx
59   commandsProc.cxx
60   guiObservers.cxx
61   guiContext.cxx
62   )
63
64 # --- rules ---
65
66 ADD_LIBRARY(HMI ${HMI_SOURCES})
67 TARGET_LINK_LIBRARIES(HMI ${_link_LIBRARIES})
68 INSTALL(TARGETS HMI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})