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:
0
hecl/lib/Frontend/CHECLIR.cpp
Normal file
0
hecl/lib/Frontend/CHECLIR.cpp
Normal file
0
hecl/lib/Frontend/CHECLLexer.cpp
Normal file
0
hecl/lib/Frontend/CHECLLexer.cpp
Normal file
3
hecl/lib/Frontend/CMakeLists.txt
Normal file
3
hecl/lib/Frontend/CMakeLists.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
add_library(HECLFrontend
|
||||
CHECLIR.cpp
|
||||
CHECLLexer.cpp)
|
||||
4
hecl/lib/Frontend/expr/CExprAdd.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprAdd.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRADD_HPP
|
||||
#define CEXPRADD_HPP
|
||||
|
||||
#endif // CEXPRADD_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprBase.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprBase.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRBASE_HPP
|
||||
#define CEXPRBASE_HPP
|
||||
|
||||
#endif // CEXPRBASE_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprCall.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprCall.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRCALL_HPP
|
||||
#define CEXPRCALL_HPP
|
||||
|
||||
#endif // CEXPRCALL_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprGroup.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprGroup.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRGROUP_HPP
|
||||
#define CEXPRGROUP_HPP
|
||||
|
||||
#endif // CEXPRGROUP_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprLighting.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprLighting.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRLIGHTING_HPP
|
||||
#define CEXPRLIGHTING_HPP
|
||||
|
||||
#endif // CEXPRLIGHTING_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprMul.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprMul.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRMUL_HPP
|
||||
#define CEXPRMUL_HPP
|
||||
|
||||
#endif // CEXPRMUL_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprRoot.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprRoot.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRROOT_HPP
|
||||
#define CEXPRROOT_HPP
|
||||
|
||||
#endif // CEXPRROOT_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprSub.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprSub.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRSUB_HPP
|
||||
#define CEXPRSUB_HPP
|
||||
|
||||
#endif // CEXPRSUB_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprTexture.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprTexture.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRTEXTURE_HPP
|
||||
#define CEXPRTEXTURE_HPP
|
||||
|
||||
#endif // CEXPRTEXTURE_HPP
|
||||
4
hecl/lib/Frontend/expr/CExprTextureGather.hpp
Normal file
4
hecl/lib/Frontend/expr/CExprTextureGather.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef CEXPRTEXTUREGATHER_HPP
|
||||
#define CEXPRTEXTUREGATHER_HPP
|
||||
|
||||
#endif // CEXPRTEXTUREGATHER_HPP
|
||||
15
hecl/lib/Frontend/expr/expr.hpp
Normal file
15
hecl/lib/Frontend/expr/expr.hpp
Normal 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
|
||||
Reference in New Issue
Block a user