1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
/*
Part of the Ghemical package
Copyright (c) 2000 Geoff Hutchison
For copyright details, see the file COPYING in your distribution
or the GNU General Public License version 2 or later
<http://www.gnu.org/copyleft/gpl.html>
*/
/* Define if you are building a version with a GUI */
#undef ENABLE_GRAPHICS
/* Define if you are building a version with the project manager */
#undef ENABLE_TREELIST_VIEW
/* Define if you are building a version that interfaces directly with MPQC */
#undef ENABLE_MPQC
/* This is the version of Ghemical to be built--it is set in the configure.in */
#undef VERSION
/*
Please note that the TARGET flags also require makefile changes
and it is preferred if you just use the configure script to set these
and it is expected if you're trying to build Target1 or Target2, you
already know what you're doing.
You have been warned.
*/
/* Define if you the TARGET1 version (command-line) */
#undef TARGET1
/* Define if you the TARGET2 version (GLUT-only) */
#undef TARGET2
/* Define if you the TARGET3 version (GLUT & GTK/GNOME) */
#undef TARGET3
/* *** Additional configure options added by autoheader *** */
|