mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 13:47:43 +00:00
initial project stubs
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
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
|
||||
16
hecl/lib/frontend/frontend.pri
Normal file
16
hecl/lib/frontend/frontend.pri
Normal file
@@ -0,0 +1,16 @@
|
||||
HEADERS += \
|
||||
$$PWD/expr/CExprAdd.hpp \
|
||||
$$PWD/expr/CExprBase.hpp \
|
||||
$$PWD/expr/CExprCall.hpp \
|
||||
$$PWD/expr/CExprGroup.hpp \
|
||||
$$PWD/expr/CExprLighting.hpp \
|
||||
$$PWD/expr/CExprMul.hpp \
|
||||
$$PWD/expr/CExprRoot.hpp \
|
||||
$$PWD/expr/CExprSub.hpp \
|
||||
$$PWD/expr/CExprTexture.hpp \
|
||||
$$PWD/expr/CExprTextureGather.hpp \
|
||||
$$PWD/expr/expr.hpp
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/CHECLIR.cpp \
|
||||
$$PWD/CHECLLexer.cpp
|
||||
Reference in New Issue
Block a user