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:
2024-09-07 17:50:42 -05:00
committed by Celtic Minstrel
parent 0d5b169606
commit d60a12c070

View File

@@ -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