Salome HOME
8253e30f33b2e76a9f2a0e48a9a8a0cf71938824
[plugins/hybridplugin.git] / src / GUI / CMakeLists.txt
1 # Copyright (C) 2012-2014  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(UseQt4Ext)
21
22 # --- options ---
23 # additional include directories
24 INCLUDE_DIRECTORIES(
25   ${QT_INCLUDES}
26   ${CAS_INCLUDE_DIRS}
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 )
38
39 # additional preprocessor / compiler flags
40 ADD_DEFINITIONS(
41   ${QT_DEFINITIONS}
42   ${OMNIORB_DEFINITIONS}
43   ${CAS_DEFINITIONS}
44   ${BOOST_DEFINITIONS}
45 )
46
47 # libraries to link to
48 SET(_link_LIBRARIES
49   ${QT_LIBRARIES}
50   ${KERNEL_SALOMELocalTrace}
51   ${GEOM_GEOM}
52   ${SMESH_SMESH}
53   ${SMESH_GeomSelectionTools}
54   ${SMESH_StdMeshersGUI}
55   ${SMESH_SMESHFiltersSelection}
56   ${GUI_suit}
57   ${GUI_qtx}
58   ${GUI_SalomeApp}
59   ${CAS_KERNEL}
60   SalomeIDLHYBRIDPLUGIN
61 )
62
63 # --- headers ---
64
65 # header files / to be processed by moc
66 SET(_moc_HEADERS
67   HYBRIDPluginGUI_HypothesisCreator.h
68   HYBRIDPluginGUI_Dlg.h
69 )
70
71 # header files / no moc processed
72 SET(_other_HEADERS
73   HYBRIDPluginGUI_Enums.h
74 )
75
76 SET(HYBRIDPluginGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
77
78 # --- sources ---
79
80 # sources / moc wrappings
81 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
82
83 # sources / static
84 SET(_other_SOURCES
85   HYBRIDPluginGUI.cxx
86   HYBRIDPluginGUI_HypothesisCreator.cxx
87   HYBRIDPluginGUI_AdvWidget.cxx
88 )
89
90 # --- resources ---
91
92 # resource files / to be processed by lrelease
93 SET(_ts_RESOURCES
94   HYBRIDPlugin_images.ts
95   HYBRIDPlugin_msg_en.ts
96   HYBRIDPlugin_msg_fr.ts
97 )
98
99 # resource files / to be processed by uic
100 SET(_uic_files
101   HYBRIDPluginGUI_AdvWidget_QTD.ui
102 )
103
104 # header files / uic wrappings
105 QT4_WRAP_UI(_uic_HEADERS ${_uic_files})
106
107 # sources / to compile
108 SET(HYBRIDPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_uic_HEADERS})
109
110 # --- rules ---
111
112 ADD_LIBRARY(HYBRIDPluginGUI ${HYBRIDPluginGUI_SOURCES})
113 TARGET_LINK_LIBRARIES(HYBRIDPluginGUI ${_link_LIBRARIES} )
114 INSTALL(TARGETS HYBRIDPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
115
116 INSTALL(FILES ${HYBRIDPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
117 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_HYBRIDPLUGIN_INSTALL_RES_DATA}")