Salome HOME
updated copyright message
[plugins/hexoticplugin.git] / src / GUI / CMakeLists.txt
1 # Copyright (C) 2012-2023  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 ADD_SUBDIRECTORY(resources)
21
22 INCLUDE(UseQtExt)
23
24 # --- options ---
25 # additional include directories
26 INCLUDE_DIRECTORIES(
27   ${QT_INCLUDES}
28   ${OpenCASCADE_INCLUDE_DIR}
29   ${PYTHON_INCLUDES}
30   ${KERNEL_INCLUDE_DIRS}
31   ${GUI_INCLUDE_DIRS}
32   ${GEOM_INCLUDE_DIRS}
33   ${SMESH_INCLUDE_DIRS}
34   ${MEDCOUPLING_INCLUDE_DIRS}
35   ${Boost_INCLUDE_DIRS}
36   ${OMNIORB_INCLUDE_DIR}
37   ${CMAKE_CURRENT_BINARY_DIR}
38   ${PROJECT_BINARY_DIR}/idl
39   ${PROJECT_SOURCE_DIR}/src/HexoticPlugin
40   ${PROJECT_SOURCE_DIR}/src/GUI
41 )
42
43 # additional preprocessor / compiler flags
44 ADD_DEFINITIONS(
45   ${QT_DEFINITIONS}
46   ${OMNIORB_DEFINITIONS}
47   ${OpenCASCADE_DEFINITIONS}
48   ${BOOST_DEFINITIONS}
49 )
50
51 # libraries to link to
52 SET(_link_LIBRARIES
53   ${SMESH_SMESH}
54   ${SMESH_StdMeshersGUI}
55   ${SMESH_PluginUtils}
56   ${OpenCASCADE_FoundationClasses_LIBRARIES}
57   ${GUI_suit}
58   ${GUI_qtx}
59   ${GUI_SalomeApp}
60   ${QT_LIBRARIES}
61   SalomeIDLHexoticPLUGIN
62   HexoticEngine
63 )
64
65 # --- headers ---
66
67 # header files / to be processed by moc
68 SET(_moc_HEADERS
69   HexoticPluginGUI_HypothesisCreator.h
70   HexoticPluginGUI_Dlg.h
71   HexoticPluginGUI_TreeWidget.h
72 )
73
74 # header files / no moc processed
75 SET(_other_HEADERS
76   HexoticPluginGUI.h 
77 )
78
79 SET(HexoticPluginGUI_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   HexoticPluginGUI.cxx
89   HexoticPluginGUI_StdWidget.cxx
90   HexoticPluginGUI_AdvWidget.cxx
91   HexoticPluginGUI_SizeMapsWidget.cxx
92   HexoticPluginGUI_ViscousLayersWidget.cxx
93   HexoticPluginGUI_HypothesisCreator.cxx
94   HexoticPluginGUI_TreeWidget.cxx
95 )
96
97 # --- resources ---
98
99 # resource files / to be processed by lrelease
100 SET(_ts_RESOURCES
101   HexoticPLUGIN_images.ts
102   HexoticPLUGIN_msg_en.ts
103   HexoticPLUGIN_msg_fr.ts
104   HexoticPLUGIN_msg_ja.ts
105
106
107 # resource files / to be processed by uic
108 SET(_uic_files
109   HexoticPluginGUI_StdWidget_QTD.ui
110   HexoticPluginGUI_AdvWidget_QTD.ui
111   HexoticPluginGUI_SizeMapsWidget_QTD.ui
112   HexoticPluginGUI_ViscousLayersWidget_QTD.ui
113 )
114
115 # header files / uic wrappings
116 QT_WRAP_UIC(_uic_HEADERS ${_uic_files})
117
118 # sources / to compile
119 SET(HexoticPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_uic_HEADERS})
120
121 # --- rules ---
122
123 ADD_LIBRARY(HexoticPluginGUI ${HexoticPluginGUI_SOURCES})
124 TARGET_LINK_LIBRARIES(HexoticPluginGUI ${_link_LIBRARIES} )
125 INSTALL(TARGETS HexoticPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
126
127 INSTALL(FILES ${HexoticPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
128
129 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_HexoticPLUGIN_INSTALL_RES_DATA}")