Salome HOME
Porting HEXABLOCKPLUGIN to the CMake build system: initial version.
[plugins/hexablockplugin.git] / src / GUI / CMakeLists.txt
1 # Copyright (C) 2012-2013  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.
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   ${KERNEL_INCLUDE_DIRS}
27   ${GUI_INCLUDE_DIRS}
28   ${GEOM_INCLUDE_DIRS}
29   ${HEXABLOCK_INCLUDE_DIRS}
30   ${SMESH_INCLUDE_DIRS}
31   ${Boost_INCLUDE_DIRS}
32   ${OMNIORB_INCLUDE_DIR}
33   ${CAS_INCLUDE_DIRS}
34   ${PROJECT_BINARY_DIR}/idl
35 )
36
37 # additional preprocessor / compiler flags
38 ADD_DEFINITIONS(
39   ${QT_DEFINITIONS}
40   ${OMNIORB_DEFINITIONS}
41   ${CAS_DEFINITIONS}
42   ${BOOST_DEFINITIONS}
43 )
44
45 # libraries to link to
46 SET(_link_LIBRARIES
47   ${QT_LIBRARIES}
48   ${GUI_SalomeApp}
49   ${GUI_qtx}
50   ${GUI_suit}
51   ${SMESH_SMESH}
52   ${KERNEL_SALOMELocalTrace}
53   ${CAS_KERNEL}
54   SalomeIDLHEXABLOCKPLUGIN
55 )
56
57 # --- headers ---
58
59 # header files / to be processed by moc
60 SET(HEXABLOCKPluginGUI_HEADERS
61   HEXABLOCKPluginGUI_HypothesisCreator.h
62 )
63
64 # --- sources ---
65
66 # sources / moc wrappings
67 QT4_WRAP_CPP(_moc_SOURCES ${HEXABLOCKPluginGUI_HEADERS})
68
69 # sources / static
70 SET(_other_SOURCES
71   HEXABLOCKPluginGUI_HypothesisCreator.cxx
72 )
73
74 # --- resources ---
75
76 # resource files / to be processed by lrelease
77 SET(_ts_RESOURCES
78   HEXABLOCKPlugin_images.ts
79   HEXABLOCKPlugin_msg_en.ts
80
81
82 # sources / to compile
83 SET(HEXABLOCKPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
84
85 # --- rules ---
86
87 ADD_LIBRARY(HEXABLOCKPluginGUI ${HEXABLOCKPluginGUI_SOURCES})
88 TARGET_LINK_LIBRARIES(HEXABLOCKPluginGUI ${_link_LIBRARIES} )
89 INSTALL(TARGETS HEXABLOCKPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
90
91 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_HEXABLOCKPLUGIN_INSTALL_RES_DATA}")