Salome HOME
0022616: [CEA 1038] Improve the quality of stl and vtk exports
[modules/geom.git] / src / IGESPlugin / CMakeLists.txt
1 # Copyright (C) 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 IF(SALOME_BUILD_GUI)
21   INCLUDE(UseQt4Ext)
22   INCLUDE(${QT_USE_FILE})
23 ENDIF()
24
25 # --- options ---
26
27 # additional include directories
28 INCLUDE_DIRECTORIES(
29   ${CAS_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/GEOMUtils
38   )
39   
40 IF(SALOME_BUILD_GUI)
41   INCLUDE_DIRECTORIES(
42     ${QT_INCLUDE_DIRS}
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   ${CAS_DEFINITIONS}
53   )
54   
55 IF(SALOME_BUILD_GUI)
56 ADD_DEFINITIONS(
57   ${QT_DEFINITIONS}
58   )
59 ENDIF()
60
61 # libraries to link to
62 SET(_link_engine_LIBRARIES
63   ${CAS_TKIGES}
64   ${KERNEL_SALOMELocalTrace}
65   ${KERNEL_OpUtil}
66   SalomeIDLGEOM
67   SalomeIDLIGESPlugin
68   GEOMEngine
69   GEOMClient
70   )
71   
72 IF(SALOME_BUILD_GUI)
73   SET(_link_gui_LIBRARIES
74     SalomeIDLIGESPlugin
75     GEOMObject
76     GEOM
77     GEOMBase
78     )
79 ENDIF()
80
81
82 # --- headers ---
83
84 SET(IGESPluginEngine_HEADERS
85   IGESPlugin_IOperations_i.hh
86   IGESPlugin_Engine.hxx
87   IGESPlugin_OperationsCreator.hxx
88   IGESPlugin_IOperations.hxx
89   IGESPlugin_IExport.hxx 
90   IGESPlugin_IImport.hxx
91   IGESPlugin_ImportDriver.hxx 
92   IGESPlugin_ExportDriver.hxx
93   IGESPlugin_IECallBack.hxx
94   )
95
96 IF(SALOME_BUILD_GUI)  
97   # header files / to be processed by moc
98   SET(_moc_HEADERS
99     IGESPlugin_GUI.h
100     IGESPlugin_ExportDlg.h
101     )
102 ENDIF()
103
104 # --- sources ---
105
106 IF(SALOME_BUILD_GUI)
107   # sources / moc wrappings
108   QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
109
110   SET(IGESPluginGUI_SOURCES
111     IGESPlugin_GUI.cxx
112     IGESPlugin_ExportDlg.cxx
113     ${_moc_SOURCES}
114     )
115 ENDIF()
116   
117 SET(IGESPluginEngine_SOURCES
118   IGESPlugin_Engine.cxx
119   IGESPlugin_OperationsCreator.cxx
120   IGESPlugin_IOperations_i.cc
121   IGESPlugin_IOperations.cxx
122   IGESPlugin_ExportDriver.cxx
123   IGESPlugin_ImportDriver.cxx
124   IGESPlugin_IECallBack.cxx
125   )
126   
127 # resource files / to be processed by lrelease
128 SET(IGESPlugin_RESOURCES
129   IGESPlugin_msg_en.ts
130   IGESPlugin_msg_fr.ts
131   IGESPlugin_msg_ja.ts
132   )
133
134 # --- rules ---
135
136 ADD_LIBRARY(IGESPluginEngine ${IGESPluginEngine_SOURCES})
137 TARGET_LINK_LIBRARIES(IGESPluginEngine ${_link_engine_LIBRARIES})
138 INSTALL(TARGETS IGESPluginEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
139
140 IF(SALOME_BUILD_GUI)
141   ADD_LIBRARY(IGESPluginGUI ${IGESPluginGUI_SOURCES})
142   TARGET_LINK_LIBRARIES(IGESPluginGUI ${_link_gui_LIBRARIES})
143   INSTALL(TARGETS IGESPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
144   
145   QT4_INSTALL_TS_RESOURCES("${IGESPlugin_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")
146 ENDIF()
147
148
149 INSTALL(FILES ${IGESPluginEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})