Salome HOME
243d31aab5ac01e4d715710f1ef4b12878ff2629
[plugins/ghs3dprlplugin.git] / src / gui / CMakeLists.txt
1 # Copyright (C) 2012-2016  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 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   ${PROJECT_BINARY_DIR}/idl
35   ${PROJECT_SOURCE_DIR}/src/GHS3DPRLPlugin
36 )
37
38 # additional preprocessor / compiler flags
39 ADD_DEFINITIONS(
40   ${QT_DEFINITIONS}
41   ${OMNIORB_DEFINITIONS}
42   ${CAS_DEFINITIONS}
43   ${BOOST_DEFINITIONS}
44 )
45
46 # libraries to link to
47 SET(_link_LIBRARIES
48   ${QT_LIBRARIES}
49   ${KERNEL_SALOMELocalTrace}
50   ${GEOM_GEOM}
51   ${SMESH_SMESH}
52   ${SMESH_GeomSelectionTools}
53   ${SMESH_StdMeshersGUI}
54   ${SMESH_SMESHFiltersSelection}
55   ${GUI_suit}
56   ${GUI_qtx}
57   ${GUI_SalomeApp}
58   ${CAS_KERNEL}
59   SalomeIDLGHS3DPRLPLUGIN
60 )
61
62 # --- headers ---
63
64 # header files / to be processed by moc
65 SET(GHS3DPRLPluginGUI_HEADERS
66   GHS3DPRLPluginGUI_HypothesisCreator.h
67 )
68
69 # --- sources ---
70
71 # sources / moc wrappings
72 QT4_WRAP_CPP(_moc_SOURCES ${GHS3DPRLPluginGUI_HEADERS})
73
74 # sources / static
75 SET(_other_SOURCES
76   GHS3DPRLPluginGUI.cxx
77   GHS3DPRLPluginGUI_HypothesisCreator.cxx
78 )
79
80 # --- resources ---
81
82 # resource files / to be processed by lrelease
83 SET(_ts_RESOURCES
84   GHS3DPRLPlugin_images.ts
85   GHS3DPRLPlugin_msg_en.ts
86   GHS3DPRLPlugin_msg_fr.ts
87   GHS3DPRLPlugin_msg_ja.ts
88
89
90 # sources / to compile
91 SET(GHS3DPRLPluginGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
92
93 # --- rules ---
94
95 ADD_LIBRARY(GHS3DPRLPluginGUI ${GHS3DPRLPluginGUI_SOURCES})
96 TARGET_LINK_LIBRARIES(GHS3DPRLPluginGUI ${_link_LIBRARIES} )
97 INSTALL(TARGETS GHS3DPRLPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
98
99 INSTALL(FILES ${GHS3DPRLPluginGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
100
101 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GHS3DPRLPLUGIN_INSTALL_RES_DATA}")