mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-27 07:15:37 +00:00
GenerateCompiler
-ReAdded generateCompiler.bat -Fixed paths in bat filse -Fixed paths for includes
This commit is contained in:
parent
8404496ffa
commit
0954b081d0
7 changed files with 139 additions and 138 deletions
|
|
@ -8,7 +8,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "console/console.h"
|
||||
#include "console/compiler.h"
|
||||
#include "console/torquescript/compiler.h"
|
||||
#include "console/consoleInternal.h"
|
||||
#include "core/strings/stringFunctions.h"
|
||||
|
||||
|
|
@ -166,7 +166,7 @@ decl_list
|
|||
:
|
||||
{ $$ = nil; }
|
||||
| decl_list decl
|
||||
{ if(!gStatementList) { gStatementList = $2; } else { gStatementList->append($2); } }
|
||||
{ if(!Script::gStatementList) { Script::gStatementList = $2; } else { Script::gStatementList->append($2); } }
|
||||
;
|
||||
|
||||
decl
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue