Salome HOME
Fix for "[CEA]: Windows version: Dump Python: there is an error in the file name...
[modules/geom.git] / src / VTKPlugin / CMakeLists.txt
1 # Copyright (C) 2014-2019  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 IF(SALOME_BUILD_GUI)
21   INCLUDE(UseQtExt)
22 ENDIF()
23
24 # --- options ---
25
26 # additional include directories
27 INCLUDE_DIRECTORIES(
28   ${OpenCASCADE_INCLUDE_DIR}
29   ${VTK_INCLUDE_DIRS}
30   ${KERNEL_INCLUDE_DIRS}
31   ${PROJECT_BINARY_DIR}/idl
32   ${PROJECT_SOURCE_DIR}/src/GEOMAlgo
33   ${PROJECT_SOURCE_DIR}/src/GEOM
34   ${PROJECT_SOURCE_DIR}/src/GEOMImpl
35   ${PROJECT_SOURCE_DIR}/src/GEOM_I
36   ${PROJECT_SOURCE_DIR}/src/GEOMClient
37   ${PROJECT_SOURCE_DIR}/src/OCC2VTK
38   ${PROJECT_SOURCE_DIR}/src/GEOMUtils
39   )
40   
41 IF(SALOME_BUILD_GUI)
42   INCLUDE_DIRECTORIES(
43     ${GUI_INCLUDE_DIRS}
44     ${PROJECT_SOURCE_DIR}/src/OBJECT
45     ${PROJECT_SOURCE_DIR}/src/GEOMGUI
46     ${PROJECT_SOURCE_DIR}/src/GEOMBase
47     )
48 ENDIF()
49
50 # additional preprocessor / compiler flags
51 ADD_DEFINITIONS(
52   ${OpenCASCADE_DEFINITIONS}
53   ${OMNIORB_DEFINITIONS}
54   )
55    
56 IF(WIN32)
57   ADD_DEFINITIONS(-DNOGDI)
58 ENDIF(WIN32)
59  
60 IF(SALOME_BUILD_GUI)
61 ADD_DEFINITIONS(
62   ${QT_DEFINITIONS}
63   )
64 ENDIF()
65
66 # libraries to link to
67 SET(_link_engine_LIBRARIES
68   ${KERNEL_SALOMELocalTrace}
69   ${KERNEL_OpUtil}
70   SalomeIDLGEOM
71   SalomeIDLVTKPlugin
72   GEOMEngine
73   GEOMClient
74   vtkIOLegacy
75   OCC2VTK
76   )
77   
78 IF(SALOME_BUILD_GUI)
79   SET(_link_gui_LIBRARIES
80     SalomeIDLVTKPlugin
81     GEOMObject
82     GEOM
83     GEOMBase
84     )
85 ENDIF()
86
87
88 # --- headers ---
89
90 SET(VTKPluginEngine_HEADERS
91   VTKPlugin_IOperations_i.hh
92   VTKPlugin_Engine.hxx
93   VTKPlugin_OperationsCreator.hxx
94   VTKPlugin_IOperations.hxx
95   VTKPlugin_IExport.hxx 
96   VTKPlugin_ExportDriver.hxx
97   VTKPlugin_IECallBack.hxx
98   )
99
100 IF(SALOME_BUILD_GUI)  
101   # header files / to be processed by moc
102   SET(_moc_HEADERS
103     VTKPlugin_GUI.h
104     VTKPlugin_ExportDlg.h
105     )
106 ENDIF()
107
108 # --- sources ---
109
110 IF(SALOME_BUILD_GUI)
111   # sources / moc wrappings
112   QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
113
114   SET(VTKPluginGUI_SOURCES
115     VTKPlugin_GUI.cxx
116     VTKPlugin_ExportDlg.cxx
117     ${_moc_SOURCES}
118     )
119 ENDIF()
120   
121 SET(VTKPluginEngine_SOURCES
122   VTKPlugin_Engine.cxx
123   VTKPlugin_OperationsCreator.cxx
124   VTKPlugin_IOperations_i.cc
125   VTKPlugin_IOperations.cxx
126   VTKPlugin_ExportDriver.cxx
127   VTKPlugin_IECallBack.cxx
128   )
129   
130 # resource files / to be processed by lrelease
131 SET(VTKPlugin_RESOURCES
132   VTKPlugin_msg_en.ts
133   VTKPlugin_msg_fr.ts
134   VTKPlugin_msg_ja.ts
135   )
136
137 # --- rules ---
138
139 ADD_LIBRARY(VTKPluginEngine ${VTKPluginEngine_SOURCES})
140 TARGET_LINK_LIBRARIES(VTKPluginEngine ${_link_engine_LIBRARIES})
141 INSTALL(TARGETS VTKPluginEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
142
143 IF(SALOME_BUILD_GUI)
144   ADD_LIBRARY(VTKPluginGUI ${VTKPluginGUI_SOURCES})
145   TARGET_LINK_LIBRARIES(VTKPluginGUI ${_link_gui_LIBRARIES})
146   INSTALL(TARGETS VTKPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
147   
148   QT_INSTALL_TS_RESOURCES("${VTKPlugin_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")
149 ENDIF()
150
151
152 INSTALL(FILES ${VTKPluginEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})