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