remove include directory

This commit is contained in:
Chris Cromer 2022-04-10 09:43:33 -04:00
parent 35af76cda4
commit 6d2d1178a7
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
3 changed files with 2 additions and 1 deletions

View File

@ -63,6 +63,7 @@ if env['platform'] == 'linux':
env.Append(CCFLAGS=['-g3', '-Og'])
else:
env.Append(CCFLAGS=['-g', '-O3'])
env.Append(CPPDEFINES=['NDEBUG'])
env.Append(CCFLAGS=['-m64'])
env.Append(LINKFLAGS=['-m64'])
@ -109,7 +110,7 @@ else:
cpp_library += '.' + str(env['bits'])
# make sure our binding library is properly includes
env.Append(CPPPATH=['.', godot_headers_path, cpp_bindings_path + 'include/', cpp_bindings_path + 'include/core/', cpp_bindings_path + 'include/gen/', 'src/include/', 'lib/include'])
env.Append(CPPPATH=['.', godot_headers_path, cpp_bindings_path + 'include/', cpp_bindings_path + 'include/core/', cpp_bindings_path + 'include/gen/'])
env.Append(LIBPATH=[cpp_bindings_path + 'bin/'])
env.Append(LIBS=[cpp_library])