Move SourcePawn headers out of public/ into sourcepawn/include.

This commit is contained in:
David Anderson 2015-03-07 11:13:32 -08:00
parent 6f1eefbdbe
commit 561004c4bf
6 changed files with 2 additions and 2 deletions

View File

@ -325,7 +325,7 @@ class SMConfig(object):
os.path.join(context.currentSourcePath, 'sdk'), os.path.join(context.currentSourcePath, 'sdk'),
os.path.join(builder.sourcePath, 'public'), os.path.join(builder.sourcePath, 'public'),
os.path.join(builder.sourcePath, 'public', 'extensions'), os.path.join(builder.sourcePath, 'public', 'extensions'),
os.path.join(builder.sourcePath, 'public', 'sourcepawn'), os.path.join(builder.sourcePath, 'sourcepawn', 'include'),
os.path.join(builder.sourcePath, 'public', 'amtl'), os.path.join(builder.sourcePath, 'public', 'amtl'),
] ]
return compiler return compiler

View File

@ -5,7 +5,7 @@ binary = SM.Library(builder, 'sourcemod.logic')
binary.compiler.cxxincludes += [ binary.compiler.cxxincludes += [
os.path.join(builder.sourcePath, 'core', 'logic'), os.path.join(builder.sourcePath, 'core', 'logic'),
os.path.join(builder.sourcePath, 'public'), os.path.join(builder.sourcePath, 'public'),
os.path.join(builder.sourcePath, 'public', 'sourcepawn'), os.path.join(builder.sourcePath, 'sourcepawn', 'include'),
os.path.join(builder.sourcePath, 'public', 'amtl'), os.path.join(builder.sourcePath, 'public', 'amtl'),
os.path.join(SM.mms_root, 'core', 'sourcehook') os.path.join(SM.mms_root, 'core', 'sourcehook')
] ]