Salome HOME
Update copyrights 2014.
[modules/yacs.git] / src / hmi / CMakeLists.txt
1 # Copyright (C) 2012-2014  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 # --- options ---
21
22 IF(SALOME_YACS_USE_KERNEL)
23   INCLUDE_DIRECTORIES(${KERNEL_INCLUDE_DIRS})
24   ADD_DEFINITIONS(${KERNEL_DEFINITIONS})
25 ENDIF(SALOME_YACS_USE_KERNEL)
26
27 # additional include directories
28 INCLUDE_DIRECTORIES(
29   ${OMNIORB_INCLUDE_DIR}
30   ${LIBXML2_INCLUDE_DIR}
31   ${PYTHON_INCLUDE_DIR}
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   ${PYTHON_DEFINITIONS}
43   ${OMNIORB_DEFINITIONS}
44   )
45 IF(WIN32)
46   ADD_DEFINITIONS(-DNOGDI)
47 ENDIF(WIN32)
48
49 # libraries to link to
50 SET(_link_LIBRARIES
51   ${EXPAT_LIBRARIES}
52   ${LIBXML2_LIBRARIES}
53   YACSRuntimeSALOME
54   YACSloader
55   )
56
57 # --- sources ---
58
59 SET(HMI_SOURCES
60   commands.cxx
61   commandsProc.cxx
62   guiObservers.cxx
63   guiContext.cxx
64   )
65
66 # --- rules ---
67
68 ADD_LIBRARY(HMI ${HMI_SOURCES})
69 TARGET_LINK_LIBRARIES(HMI ${_link_LIBRARIES})
70 INSTALL(TARGETS HMI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})