2013-09-10 18:47:38 +06:00
|
|
|
# Copyright (C) 2012-2013 CEA/DEN, EDF R&D, OPEN CASCADE
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# Common packages
|
|
|
|
##
|
|
|
|
SET(SUBDIRS_COMMON
|
2013-09-16 19:59:50 +06:00
|
|
|
ARCHIMEDE BlockFix GEOMAlgo SKETCHER GEOM BREPExport
|
2013-11-12 14:22:19 +06:00
|
|
|
BREPImport IGESExport IGESImport STEPExport STEPImport STLExport STLImport
|
2013-10-02 19:13:33 +06:00
|
|
|
ShHealOper GEOMUtils XAO XAO_Swig GEOMImpl GEOM_I GEOMClient GEOM_I_Superv GEOM_SWIG GEOM_PY
|
2013-11-06 13:36:08 +06:00
|
|
|
AdvancedEngine OCC2VTK VTKExport
|
2013-09-10 18:47:38 +06:00
|
|
|
)
|
|
|
|
|
2013-11-06 13:36:08 +06:00
|
|
|
##
|
|
|
|
# Curve creator
|
|
|
|
##
|
|
|
|
IF(SALOME_GEOM_BUILD_CC)
|
|
|
|
SET(SUBDIRS_CC
|
|
|
|
CurveCreator
|
|
|
|
)
|
|
|
|
ENDIF()
|
|
|
|
|
2013-09-10 18:47:38 +06:00
|
|
|
##
|
|
|
|
# OPENCV
|
|
|
|
##
|
|
|
|
IF(SALOME_GEOM_USE_OPENCV)
|
|
|
|
SET(SUBDIRS_OPENCV
|
|
|
|
ShapeRecognition
|
|
|
|
)
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
##
|
|
|
|
# GUI
|
|
|
|
##
|
2013-09-11 20:21:14 +06:00
|
|
|
IF(SALOME_BUILD_GUI)
|
2013-09-10 18:47:38 +06:00
|
|
|
SET(SUBDIRS_GUI
|
2013-10-10 18:49:08 +06:00
|
|
|
OBJECT DlgRef GEOMFiltersSelection Material GEOMGUI
|
2013-09-11 20:21:14 +06:00
|
|
|
GEOMBase GEOMToolsGUI DisplayGUI BasicGUI PrimitiveGUI GenerationGUI
|
2013-09-10 18:47:38 +06:00
|
|
|
EntityGUI BuildGUI BooleanGUI TransformationGUI OperationGUI
|
2013-10-02 19:13:33 +06:00
|
|
|
RepairGUI MeasureGUI GroupGUI BlocksGUI AdvancedGUI ImportExportGUI
|
2013-10-31 13:58:25 +06:00
|
|
|
GEOM_SWIG_WITHIHM
|
2013-09-10 18:47:38 +06:00
|
|
|
)
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
SET(SUBDIRS
|
|
|
|
${SUBDIRS_COMMON}
|
|
|
|
${SUBDIRS_OPENCV}
|
2013-11-06 13:36:08 +06:00
|
|
|
${SUBDIRS_CC}
|
2013-09-10 18:47:38 +06:00
|
|
|
${SUBDIRS_GUI}
|
|
|
|
)
|
|
|
|
|
|
|
|
FOREACH(dir ${SUBDIRS})
|
|
|
|
ADD_SUBDIRECTORY(${dir})
|
|
|
|
ENDFOREACH(dir ${SUBDIRS})
|