version number

This commit is contained in:
Joachim Schoeberl 2015-01-26 13:49:46 +00:00
parent 6fd4e5bb35
commit c85be2506a
4 changed files with 9 additions and 4 deletions

View File

@ -1,4 +1,4 @@
AC_INIT([netgen],[6.0-dev],[],[]) AC_INIT([netgen],[6.1-dev],[],[])
AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])

View File

@ -20,7 +20,7 @@
// in the configure/make phases, with the // in the configure/make phases, with the
// right version number // right version number
#ifdef WIN32 #ifdef WIN32
#define PACKAGE_VERSION "6.0-dev" #define PACKAGE_VERSION "6.1-dev"
#endif #endif

View File

@ -9,7 +9,7 @@ if NGGUI
bin_PROGRAMS = netgen bin_PROGRAMS = netgen
endif endif
netgen_SOURCES = demoview.cpp ngappinit.cpp onetcl.cpp parallelfunc.cpp ngpkg.cpp demoview.hpp parallelfunc.hpp togl_1_7.h netgen_SOURCES = demoview.cpp ngappinit.cpp netgenpy.cpp onetcl.cpp parallelfunc.cpp ngpkg.cpp demoview.hpp parallelfunc.hpp togl_1_7.h
# nginterface.cpp nginterface_v2.cpp # nginterface.cpp nginterface_v2.cpp

View File

@ -1,3 +1,5 @@
#ifdef WIN32
#include <iostream> #include <iostream>
#include <boost/python.hpp> #include <boost/python.hpp>
@ -14,4 +16,7 @@ BOOST_PYTHON_MODULE(nglib)
ExportNetgenMeshing(); ExportNetgenMeshing();
ExportMeshVis(); ExportMeshVis();
ExportGeom2d(); ExportGeom2d();
} }
#endif