Salome HOME
Updated copyright comment
[plugins/ghs3dplugin.git] / src / GUI / 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(UseQtExt)
21
22 # --- options ---
23 # additional include directories
24 INCLUDE_DIRECTORIES(
25   ${QT_INCLUDES}
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${KERNEL_INCLUDE_DIRS}
28   ${GUI_INCLUDE_DIRS}
29   ${GEOM_INCLUDE_DIRS}
30   ${SMESH_INCLUDE_DIRS}
31   ${MEDCOUPLING_INCLUDE_DIRS}
32   ${Boost_INCLUDE_DIRS}
33   ${OMNIORB_INCLUDE_DIR}
34   ${CMAKE_CURRENT_BINARY_DIR}
35   ${PROJECT_BINARY_DIR}/idl
36   ${PROJECT_SOURCE_DIR}/src/GHS3DPlugin
37   ${PROJECT_SOURCE_DIR}/src/GUI
38 )
39
40 # additional preprocessor / compiler flags
41 ADD_DEFINITIONS(
42   ${QT_DEFINITIONS}
43   ${OMNIORB_DEFINITIONS}
44   ${OpenCASCADE_DEFINITIONS}
45   ${BOOST_DEFINITIONS}
46 )
47
48 # libraries to link to
49 SET(_link_LIBRARIES
50   ${QT_LIBRARIES}
51   ${KERNEL_SALOMELocalTrace}
52   ${GEOM_GEOM}
53   ${SMESH_SMESH}
54   ${SMESH_PluginUtils}
55   ${SMESH_StdMeshersGUI}
56   ${SMESH_SMESHFiltersSelection}
57   ${GUI_suit}
58   ${GUI_qtx}
59   ${GUI_SalomeApp}
60   ${OpenCASCADE_FoundationClasses_LIBRARIES}
61   SalomeIDLGHS3DPLUGIN
62   GHS3DEngine
63 )
64
65 # --- headers ---
66
67 # header files / to be processed by moc
68 SET(_moc_HEADERS
69   GHS3DPluginGUI_HypothesisCreator.h
70   GHS3DPluginGUI_Dlg.h
71   GHS3DPluginGUI_TreeWidget.h
72 )
73
74 # header files / no moc processed
75 SET(_other_HEADERS
76   GHS3DPluginGUI_Enums.h
77 )
78
79 SET(GHS3DPluginGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
80
81 # --- sources ---
82
83 # sources / moc wrappings
84 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
85
86 # sources / static
87 SET(_other_SOURCES
88   GHS3DPluginGUI.cxx
89   GHS3DPluginGUI_HypothesisCreator.cxx
90   GHS3DPluginGUI_AdvWidget.cxx
91   GHS3DPluginGUI_TreeWidget.cxx
92 )
93
94 # --- resources ---
95
96 # resource files / to be processed by lrelease
97 SET(_ts_RESOURCES
98   GHS3DPlugin_images.ts
99   GHS3DPlugin_msg_en.ts
100   GHS3DPlugin_msg_fr.ts
101   GHS3DPlugin_msg_ja.ts
102 )
103
104 # resource files / to be processed by uic
105 SET(_uic_files
106   GHS3DPluginGUI_AdvWidget_QTD.ui
107 )
108
109 # header files / uic wrappings
110 QT_WRAP_UIC(_uic_HEADERS ${_uic_files})
111
112 # sources / to compile
113 SET(GHS3DPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_uic_HEADERS})
114
115 # --- rules ---
116
117 ADD_LIBRARY(GHS3DPluginGUI ${GHS3DPluginGUI_SOURCES})
118 TARGET_LINK_LIBRARIES(GHS3DPluginGUI ${_link_LIBRARIES} )
119 INSTALL(TARGETS GHS3DPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
120
121 INSTALL(FILES ${GHS3DPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
122 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GHS3DPLUGIN_INSTALL_RES_DATA}")