diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2019-10-09 16:11:04 +0200 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2019-10-10 08:57:00 +0200 |
commit | a8836ba28d09e2fa99693c09889a8bbba0e3a106 (patch) | |
tree | 14d53022d324e29869bbebd33078966c3f7a5b4f /SConstruct | |
parent | 781e4f8673857b2b318e919ecb780bfad972a5a6 (diff) |
Remove dependency on the editor directory being in the build's include path.
- Add or remove the necessary subdirectorires to the includes to remove
dependency on the editor directory being in the build's include path.
- Ensure includes in modified files conform to style guideline.
- Remove editor from the build include path.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 128c5b0e92..cdbb47faea 100644 --- a/SConstruct +++ b/SConstruct @@ -189,7 +189,7 @@ Help(opts.GenerateHelpText(env_base)) # generate help # add default include paths -env_base.Prepend(CPPPATH=['#', '#editor']) +env_base.Prepend(CPPPATH=['#']) # configure ENV for platform env_base.platform_exporters = platform_exporters |