Scattering experiment mostly ready, pilot run ungoing, C++-17 required

This commit is contained in:
Yohai Meiron 2020-05-06 22:22:53 -04:00
parent b67c2cf2cb
commit d598e739bd
3 changed files with 105 additions and 38 deletions

View file

@ -1,9 +1,9 @@
OPTIMIZATION ?= 3
CXXFLAGS += -O$(OPTIMIZATION) -pthread
INC += -I/home/meiron/boost_1_72_0
LIB += -lgsl
CXXFLAGS += --std=c++17 -O$(OPTIMIZATION)
INC +=
LIB += -lgsl -pthread
EXECUTABLE ?= main
EXECUTABLE ?= scattering_experiment
defualt: loadtxt.o replay.o scattering_experiment.o
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(INC) $? -o $(EXECUTABLE) $(LIB)