From 4c25da8a7ba7437657c3e2da592145113d3532f4 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 20 Jul 2019 10:53:14 +0100 Subject: Initial commit Not a lot of stuff, hard coded paths, tests against /usr/portage --- Jamroot.jam | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Jamroot.jam (limited to 'Jamroot.jam') diff --git a/Jamroot.jam b/Jamroot.jam new file mode 100644 index 0000000..a2d56a8 --- /dev/null +++ b/Jamroot.jam @@ -0,0 +1,31 @@ +import os ; +using gcc : : [ os.environ CXX ] ; + +variant coverage : debug ; + +project + : requirements + ICE_CPP11_MAPPING + "-std=c++17" + "-fvisibility=hidden -fvisibility-inlines-hidden" + "-Wl,-z,defs,--warn-once,--gc-sections" + release:"-flto=2" + release:"-flto=2" + debug:"-W -Wall -Wextra -Werror -Wwrite-strings" + coverage:"--coverage" + coverage:"--coverage" + ; + +lib adhocutil : : : : /usr/include/adhocutil ; +lib dbppcore : : : : /usr/include/dbpp ; +lib git2 ; +lib Ice ; +lib Ice++11 ; +lib IceBox++11 ; +lib icetray : : : : /usr/include/icetray dbppcore ; +lib netfs-api : : : : /usr/include/netfs Ice++11 IceBox++11 pthread ; +lib pthread ; + +build-project src ; +build-project unittests ; + -- cgit v1.2.3