summaryrefslogtreecommitdiff
path: root/src/glsl
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-03-03 15:43:18 +0000
committerJosé Fonseca <jfonseca@vmware.com>2011-03-03 15:43:18 +0000
commitdbfbb8cf6da472e9000481ebd6a2a6b4e4845560 (patch)
treefd9724afc37a2c5ca7b0dfe7ea098ccafe70767d /src/glsl
parent54d8c5e3c2fc7db643a2bae61be203ab9cbb1efa (diff)
scons: Ensure generated headers are in the include path.
Diffstat (limited to 'src/glsl')
-rw-r--r--src/glsl/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/SConscript b/src/glsl/SConscript
index 10abab6f94..c2e5d45eba 100644
--- a/src/glsl/SConscript
+++ b/src/glsl/SConscript
@@ -24,6 +24,9 @@ glcpp_parser = env.CFile('glcpp/glcpp-parse.c', 'glcpp/glcpp-parse.y')
glsl_lexer = parser_env.CXXFile('glsl_lexer.cpp', 'glsl_lexer.ll')
glsl_parser = parser_env.CXXFile('glsl_parser.cpp', 'glsl_parser.yy')
+# Make glcpp/glcpp-parse.h reacheable from the include path
+env.Append(CPPPATH = [glcpp_parser[0].dir.up()])
+
sources = [
glcpp_lexer,
glcpp_parser[0],