Salome HOME
Porting to Paraview 5.8
[plugins/blsurfplugin.git] / src / GUI / CMakeLists.txt
1 # Copyright (C) 2013-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_INCLUDES}
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   ${MESHGEMS_INCLUDE_DIRS}
35   ${CMAKE_CURRENT_BINARY_DIR}
36   ${PROJECT_BINARY_DIR}/idl
37   ${PROJECT_SOURCE_DIR}/src/BLSURFPlugin
38   ${PROJECT_SOURCE_DIR}/src/GUI
39 )
40
41 # additional preprocessor / compiler flags
42 ADD_DEFINITIONS(
43   ${QT_DEFINITIONS}
44   ${OMNIORB_DEFINITIONS}
45   ${OpenCASCADE_DEFINITIONS}
46   ${BOOST_DEFINITIONS}
47 )
48
49 # libraries to link to
50 SET(_link_LIBRARIES
51   ${QT_LIBRARIES}
52   ${QT_MT_LIBS}
53   ${GUI_qtx}
54   ${GUI_SalomeApp}
55   ${GUI_suit}
56   ${GUI_SalomeObject}
57   ${GUI_LightApp}
58   ${GEOM_GEOM}
59   ${SMESH_SMESH}
60   ${SMESH_SMESHEngine}
61   ${SMESH_PluginUtils}
62   ${SMESH_StdMeshersGUI}
63   ${SMESH_SMESHFiltersSelection}
64   ${OpenCASCADE_FoundationClasses_LIBRARIES}
65   ${MESHGEMS_LIBRARIES}
66   SalomeIDLBLSURFPLUGIN
67   BLSURFEngine
68 )
69
70 # --- headers ---
71
72 # header files / to be processed by moc
73 SET(BLSURFPluginGUI_HEADERS
74   BLSURFPluginGUI_HypothesisCreator.h
75   BLSURFPluginGUI_Dlg.h
76   BLSURFPluginGUI_TreeWidget.h
77 )
78
79 # --- sources ---
80
81 # sources / moc wrappings
82 QT_WRAP_MOC(_moc_SOURCES ${BLSURFPluginGUI_HEADERS})
83
84 # sources / static
85 SET(_other_SOURCES
86   BLSURFPluginGUI.cxx
87   BLSURFPluginGUI_StdWidget.cxx
88   BLSURFPluginGUI_AdvWidget.cxx
89   BLSURFPluginGUI_HypothesisCreator.cxx
90   BLSURFPluginGUI_TreeWidget.cxx
91 )
92
93 # --- resources ---
94
95 # resource files / to be processed by lrelease
96 SET(_ts_RESOURCES
97   BLSURFPlugin_images.ts
98   BLSURFPlugin_msg_en.ts
99   BLSURFPlugin_msg_fr.ts
100   BLSURFPlugin_msg_ja.ts
101
102
103 # resource files / to be processed by uic
104 SET(_uic_files
105   BLSURFPluginGUI_StdWidget_QTD.ui
106   BLSURFPluginGUI_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(BLSURFPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_uic_HEADERS})
114
115 # --- rules ---
116
117 ADD_LIBRARY(BLSURFPluginGUI ${BLSURFPluginGUI_SOURCES})
118 TARGET_LINK_LIBRARIES(BLSURFPluginGUI ${_link_LIBRARIES} )
119 INSTALL(TARGETS BLSURFPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
120
121 INSTALL(FILES ${BLSURFPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
122
123 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_BLSURFPLUGIN_INSTALL_RES_DATA}")