Salome HOME
Copyrights update 2015.
[modules/yacs.git] / src / hmi / CMakeLists.txt
1 # Copyright (C) 2012-2015  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
46 # libraries to link to
47 SET(_link_LIBRARIES
48   ${LIBXML2_LIBRARIES}
49   YACSRuntimeSALOME
50   YACSloader
51   )
52
53 # --- sources ---
54
55 SET(HMI_SOURCES
56   commands.cxx
57   commandsProc.cxx
58   guiObservers.cxx
59   guiContext.cxx
60   )
61
62 # --- rules ---
63
64 ADD_LIBRARY(HMI ${HMI_SOURCES})
65 TARGET_LINK_LIBRARIES(HMI ${_link_LIBRARIES})
66 INSTALL(TARGETS HMI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})