From 2eeaeafb40a6b04b811714c793fb97ce4de41254 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 30 Jan 2021 14:14:01 +0000 Subject: Split into main app and library the rest for testing --- Jamroot.jam | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) (limited to 'Jamroot.jam') diff --git a/Jamroot.jam b/Jamroot.jam index 9b79df6..0c030aa 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -14,8 +14,8 @@ project : requirements debug:extra debug:on release:on - tidy:bin/gfx/gl/shaders/fs-basicShader.h - tidy:bin/gfx/gl/shaders/vs-basicShader.h + tidy:gfx/gl/shaders/fs-basicShader.h + tidy:gfx/gl/shaders/vs-basicShader.h tidy:boost-* tidy:bugprone-* tidy:clang-* @@ -45,14 +45,24 @@ actions xxd.i } IMPORT $(__name__) : xxd.i : : xxd.i ; -exe test : +exe iliketrains : + application/main.cpp + : + ilt + . + utility + lib + ; + +lib ilt : [ glob-tree *.cpp *.c *.vs *.fs : bin ] : + release:static . utility lib - sdl2 - glew - pthread + sdl2/shared + glew/shared + pthread/shared stb ; -- cgit v1.2.3