r5446 - in cgm/trunk: . geom/ACIS itaps
Author: jvporter Date: 2012-03-23 21:15:45 -0500 (Fri, 23 Mar 2012) New Revision: 5446 Modified: cgm/trunk/configure.ac cgm/trunk/geom/ACIS/Makefile.am cgm/trunk/itaps/CATag.cpp cgm/trunk/itaps/CATag.hpp cgm/trunk/itaps/Makefile.am cgm/trunk/itaps/iGeomError.cc cgm/trunk/itaps/iGeomError.h cgm/trunk/itaps/iGeom_CGMA.cc Log: Add hooks for ITAPS shim (let's hope this doesn't break everything!) Modified: cgm/trunk/configure.ac =================================================================== --- cgm/trunk/configure.ac 2012-03-23 05:48:33 UTC (rev 5445) +++ cgm/trunk/configure.ac 2012-03-24 02:15:45 UTC (rev 5446) @@ -393,6 +393,13 @@ AC_SUBST(USE_BABEL) AM_CONDITIONAL(USE_BABEL, [test "xno" != "x$USE_BABEL"]) +################################################################################ +# ITAPS shim +################################################################################ +AC_ARG_ENABLE([shim],[AC_HELP_STRING([--enable-shim], + [Enable ITAPS shim])], + [ITAPS_SHIM=$enableval],[ITAPS_SHIM=no]) +AM_CONDITIONAL([ITAPS_SHIM],[test "xyes" = "x$ITAPS_SHIM"]) ################################################################################ # OCC Options Modified: cgm/trunk/geom/ACIS/Makefile.am =================================================================== --- cgm/trunk/geom/ACIS/Makefile.am 2012-03-23 05:48:33 UTC (rev 5445) +++ cgm/trunk/geom/ACIS/Makefile.am 2012-03-24 02:15:45 UTC (rev 5446) @@ -0,0 +1,89 @@ +AM_CPPFLAGS += $(ACIS_STEP_TRANSLATOR) \ + $(ACIS_IGES_TRANSLATOR) \ + -DCUBIT_ACIS_VERSION=$(ACIS_VERSION) \ + -DACIS_VERSION=$(ACIS_VERSION) \ + -DACIS_VER=$(ACIS_VERSION) \ + -D$(ACIS_PLATFORM) \ + -DACIS_LOCAL_OPS \ + -I$(top_srcdir)/util \ + -I$(top_srcdir)/geom \ + -I$(srcdir)/gtcAttrib/incl \ + $(ACIS_INCLUDES) + +# The name of the library to build +noinst_LTLIBRARIES = libcubit_ACIS.la + +# The directory where headers will be installed +libcubit_ACIS_la_includedir = $(includedir) + +# The non-template sources +libcubit_ACIS_la_SOURCES = \ + AcisBridge.cpp \ + AcisEdgeTool.cpp \ + AcisFacetManager.cpp \ + AcisFeatureEngine.cpp \ + AcisHealerTool.cpp \ + AcisHistory.cpp \ + AcisModifyEngine.cpp \
participants (1)
-
jvporter@wisc.edu