2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 17:47:43 +00:00

extract tool work

This commit is contained in:
Jack Andersen
2015-07-12 20:30:20 -10:00
parent de73e764e1
commit cc340518f1
72 changed files with 27 additions and 10 deletions

View File

View File

View File

@@ -0,0 +1,3 @@
add_library(HECLFrontend
CHECLIR.cpp
CHECLLexer.cpp)

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRADD_HPP
#define CEXPRADD_HPP
#endif // CEXPRADD_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRBASE_HPP
#define CEXPRBASE_HPP
#endif // CEXPRBASE_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRCALL_HPP
#define CEXPRCALL_HPP
#endif // CEXPRCALL_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRGROUP_HPP
#define CEXPRGROUP_HPP
#endif // CEXPRGROUP_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRLIGHTING_HPP
#define CEXPRLIGHTING_HPP
#endif // CEXPRLIGHTING_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRMUL_HPP
#define CEXPRMUL_HPP
#endif // CEXPRMUL_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRROOT_HPP
#define CEXPRROOT_HPP
#endif // CEXPRROOT_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRSUB_HPP
#define CEXPRSUB_HPP
#endif // CEXPRSUB_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRTEXTURE_HPP
#define CEXPRTEXTURE_HPP
#endif // CEXPRTEXTURE_HPP

View File

@@ -0,0 +1,4 @@
#ifndef CEXPRTEXTUREGATHER_HPP
#define CEXPRTEXTUREGATHER_HPP
#endif // CEXPRTEXTUREGATHER_HPP

View File

@@ -0,0 +1,15 @@
#ifndef EXPR_HPP
#define EXPR_HPP
#include "CExprBase.hpp"
#include "CExprRoot.hpp"
#include "CExprCall.hpp"
#include "CExprGroup.hpp"
#include "CExprMul.hpp"
#include "CExprAdd.hpp"
#include "CExprSub.hpp"
#include "CExprTexture.hpp"
#include "CExprTextureGather.hpp"
#include "CExprLighting.hpp"
#endif // EXPR_HPP