*** 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
|
||||
|
||||
###############################################################################
|
||||
AM_CXXFLAGS = -I$(top_builddir)/src
|
||||
DEPS = $(LIBEOUTILS) $(LIBEO)
|
||||
LIBS = $(top_builddir)/src/utils/libeoutils.a
|
||||
|
||||
gpsymreg_SOURCES = main.cpp
|
||||
gpsymreg_DEPENDENCIES = $(DEPS)
|
||||
gpsymreg_LDFLAGS = -lm
|
||||
gpsymreg_LDADD = $(LDADDS)
|
||||
|
||||
###############################################################################
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@
|
|||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#include <gp/eoParseTree.h>
|
||||
#include <eo>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ AM_CXXFLAGS = -I$(top_srcdir)/src
|
|||
lib_LIBRARIES = libeo.a
|
||||
|
||||
libeo_a_SOURCES = eoFunctorStore.cpp \
|
||||
eoPersistent.cpp \
|
||||
eoPersistent.cpp
|
||||
eoPrintable.cpp \
|
||||
eoCtrlCContinue.cpp \
|
||||
eoParetoFitness.cpp \
|
||||
|
|
|
|||
|
|
@ -28,10 +28,10 @@
|
|||
#ifndef _eo_
|
||||
#define _eo_
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
// general purpose
|
||||
#include <utils/eoData.h>
|
||||
#include <eoObject.h>
|
||||
|
|
|
|||
|
|
@ -27,6 +27,10 @@
|
|||
#ifndef eoParseTree_h
|
||||
#define eoParseTree_h
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <iterator>
|
||||
|
||||
#include <list>
|
||||
|
|
|
|||
Reference in a new issue