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