Salome HOME
Copyrights update 2015.
[modules/jobmanager.git] / src / salomegui / 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 # additional include directories
22 INCLUDE_DIRECTORIES(
23   ${Boost_INCLUDE_DIRS}
24   ${OMNIORB_INCLUDE_DIR}
25   ${KERNEL_INCLUDE_DIRS}
26   ${GUI_INCLUDE_DIRS}
27   ${PROJECT_BINARY_DIR}
28   ${PROJECT_BINARY_DIR}/idl
29   ${PROJECT_SOURCE_DIR}/src/genericgui
30   ${PROJECT_SOURCE_DIR}/src/wrappers
31   ${PROJECT_SOURCE_DIR}/src/engine
32   ${PROJECT_SOURCE_DIR}/src/bases
33 )
34
35 # additional preprocessor / compiler flags
36 ADD_DEFINITIONS(
37   ${OMNIORB_DEFINITIONS}
38   ${BOOST_DEFINITIONS}
39 )
40
41 # libraries to link to
42 SET(_link_LIBRARIES
43   ${CORBA_LIBS}
44   BL_Bases
45   BL_Engine
46   BL_GenericGui
47   BL_Wrappers_SALOME
48   JOBMANAGER_IDL
49 )
50
51 # --- headers ---
52
53 # header files / to be processed by moc
54 SET(JOBMANAGER_HEADERS
55   BL_SalomeGui.hxx
56 )
57
58 # --- sources ---
59
60 # sources / moc wrappings
61 QT4_WRAP_CPP(_moc_SOURCES ${JOBMANAGER_HEADERS})
62
63 # sources / static
64 SET(_other_SOURCES
65   BL_SalomeGui.cxx
66 )
67
68 # --- resources ---
69
70 SALOME_CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/resources/SalomeApp.xml.in ${CMAKE_CURRENT_BINARY_DIR}/resources/SalomeApp.xml INSTALL ${SALOME_JOBMANAGER_INSTALL_RES_DATA})
71
72 # resource files / static
73 SET(_other_RESOURCES
74   resources/jobmanager.png
75 )
76
77 # sources / to compile
78 SET(JOBMANAGER_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
79
80 # --- rules ---
81
82 ADD_LIBRARY(JOBMANAGER ${JOBMANAGER_SOURCES})
83 TARGET_LINK_LIBRARIES(JOBMANAGER ${_link_LIBRARIES} )
84 INSTALL(TARGETS JOBMANAGER EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
85
86 INSTALL(FILES ${JOBMANAGER_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
87
88 INSTALL(FILES ${_other_RESOURCES} DESTINATION ${SALOME_JOBMANAGER_INSTALL_RES_DATA})