Salome HOME
Updated copyright comment
[modules/yacs.git] / Demo / CMakeLists.txt
1 # Copyright (C) 2012-2024  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 INCLUDE(UseOmniORB)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${OMNIORB_INCLUDE_DIR}
27   ${CMAKE_CURRENT_BINARY_DIR}
28   )
29
30 SET(echo_IDLSOURCES
31   echo.idl
32 )
33
34 SET(IDL_INCLUDE_DIRS
35   ${KERNEL_ROOT_DIR}/idl/salome
36   ${CMAKE_CURRENT_SOURCE_DIR}
37   ${CMAKE_CURRENT_BINARY_DIR}
38 )
39 SET(IDL_LINK_FLAGS
40   ${KERNEL_SalomeIDLKernel}
41 )
42
43 # additional preprocessor / compiler flags
44 ADD_DEFINITIONS(
45   ${OMNIORB_DEFINITIONS}
46   )
47
48 # libraries to link to
49 SET(_link_LIBRARIES
50   ${OMNIORB_LIBRARIES}
51   
52   )
53
54 # --- sources ---
55
56 SET(echoSrvDemo_SOURCES
57   echoSrv.cxx
58   echoSK.cc
59   )
60
61 # --- rules ---
62
63 OMNIORB_ADD_MODULE(echo "${echo_IDLSOURCES}" "${IDL_INCLUDE_DIRS}" "${IDL_LINK_FLAGS}")
64
65 ADD_EXECUTABLE(echoSrvDemo ${echoSrvDemo_SOURCES})
66 TARGET_LINK_LIBRARIES(echoSrvDemo ${_link_LIBRARIES})
67 INSTALL(TARGETS echoSrvDemo EXPORT ${PROJECT_NAME}TargetGroup
68 DESTINATION ${SALOME_INSTALL_BINS})
69
70 ADD_DEPENDENCIES(echoSrvDemo echo)
71
72 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/schema_orig.xml schema.xml)
73 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/xmlrpcprog_orig.py xmlrpcprog.py)