netgen/libsrc/csg/Makefile.am

34 lines
1.1 KiB
Makefile
Raw Normal View History

2009-01-14 20:32:48 +00:00
noinst_HEADERS = algprim.hpp csgparser.hpp extrusion.hpp manifold.hpp \
singularref.hpp surface.hpp brick.hpp curve2d.hpp gencyl.hpp \
meshsurf.hpp solid.hpp triapprox.hpp csgeom.hpp edgeflw.hpp geoml.hpp \
polyhedra.hpp specpoin.hpp csg.hpp explicitcurve2d.hpp identify.hpp \
2011-02-14 13:01:51 +00:00
revolution.hpp spline3d.hpp vscsg.hpp
2009-01-14 20:32:48 +00:00
2011-01-10 20:31:43 +00:00
AM_CPPFLAGS = -I$(top_srcdir)/libsrc/include $(TCL_INCLUDES)
2009-01-12 23:40:13 +00:00
METASOURCES = AUTO
2011-01-10 20:18:01 +00:00
2012-08-29 18:49:42 +00:00
lib_LTLIBRARIES = libcsg.la
2011-01-10 20:18:01 +00:00
2009-01-18 14:47:12 +00:00
libcsg_la_SOURCES = algprim.cpp brick.cpp \
2009-01-14 20:32:48 +00:00
bspline2d.cpp csgeom.cpp csgparser.cpp curve2d.cpp edgeflw.cpp \
explicitcurve2d.cpp extrusion.cpp gencyl.cpp genmesh.cpp identify.cpp \
manifold.cpp meshsurf.cpp polyhedra.cpp revolution.cpp singularref.cpp \
2014-08-30 00:15:59 +00:00
solid.cpp specpoin.cpp spline3d.cpp surface.cpp triapprox.cpp zrefine.cpp \
python_csg.cpp
2011-01-10 20:18:01 +00:00
2014-08-19 19:58:36 +00:00
libcsg_la_LIBADD = $(top_builddir)/libsrc/meshing/libmesh.la
2011-01-10 20:18:01 +00:00
2011-02-18 22:50:58 +00:00
2014-08-19 19:58:36 +00:00
if NGGUI
lib_LTLIBRARIES += libcsgvis.la
libcsgvis_la_SOURCES = vscsg.cpp csgpkg.cpp
2014-10-06 09:57:44 +00:00
libcsgvis_la_LIBADD = libcsg.la $(top_builddir)/libsrc/visualization/libvisual.la
2014-08-19 19:58:36 +00:00
endif
2012-06-11 22:17:20 +00:00
2012-06-11 21:58:43 +00:00
# $(top_builddir)/libsrc/geom2d/libgeom2d.la
2011-02-18 22:50:58 +00:00