cereal/Makefile
Randolph Voorhies 0dd44928c3 Added map unit tests.
Something funky is going on with the stream operator here, but whatever.
2013-06-14 14:45:11 -07:00

13 lines
365 B
Makefile

all: test.cpp unittests
g++ -std=c++0x test.cpp -o test -ljsoncpp -I./..
unittests: unittests.cpp
clang++ -std=c++0x unittests.cpp -o unittests -lboost_unit_test_framework -I./..
./unittests --show_progress
boost_serialize: boost_serialize.cpp
g++ -std=c++11 boost_serialize.cpp -o boost_serialize -lboost_serialization -I./..
clean:
rm test; rm unittests;