Salome HOME
Revert "Synchronize adm files"
[plugins/hexoticplugin.git] / src / GUI / CMakeLists.txt
1 # Copyright (C) 2012-2014  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 ADD_SUBDIRECTORY(resources)
21
22 INCLUDE(UseQt4Ext)
23
24 # --- options ---
25 # additional include directories
26 INCLUDE_DIRECTORIES(
27   ${QT_INCLUDES}
28   ${CAS_INCLUDE_DIRS}
29   ${PYTHON_INCLUDES}
30   ${KERNEL_INCLUDE_DIRS}
31   ${GUI_INCLUDE_DIRS}
32   ${GEOM_INCLUDE_DIRS}
33   ${SMESH_INCLUDE_DIRS}
34   ${VTK_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 )
41
42 # additional preprocessor / compiler flags
43 ADD_DEFINITIONS(
44   ${QT_DEFINITIONS}
45   ${OMNIORB_DEFINITIONS}
46   ${CAS_DEFINITIONS}
47   ${BOOST_DEFINITIONS}
48 )
49
50 # libraries to link to
51 SET(_link_LIBRARIES
52   ${SMESH_SMESH}
53   ${SMESH_StdMeshersGUI}
54   ${CAS_KERNEL}
55   ${GUI_suit}
56   ${GUI_qtx}
57   ${GUI_SalomeApp}
58   ${QT_LIBRARIES}
59   SalomeIDLHexoticPLUGIN
60   HexoticEngine
61 )
62
63 # --- headers ---
64
65 # header files / to be processed by moc
66 SET(_moc_HEADERS
67   HexoticPluginGUI_HypothesisCreator.h
68   HexoticPluginGUI_Dlg.h
69 )
70
71 # header files / no moc processed
72 SET(_other_HEADERS
73   HexoticPluginGUI.h 
74 )
75
76 SET(HexoticPluginGUI_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   HexoticPluginGUI.cxx
86   HexoticPluginGUI_StdWidget.cxx
87   HexoticPluginGUI_SizeMapsWidget.cxx
88   HexoticPluginGUI_HypothesisCreator.cxx
89 )
90
91 # --- resources ---
92
93 # resource files / to be processed by lrelease
94 SET(_ts_RESOURCES
95   HexoticPLUGIN_images.ts
96   HexoticPLUGIN_msg_en.ts
97   HexoticPLUGIN_msg_fr.ts
98
99
100 # resource files / to be processed by uic
101 SET(_uic_files
102   HexoticPluginGUI_StdWidget_QTD.ui
103   HexoticPluginGUI_SizeMapsWidget_QTD.ui
104 )
105
106 # header files / uic wrappings
107 QT4_WRAP_UI(_uic_HEADERS ${_uic_files})
108
109 # sources / to compile
110 SET(HexoticPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_uic_HEADERS})
111
112 # --- rules ---
113
114 ADD_LIBRARY(HexoticPluginGUI ${HexoticPluginGUI_SOURCES})
115 TARGET_LINK_LIBRARIES(HexoticPluginGUI ${_link_LIBRARIES} )
116 INSTALL(TARGETS HexoticPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
117
118 INSTALL(FILES ${HexoticPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
119
120 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_HexoticPLUGIN_INSTALL_RES_DATA}")