Fix include path in SConstruct
Fix the use-case where header files are put directly in deps/include, which was straight-up broken
This commit is contained in:
@@ -278,7 +278,7 @@ if path.exists('deps/lib64'):
|
|||||||
env.Append(LIBPATH=[path.join(os.getcwd(), 'deps/lib64')])
|
env.Append(LIBPATH=[path.join(os.getcwd(), 'deps/lib64')])
|
||||||
|
|
||||||
if path.exists('deps/include'):
|
if path.exists('deps/include'):
|
||||||
env.Append(CPPPATH=[path.join(os.getcwd(), '/deps/include')])
|
env.Append(CPPPATH=[path.join(os.getcwd(), 'deps/include')])
|
||||||
|
|
||||||
# Include directories
|
# Include directories
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user