Salome HOME
daf859e6472a7ccb124b1dbd7bc718706c9fccb8
[modules/yacs.git] / src / hmi / CMakeLists.txt
1 # Copyright (C) 2012-2023  CEA, EDF
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   ${OMNIORBPY_INCLUDE_DIR}
31   ${LIBXML2_INCLUDE_DIR}
32   ${PYTHON_INCLUDE_DIR}
33   ${PROJECT_SOURCE_DIR}/src/bases
34   ${PROJECT_SOURCE_DIR}/src/engine
35   ${PROJECT_SOURCE_DIR}/src/runtime
36   ${PROJECT_SOURCE_DIR}/src/yacsloader
37   ${PROJECT_BINARY_DIR}/idl
38   ${PROJECT_BINARY_DIR}/src/yacsorb
39   )
40
41 # additional preprocessor / compiler flags
42 ADD_DEFINITIONS(
43   ${PYTHON_DEFINITIONS}
44   ${OMNIORB_DEFINITIONS}
45   )
46
47 # libraries to link to
48 SET(_link_LIBRARIES
49   ${LIBXML2_LIBRARIES}
50   YACSRuntimeSALOME
51   YACSloader
52   )
53
54 # --- sources ---
55
56 SET(HMI_SOURCES
57   commands.cxx
58   commandsProc.cxx
59   guiObservers.cxx
60   guiContext.cxx
61   )
62
63 # --- rules ---
64
65 ADD_LIBRARY(HMI ${HMI_SOURCES})
66 TARGET_LINK_LIBRARIES(HMI ${_link_LIBRARIES})
67 INSTALL(TARGETS HMI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})