1 # Copyright (C) 2014-2015 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 INCLUDE(${QT_USE_FILE})
27 # additional include directories
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
44 ${PROJECT_SOURCE_DIR}/src/OBJECT
45 ${PROJECT_SOURCE_DIR}/src/GEOMGUI
46 ${PROJECT_SOURCE_DIR}/src/GEOMBase
50 # additional preprocessor / compiler flags
53 ${OMNIORB_DEFINITIONS}
57 ADD_DEFINITIONS(-DNOGDI)
66 # libraries to link to
67 SET(_link_engine_LIBRARIES
69 ${KERNEL_SALOMELocalTrace}
78 SET(_link_gui_LIBRARIES
89 SET(IGESPluginEngine_HEADERS
90 IGESPlugin_IOperations_i.hh
92 IGESPlugin_OperationsCreator.hxx
93 IGESPlugin_IOperations.hxx
94 IGESPlugin_IExport.hxx
95 IGESPlugin_IImport.hxx
96 IGESPlugin_ImportDriver.hxx
97 IGESPlugin_ExportDriver.hxx
98 IGESPlugin_IECallBack.hxx
102 # header files / to be processed by moc
105 IGESPlugin_ExportDlg.h
112 # sources / moc wrappings
113 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
115 SET(IGESPluginGUI_SOURCES
117 IGESPlugin_ExportDlg.cxx
122 SET(IGESPluginEngine_SOURCES
123 IGESPlugin_Engine.cxx
124 IGESPlugin_OperationsCreator.cxx
125 IGESPlugin_IOperations_i.cc
126 IGESPlugin_IOperations.cxx
127 IGESPlugin_ExportDriver.cxx
128 IGESPlugin_ImportDriver.cxx
129 IGESPlugin_IECallBack.cxx
132 # resource files / to be processed by lrelease
133 SET(IGESPlugin_RESOURCES
141 ADD_LIBRARY(IGESPluginEngine ${IGESPluginEngine_SOURCES})
142 TARGET_LINK_LIBRARIES(IGESPluginEngine ${_link_engine_LIBRARIES})
143 INSTALL(TARGETS IGESPluginEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
146 ADD_LIBRARY(IGESPluginGUI ${IGESPluginGUI_SOURCES})
147 TARGET_LINK_LIBRARIES(IGESPluginGUI ${_link_gui_LIBRARIES})
148 INSTALL(TARGETS IGESPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
150 QT4_INSTALL_TS_RESOURCES("${IGESPlugin_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")
154 INSTALL(FILES ${IGESPluginEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})