diff options
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 08d12d6..9b9afab 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -44,12 +44,12 @@ generators.register-standard embed.glsl : GL_FRAGMENT_SHADER : CPP(fs-%) H(fs-%) actions embed.glsl { - m4 -DNAME=$(2:B) -DTYPE=$(2:S) > $(1[2]) utility/embed-glsl.h.m4 - m4 -DSOURCE=$(2) -DNAME=$(2:B) -DTYPE=$(2:S) -DGLTYPE=$(OPTIONS) > $(1[1]) utility/embed-glsl.cpp.m4 + m4 -DNAME=$(2:B) -DTYPE=$(2:S) > $(1[2]) lib/embed-glsl.h.m4 + m4 -DSOURCE=$(2) -DNAME=$(2:B) -DTYPE=$(2:S) -DGLTYPE=$(OPTIONS) > $(1[1]) lib/embed-glsl.cpp.m4 } rule embed.glsl ( targets * : sources * : properties * ) { - DEPENDS $(targets) : utility/embed-glsl.h.m4 utility/embed-glsl.cpp.m4 ; + DEPENDS $(targets) : lib/embed-glsl.h.m4 lib/embed-glsl.cpp.m4 ; OPTIONS on $(targets) = [ type.type $(sources) ] ; } IMPORT $(__name__) : embed.glsl : : embed.glsl ; @@ -72,7 +72,6 @@ lib ilt : : <variant>release:<link>static <include>. - <include>utility <include>lib <library>sdl2/<link>shared <library>glew/<link>shared @@ -80,7 +79,6 @@ lib ilt : <use>stb : : <include>. - <include>utility <include>lib ; |