Salome HOME
Compilation on Windows
[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   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   -DYACS_PTHREAD
43   ${PYTHON_DEFINITIONS}
44   ${OMNIORB_DEFINITIONS}
45   )
46 IF(WIN32)
47   ADD_DEFINITIONS(-DNOGDI)
48 ENDIF(WIN32)
49
50 # libraries to link to
51 SET(_link_LIBRARIES
52   ${EXPAT_LIBRARIES}
53   ${LIBXML2_LIBRARIES}
54   YACSRuntimeSALOME
55   YACSloader
56   )
57
58 # --- sources ---
59
60 SET(HMI_SOURCES
61   commands.cxx
62   commandsProc.cxx
63   guiObservers.cxx
64   guiContext.cxx
65   )
66
67 # --- rules ---
68
69 ADD_LIBRARY(HMI ${HMI_SOURCES})
70 TARGET_LINK_LIBRARIES(HMI ${_link_LIBRARIES})
71 INSTALL(TARGETS HMI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})