2
0
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:
Jack Andersen
2015-05-15 12:39:43 -10:00
commit 230913d401
80 changed files with 256 additions and 0 deletions

View File

View File

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

View 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