1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

Hadrons: fix after build system update

This commit is contained in:
Antonin Portelli 2016-08-03 17:14:32 +01:00
parent 2485ef9c9c
commit a2e9430abe
2 changed files with 3 additions and 5 deletions

View File

@ -30,8 +30,7 @@ directory.
#include <set> #include <set>
#include <stack> #include <stack>
#include <cxxabi.h> #include <Grid/Grid.h>
#include <Grid.h>
#define BEGIN_HADRONS_NAMESPACE \ #define BEGIN_HADRONS_NAMESPACE \
namespace Grid {\ namespace Grid {\
@ -50,7 +49,7 @@ class HadronsLogger: public Logger
{ {
public: public:
HadronsLogger(int on, std::string nm): Logger("Hadrons", on, nm, HadronsLogger(int on, std::string nm): Logger("Hadrons", on, nm,
Logger::BLACK){}; GridLogColours, "BLACK"){};
}; };
#define LOG(channel) std::cout << HadronsLog##channel #define LOG(channel) std::cout << HadronsLog##channel

View File

@ -1,5 +1,4 @@
AM_CXXFLAGS = -I$(top_srcdir)/programs -I../$(top_srcdir)/programs -I$(top_srcdir)/lib AM_CXXFLAGS += -I$(top_srcdir)/programs -I../$(top_srcdir)/programs
AM_LDFLAGS = -L$(top_builddir)/lib
bin_PROGRAMS = Hadrons bin_PROGRAMS = Hadrons