*** empty log message ***
This commit is contained in:
parent
e618920c44
commit
988e6a43ea
5 changed files with 15 additions and 15 deletions
|
|
@ -4,22 +4,14 @@
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
DEPS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a
|
LIBEO = $(top_builddir)/src/libeo.a
|
||||||
|
LIBEOUTILS = $(top_builddir)/src/utils/libeoutils.a
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
INCLUDES = -I$(top_builddir)/src
|
|
||||||
LDADDS = $(top_builddir)/src/libeo.a $(top_builddir)/src/utils/libeoutils.a
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
bin_PROGRAMS = gpsymreg
|
bin_PROGRAMS = gpsymreg
|
||||||
|
|
||||||
###############################################################################
|
AM_CXXFLAGS = -I$(top_builddir)/src
|
||||||
|
DEPS = $(LIBEOUTILS) $(LIBEO)
|
||||||
|
LIBS = $(top_builddir)/src/utils/libeoutils.a
|
||||||
|
|
||||||
gpsymreg_SOURCES = main.cpp
|
gpsymreg_SOURCES = main.cpp
|
||||||
gpsymreg_DEPENDENCIES = $(DEPS)
|
|
||||||
gpsymreg_LDFLAGS = -lm
|
|
||||||
gpsymreg_LDADD = $(LDADDS)
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,10 @@
|
||||||
#pragma warning(disable:4786)
|
#pragma warning(disable:4786)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <gp/eoParseTree.h>
|
#include <gp/eoParseTree.h>
|
||||||
#include <eo>
|
#include <eo>
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ AM_CXXFLAGS = -I$(top_srcdir)/src
|
||||||
lib_LIBRARIES = libeo.a
|
lib_LIBRARIES = libeo.a
|
||||||
|
|
||||||
libeo_a_SOURCES = eoFunctorStore.cpp \
|
libeo_a_SOURCES = eoFunctorStore.cpp \
|
||||||
eoPersistent.cpp \
|
eoPersistent.cpp
|
||||||
eoPrintable.cpp \
|
eoPrintable.cpp \
|
||||||
eoCtrlCContinue.cpp \
|
eoCtrlCContinue.cpp \
|
||||||
eoParetoFitness.cpp \
|
eoParetoFitness.cpp \
|
||||||
|
|
|
||||||
|
|
@ -28,10 +28,10 @@
|
||||||
#ifndef _eo_
|
#ifndef _eo_
|
||||||
#define _eo_
|
#define _eo_
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// general purpose
|
// general purpose
|
||||||
#include <utils/eoData.h>
|
#include <utils/eoData.h>
|
||||||
#include <eoObject.h>
|
#include <eoObject.h>
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,10 @@
|
||||||
#ifndef eoParseTree_h
|
#ifndef eoParseTree_h
|
||||||
#define eoParseTree_h
|
#define eoParseTree_h
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
|
||||||
#include <list>
|
#include <list>
|
||||||
|
|
|
||||||
Reference in a new issue