74 lines
2.3 KiB
Makefile
74 lines
2.3 KiB
Makefile
# Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS, L3S, LJLL, MENSI
|
|
#
|
|
# 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
|
|
#
|
|
# File : Makefile.in
|
|
# Author : Michael Sazonov
|
|
# Module : NETGENPLUGIN
|
|
# $Header$
|
|
|
|
top_srcdir=@top_srcdir@
|
|
top_builddir=../..
|
|
srcdir=@srcdir@
|
|
VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl:${KERNEL_ROOT_DIR}/idl/salome:${GUI_ROOT_DIR}/idl/salome:${GEOM_ROOT_DIR}/idl/salome:${SMESH_ROOT_DIR}/idl/salome:${MED_ROOT_DIR}/idl/salome
|
|
|
|
@COMMENCE@
|
|
|
|
# .po files to transform in .qm
|
|
PO_FILES = \
|
|
NETGENPlugin_images.po \
|
|
NETGENPlugin_msg_en.po
|
|
|
|
# Libraries targets
|
|
LIB = libNETGENPluginGUI.la
|
|
|
|
LIB_SRC = \
|
|
NETGENPluginGUI.cxx \
|
|
NETGENPluginGUI_HypothesisCreator.cxx
|
|
|
|
LIB_MOC = \
|
|
NETGENPluginGUI_HypothesisCreator.h
|
|
|
|
LIB_CLIENT_IDL = \
|
|
SALOME_Exception.idl \
|
|
SALOME_GenericObj.idl \
|
|
SALOME_Component.idl \
|
|
SALOME_Comm.idl \
|
|
GEOM_Gen.idl \
|
|
MED.idl \
|
|
SMESH_Gen.idl \
|
|
SMESH_Mesh.idl \
|
|
SMESH_Group.idl \
|
|
NETGENPlugin_Algorithm.idl
|
|
|
|
LIB_SERVER_IDL =
|
|
|
|
# additionnal information to compil and link file
|
|
|
|
CPPFLAGS += $(QT_INCLUDES) $(OCC_INCLUDES) $(PYTHON_INCLUDES) \
|
|
-I${KERNEL_ROOT_DIR}/include/salome -I${GUI_ROOT_DIR}/include/salome \
|
|
-I${GEOM_ROOT_DIR}/include/salome -I${SMESH_ROOT_DIR}/include/salome \
|
|
$(BOOST_CPPFLAGS)
|
|
CXXFLAGS += -I${KERNEL_ROOT_DIR}/include/salome -I${GUI_ROOT_DIR}/include/salome \
|
|
-I${GEOM_ROOT_DIR}/include/salome -I${SMESH_ROOT_DIR}/include/salome
|
|
|
|
LDFLAGS += $(OCC_KERNEL_LIBS) $(KERNEL_LDFLAGS) $(GUI_LDFLAGS) ${GEOM_LDFLAGS} ${SMESH_LDFLAGS} -lSMESH
|
|
|
|
|
|
@CONCLUDE@
|