Salome HOME
Synchronize adm files
[plugins/netgenplugin.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   ${CAS_INCLUDE_DIRS}
26   ${NETGEN_INCLUDE_DIRS}
27   ${QT_INCLUDES}
28   ${PYTHON_INCLUDES}
29   ${KERNEL_INCLUDE_DIRS}
30   ${GUI_INCLUDE_DIRS}
31   ${GEOM_INCLUDE_DIRS}
32   ${SMESH_INCLUDE_DIRS}
33   ${Boost_INCLUDE_DIRS}
34   ${OMNIORB_INCLUDE_DIR}
35   ${PROJECT_BINARY_DIR}/idl
36   ${PROJECT_SOURCE_DIR}/src/NETGENPlugin
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_MT_LIBS}
50   ${GUI_SalomeApp}
51   ${GUI_qtx}
52   ${GUI_suit}
53   ${GUI_SalomeObject}
54   ${GUI_LightApp}
55   ${SMESH_SMESH}
56   ${SMESH_GeomSelectionTools}
57   ${CAS_KERNEL}
58   SalomeIDLNETGENPLUGIN
59   NETGENEngine
60 )
61
62 # --- headers ---
63
64 # header files / to be processed by moc
65 SET(_moc_HEADERS
66   NETGENPluginGUI_HypothesisCreator.h
67   NETGENPluginGUI_SimpleCreator.h
68 )
69
70 # header files / no moc processed
71 SET(_other_HEADERS
72   NETGENPluginGUI.h
73 )
74
75 SET(NETGENPluginGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
76
77 # --- sources ---
78
79 # sources / moc wrappings
80 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
81
82 # sources / static
83 SET(_other_SOURCES
84   NETGENPluginGUI.cxx
85   NETGENPluginGUI_HypothesisCreator.cxx
86   NETGENPluginGUI_SimpleCreator.cxx
87 )
88
89 # --- resources ---
90
91 # resource files / to be processed by lrelease
92 SET(_ts_RESOURCES
93   NETGENPlugin_images.ts
94   NETGENPlugin_msg_en.ts
95   NETGENPlugin_msg_fr.ts
96   NETGENPlugin_msg_ja.ts
97
98
99 # sources / to compile
100 SET(NETGENPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
101
102 # --- rules ---
103
104 ADD_LIBRARY(NETGENPluginGUI ${NETGENPluginGUI_SOURCES})
105 TARGET_LINK_LIBRARIES(NETGENPluginGUI ${_link_LIBRARIES} )
106 INSTALL(TARGETS NETGENPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
107
108 INSTALL(FILES ${NETGENPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
109
110 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_NETGENPLUGIN_INSTALL_RES_DATA}")