Salome HOME
#17784 [EDF] MESH-GEMS-2.9.6 Meshers options
[plugins/hybridplugin.git] / src / GUI / CMakeLists.txt
1 # Copyright (C) 2012-2019  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 INCLUDE(UseQtExt)
21
22 # --- options ---
23 # additional include directories
24 INCLUDE_DIRECTORIES(
25   ${QT_INCLUDES}
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${PYTHON_INCLUDE_DIRS}
28   ${KERNEL_INCLUDE_DIRS}
29   ${GUI_INCLUDE_DIRS}
30   ${GEOM_INCLUDE_DIRS}
31   ${SMESH_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/HYBRIDPlugin
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   SalomeIDLHYBRIDPLUGIN
62 )
63
64 # --- headers ---
65
66 # header files / to be processed by moc
67 SET(_moc_HEADERS
68   HYBRIDPluginGUI_TreeWidget.h
69   HYBRIDPluginGUI_HypothesisCreator.h
70   HYBRIDPluginGUI_Dlg.h
71 )
72
73 # header files / no moc processed
74 SET(_other_HEADERS
75   HYBRIDPluginGUI_Enums.h
76 )
77
78 SET(HYBRIDPluginGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
79
80 # --- sources ---
81
82 # sources / moc wrappings
83 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
84
85 # sources / static
86 SET(_other_SOURCES
87   HYBRIDPluginGUI.cxx
88   HYBRIDPluginGUI_HypothesisCreator.cxx
89   HYBRIDPluginGUI_StdWidget.cxx
90   HYBRIDPluginGUI_AdvWidget.cxx
91   HYBRIDPluginGUI_TreeWidget.cxx
92 )
93
94 # --- resources ---
95
96 # resource files / to be processed by lrelease
97 SET(_ts_RESOURCES
98   HYBRIDPlugin_images.ts
99   HYBRIDPlugin_msg_en.ts
100   HYBRIDPlugin_msg_fr.ts
101   HYBRIDPlugin_msg_ja.ts
102 )
103
104 # resource files / to be processed by uic
105 SET(_uic_files
106   HYBRIDPluginGUI_StdWidget_QTD.ui
107   HYBRIDPluginGUI_AdvWidget_QTD.ui
108 )
109
110 # header files / uic wrappings
111 QT_WRAP_UIC(_uic_HEADERS ${_uic_files})
112
113 # sources / to compile
114 SET(HYBRIDPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_uic_HEADERS})
115
116 # --- rules ---
117
118 ADD_LIBRARY(HYBRIDPluginGUI ${HYBRIDPluginGUI_SOURCES})
119 TARGET_LINK_LIBRARIES(HYBRIDPluginGUI ${_link_LIBRARIES} )
120 INSTALL(TARGETS HYBRIDPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
121
122 INSTALL(FILES ${HYBRIDPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
123 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_HYBRIDPLUGIN_INSTALL_RES_DATA}")