Salome HOME
Update copyrights 2014.
[modules/gui.git] / src / GuiHelpers / CMakeLists.txt
1 # Copyright (C) 2012-2014  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, 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 # additional include directories
21 INCLUDE_DIRECTORIES(
22   ${CAS_INCLUDE_DIRS}
23   ${QT_INCLUDES}
24   ${Boost_INCLUDE_DIRS}
25   ${OMNIORB_INCLUDE_DIR}
26   ${PTHREAD_INCLUDE_DIR}
27   ${PROJECT_SOURCE_DIR}/src/SalomeApp
28   ${PROJECT_SOURCE_DIR}/src/LightApp
29   ${PROJECT_SOURCE_DIR}/src/SUIT
30   ${PROJECT_SOURCE_DIR}/src/Qtx
31   ${PROJECT_SOURCE_DIR}/src/CAM
32   ${PROJECT_SOURCE_DIR}/src/STD
33   ${PROJECT_SOURCE_DIR}/src/OBJECT
34 )
35
36 # additional preprocessor / compiler flags
37 ADD_DEFINITIONS(
38   ${CAS_DEFINITIONS}
39   ${QT_DEFINITIONS}
40   ${BOOST_DEFINITIONS}
41   ${OMNIORB_DEFINITIONS}
42 )
43
44 # libraries to link to
45 SET(_link_LIBRARIES 
46   ${CORBA_LIBS}
47   ${KERNEL_SalomeKernelHelpers}
48   qtx suit std CAM SalomeObject LightApp SalomeApp
49 )
50
51 # --- headers ---
52
53 # header files / to be processed by moc
54 SET(_moc_HEADERS
55   StandardApp_Module.hxx
56 )
57
58 # header files / no moc processing
59 SET(_other_HEADERS
60   QtHelper.hxx
61   SALOME_AppStudyEditor.hxx
62   SALOME_GuiServices.hxx
63   SalomeGuiHelpers.hxx
64 )
65
66 # header files / to install
67 SET(SalomeGuiHelpers_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
68
69 # --- sources ---
70
71 # sources / moc wrappings
72 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
73
74 # sources / static
75 SET(_other_SOURCES
76   SALOME_AppStudyEditor.cxx
77   SALOME_GuiServices.cxx
78   StandardApp_Module.cxx
79 )
80
81 # sources / to compile
82 SET(SalomeGuiHelpers_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
83
84 # --- rules ---
85
86 ADD_LIBRARY(SalomeGuiHelpers ${SalomeGuiHelpers_SOURCES})
87 TARGET_LINK_LIBRARIES(SalomeGuiHelpers ${_link_LIBRARIES})
88 INSTALL(TARGETS SalomeGuiHelpers EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
89
90 INSTALL(FILES ${SalomeGuiHelpers_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})