mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-27 19:30:41 +00:00
forgot whole branch
This commit is contained in:
parent
4ff4bd3ca1
commit
8b09700174
6
Makefile
6
Makefile
@ -1,14 +1,12 @@
|
||||
CXX = g++
|
||||
CC = gcc
|
||||
AR = ar rcu
|
||||
CXXFLAGS = -g -W -Wall -Ilua/include `sdl-config --cflags` -DUNIX \
|
||||
CXXFLAGS = -g -W -Wall -Ilua `sdl-config --cflags` -DUNIX \
|
||||
-Wno-multichar # -O2
|
||||
LDFLAGS = -g -W -Wall # -O2
|
||||
LIBS = -Llua/lib -llua -llualib `sdl-config --libs` -lz
|
||||
LIBS = `sdl-config --libs` -lz
|
||||
|
||||
# Comment this out for Mac OS X ...
|
||||
LIBS += -lGL -lGLU
|
||||
|
||||
include Makefile.common
|
||||
|
||||
.PHONY: lua-build lua-clean
|
||||
|
@ -1,4 +1,30 @@
|
||||
OBJS =\
|
||||
lua/lapi.o \
|
||||
lua/lauxlib.o \
|
||||
lua/lbuffer.o \
|
||||
lua/lbuiltin.o \
|
||||
lua/ldo.o \
|
||||
lua/lfunc.o \
|
||||
lua/lgc.o \
|
||||
lua/lfunc.o \
|
||||
lua/liolib.o \
|
||||
lua/llex.o \
|
||||
lua/lmathlib.o \
|
||||
lua/lmem.o \
|
||||
lua/lobject.o \
|
||||
lua/lparser.o \
|
||||
lua/lstate.o \
|
||||
lua/lstring.o \
|
||||
lua/lstrlib.o \
|
||||
lua/ltable.o \
|
||||
lua/ltask.o \
|
||||
lua/ltm.o \
|
||||
lua/lundump.o \
|
||||
lua/lvm.o \
|
||||
lua/lzio.o
|
||||
mixer/mixer.o \
|
||||
mixer/rate.o \
|
||||
mixer/audiostream.o \
|
||||
actor.o \
|
||||
bitmap.o \
|
||||
blocky16.o \
|
||||
@ -8,6 +34,7 @@ OBJS =\
|
||||
engine.o \
|
||||
keyframe.o \
|
||||
lab.o \
|
||||
lipsynch.o \
|
||||
localize.o \
|
||||
lua.o \
|
||||
main.o \
|
||||
@ -22,33 +49,21 @@ OBJS =\
|
||||
screen.o \
|
||||
smush.o \
|
||||
sound.o \
|
||||
lipsynch.o \
|
||||
textobject.o \
|
||||
textsplit.o \
|
||||
timer.o \
|
||||
vima.o \
|
||||
walkplane.o \
|
||||
mixer/mixer.o \
|
||||
mixer/rate.o \
|
||||
mixer/audiostream.o
|
||||
|
||||
DEPS = $(OBJS:.o=.d)
|
||||
|
||||
residual: $(OBJS) lua/lib/liblua.a lua/lib/liblualib.a
|
||||
residual: $(OBJS)
|
||||
$(CXX) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
||||
|
||||
.cpp.o:
|
||||
$(CXX) $(CXXFLAGS) -MMD -c $(<) -o $*.o
|
||||
|
||||
lua/lib/liblua.a lua/lib/liblualib.a: lua-build
|
||||
|
||||
lua-build:
|
||||
$(MAKE) -C lua
|
||||
|
||||
clean: lua-clean
|
||||
-rm -f residual$(EXEEXT) *.o mixer\*.o *.d mixer\*.d *~
|
||||
|
||||
lua-clean:
|
||||
$(MAKE) -C lua clean
|
||||
clean:
|
||||
-rm -f residual$(EXEEXT) *.o *~ mixer\*.o *.d mixer\*.d mixer\*~ lua\*.o *.d lua\*.d lua\*~
|
||||
|
||||
-include $(DEPS)
|
||||
|
@ -3,12 +3,10 @@ SDL_CFLAGS=-I/usr/i586-mingw32msvc/include/SDL
|
||||
SDL_LIBS=-L/usr/i586-mingw32msvc/lib -lSDL
|
||||
|
||||
CXX = i586-mingw32msvc-g++
|
||||
CXXFLAGS = -W -Wall -Wno-multichar -Ilua/include $(SDL_CFLAGS) # -O2
|
||||
CXXFLAGS = -W -Wall -Wno-multichar -Ilua $(SDL_CFLAGS) # -O2
|
||||
LDFLAGS = -W -Wall # -O2
|
||||
LIBS = -Llua/lib -llua -llualib -lmingw32 -lopengl32 -lglu32 -lgdi32 \
|
||||
LIBS = -lmingw32 -lopengl32 -lglu32 -lgdi32 \
|
||||
$(SDL_LIBS) -lz
|
||||
EXEEXT =.exe
|
||||
|
||||
include Makefile.common
|
||||
|
||||
.PHONY: lua-build lua-clean
|
||||
|
@ -6,16 +6,14 @@ SDL_CFLAGS=`sdl-config --cflags`
|
||||
SDL_LIBS=`sdl-config --libs`
|
||||
|
||||
CXX = g++
|
||||
CXXFLAGS = -g -W -Wall -Wno-multichar -Ilua/include $(SDL_CFLAGS) # -O2
|
||||
CXXFLAGS = -g -W -Wall -Wno-multichar -Ilua $(SDL_CFLAGS) # -O2
|
||||
LDFLAGS = -g -W -Wall # -O2
|
||||
LIBS = -Llua/lib -llua -llualib -lmingw32 -lopengl32 -lglu32 -lgdi32 \
|
||||
LIBS = -lmingw32 -lopengl32 -lglu32 -lgdi32 \
|
||||
$(SDL_LIBS) -lz
|
||||
EXEEXT =.exe
|
||||
|
||||
include Makefile.common
|
||||
|
||||
.PHONY: lua-build lua-clean
|
||||
|
||||
# Some additional targets
|
||||
install: residual
|
||||
mkdir -p $(RESIDUALPATH)
|
||||
|
@ -1,447 +0,0 @@
|
||||
[Project]
|
||||
FileName=lua.dev
|
||||
Name=lua
|
||||
UnitCount=40
|
||||
Type=2
|
||||
Ver=1
|
||||
ObjFiles=
|
||||
Includes=../../lua/include
|
||||
Libs=
|
||||
PrivateResource=
|
||||
ResourceIncludes=
|
||||
MakeIncludes=
|
||||
Compiler=
|
||||
CppCompiler=
|
||||
Linker=
|
||||
IsCpp=0
|
||||
Icon=
|
||||
ExeOutput=
|
||||
ObjectOutput=
|
||||
OverrideOutput=1
|
||||
OverrideOutputName=liblua.a
|
||||
HostApplication=
|
||||
Folders=
|
||||
CommandLine=
|
||||
IncludeVersionInfo=0
|
||||
SupportXPThemes=0
|
||||
CompilerSet=0
|
||||
CompilerSettings=000000000100100000
|
||||
|
||||
[Unit1]
|
||||
FileName=..\..\lua\src\lapi.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit2]
|
||||
FileName=..\..\lua\src\lapi.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit3]
|
||||
FileName=..\..\lua\src\lauxlib.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit4]
|
||||
FileName=..\..\lua\src\lbuffer.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit5]
|
||||
FileName=..\..\lua\src\lbuiltin.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit6]
|
||||
FileName=..\..\lua\src\lbuiltin.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit7]
|
||||
FileName=..\..\lua\src\ldo.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit8]
|
||||
FileName=..\..\lua\src\ldo.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit9]
|
||||
FileName=..\..\lua\src\lfunc.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit10]
|
||||
FileName=..\..\lua\src\lfunc.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit11]
|
||||
FileName=..\..\lua\src\lgc.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit12]
|
||||
FileName=..\..\lua\src\lgc.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit13]
|
||||
FileName=..\..\lua\src\llex.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit14]
|
||||
FileName=..\..\lua\src\llex.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit15]
|
||||
FileName=..\..\lua\src\lmem.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit16]
|
||||
FileName=..\..\lua\src\lmem.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit17]
|
||||
FileName=..\..\lua\src\lobject.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit18]
|
||||
FileName=..\..\lua\src\lobject.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit19]
|
||||
FileName=..\..\lua\src\lopcodes.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit20]
|
||||
FileName=..\..\lua\src\lparser.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit21]
|
||||
FileName=..\..\lua\src\lparser.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit22]
|
||||
FileName=..\..\lua\src\lstate.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit23]
|
||||
FileName=..\..\lua\src\lstate.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit24]
|
||||
FileName=..\..\lua\src\lstring.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit25]
|
||||
FileName=..\..\lua\src\lstring.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit26]
|
||||
FileName=..\..\lua\src\ltable.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit27]
|
||||
FileName=..\..\lua\src\ltable.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit28]
|
||||
FileName=..\..\lua\src\ltask.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit29]
|
||||
FileName=..\..\lua\src\ltask.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit30]
|
||||
FileName=..\..\lua\src\ltm.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit31]
|
||||
FileName=..\..\lua\src\ltm.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit32]
|
||||
FileName=..\..\lua\src\lundump.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit33]
|
||||
FileName=..\..\lua\src\lundump.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit34]
|
||||
FileName=..\..\lua\src\lvm.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit35]
|
||||
FileName=..\..\lua\src\lvm.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit36]
|
||||
FileName=..\..\lua\src\lzio.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit37]
|
||||
FileName=..\..\lua\src\lzio.h
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[VersionInfo]
|
||||
Major=0
|
||||
Minor=1
|
||||
Release=1
|
||||
Build=1
|
||||
LanguageID=1033
|
||||
CharsetID=1252
|
||||
CompanyName=
|
||||
FileVersion=
|
||||
FileDescription=Developed using the Dev-C++ IDE
|
||||
InternalName=
|
||||
LegalCopyright=
|
||||
LegalTrademarks=
|
||||
OriginalFilename=
|
||||
ProductName=
|
||||
ProductVersion=
|
||||
AutoIncBuildNr=0
|
||||
|
||||
[Unit38]
|
||||
FileName=..\..\lua\src\lib\liolib.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit39]
|
||||
FileName=..\..\lua\src\lib\lmathlib.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
||||
[Unit40]
|
||||
FileName=..\..\lua\src\lib\lstrlib.c
|
||||
CompileCpp=0
|
||||
Folder=lua
|
||||
Compile=1
|
||||
Link=1
|
||||
Priority=1000
|
||||
OverrideBuildCmd=0
|
||||
BuildCmd=
|
||||
|
@ -1,19 +0,0 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 7.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua", "lua.vcproj", "{5930DA38-F3BC-41AB-BC48-FC1AB8ED75B0}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
ConfigName.0 = Debug
|
||||
ConfigName.1 = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{5930DA38-F3BC-41AB-BC48-FC1AB8ED75B0}.Debug.ActiveCfg = Debug|Win32
|
||||
{5930DA38-F3BC-41AB-BC48-FC1AB8ED75B0}.Debug.Build.0 = Debug|Win32
|
||||
{5930DA38-F3BC-41AB-BC48-FC1AB8ED75B0}.Release.ActiveCfg = Release|Win32
|
||||
{5930DA38-F3BC-41AB-BC48-FC1AB8ED75B0}.Release.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -1,217 +0,0 @@
|
||||
<?xml version="1.0" encoding = "windows-1250"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.00"
|
||||
Name="lua"
|
||||
ProjectGUID="{5930DA38-F3BC-41AB-BC48-FC1AB8ED75B0}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug_Lua"
|
||||
IntermediateDirectory="Debug_Lua"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\lua\include"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/lua.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release_Lua"
|
||||
IntermediateDirectory="Release_Lua"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="2"
|
||||
InlineFunctionExpansion="1"
|
||||
OmitFramePointers="TRUE"
|
||||
OptimizeForProcessor="2"
|
||||
AdditionalIncludeDirectories="..\..\lua\include"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="0"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="$(OutDir)/lua.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm">
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lapi.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lapi.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lauxlib.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lbuffer.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lbuiltin.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lbuiltin.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ldo.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ldo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lfunc.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lfunc.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lgc.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lgc.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lib\liolib.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\llex.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\llex.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lib\lmathlib.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lmem.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lmem.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lobject.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lobject.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lopcodes.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lparser.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lparser.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lstate.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lstate.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lstring.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lstring.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lib\lstrlib.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ltable.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ltable.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ltask.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ltask.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ltm.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\ltm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lundump.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lundump.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lvm.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lvm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lzio.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\src\lzio.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
19
dists/msvc8/residual.sln
Normal file
19
dists/msvc8/residual.sln
Normal file
@ -0,0 +1,19 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||
# Visual C++ Express 2005
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "residual", "residual.vcproj", "{44D38F29-303D-4E3D-AF45-B96523BF1F9F}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{44D38F29-303D-4E3D-AF45-B96523BF1F9F}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{44D38F29-303D-4E3D-AF45-B96523BF1F9F}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{44D38F29-303D-4E3D-AF45-B96523BF1F9F}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{44D38F29-303D-4E3D-AF45-B96523BF1F9F}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
666
dists/msvc8/residual.vcproj
Normal file
666
dists/msvc8/residual.vcproj
Normal file
@ -0,0 +1,666 @@
|
||||
<?xml version="1.0" encoding="windows-1250"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8,00"
|
||||
Name="residual"
|
||||
ProjectGUID="{44D38F29-303D-4E3D-AF45-B96523BF1F9F}"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug_Residual"
|
||||
IntermediateDirectory="Debug_Residual"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions="/wd 4996"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\lua\"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS"
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="FALSE"
|
||||
DebugInformationFormat="4"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions="OpenGL32.Lib GlAux.Lib GLU32.Lib SDL.Lib SDLMain.Lib
/NODEFAULTLIB:LIBCMTD"
|
||||
AdditionalDependencies="sdl.lib zlibwapi.lib"
|
||||
OutputFile="$(OutDir)/residual.exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="TRUE"
|
||||
ProgramDatabaseFile="$(OutDir)/residual.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release_Residual"
|
||||
IntermediateDirectory="Release_Residual"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
WholeProgramOptimization="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="3"
|
||||
GlobalOptimizations="TRUE"
|
||||
InlineFunctionExpansion="2"
|
||||
EnableIntrinsicFunctions="TRUE"
|
||||
FavorSizeOrSpeed="1"
|
||||
OmitFramePointers="TRUE"
|
||||
WholeProgramOptimization="TRUE"
|
||||
AdditionalIncludeDirectories="..\..\lua"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
|
||||
StringPooling="TRUE"
|
||||
RuntimeLibrary="2"
|
||||
EnableFunctionLevelLinking="TRUE"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="TRUE"
|
||||
DebugInformationFormat="0"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions="OpenGL32.Lib GlAux.Lib GLU32.Lib SDL.Lib SDLMain.Lib
/NODEFAULTLIB:LIBCMTD"
|
||||
AdditionalDependencies="sdl.lib zlibwapi.lib"
|
||||
OutputFile="$(OutDir)/residual.exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="2"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="RSC"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\COPYING"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\README"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\residual.rc"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\TODO"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="3DPrimitives"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\matrix3.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\matrix3.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\matrix4.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\matrix4.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\vector3d.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="mixer"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\mixer\audiostream.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\mixer\audiostream.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\mixer\mixer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\mixer\mixer.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\mixer\rate.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\mixer\rate.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="lua"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\lua\lapi.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lapi.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lauxlib.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lauxlib.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lbuffer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lbuiltin.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lbuiltin.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ldo.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ldo.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lfunc.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lfunc.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lgc.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lgc.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\liolib.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\llex.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\llex.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lmathlib.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lmem.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lmem.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lobject.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lobject.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lopcodes.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lparser.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lparser.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lstate.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lstate.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lstring.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lstring.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lstrlib.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ltable.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ltable.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ltask.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ltask.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ltm.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\ltm.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lua.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\luadebug.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lualib.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lundump.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lundump.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lvm.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lvm.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lzio.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua\lzio.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<File
|
||||
RelativePath="..\..\actor.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\actor.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\bitmap.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\bitmap.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\bits.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\blocky16.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\blocky16.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\color.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\colormap.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\costume.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\costume.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\debug.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\debug.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\driver_gl.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\driver_gl.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\engine.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\engine.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\keyframe.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\keyframe.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lab.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lab.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lipsynch.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lipsynch.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\localize.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\localize.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\lua.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\main.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\material.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\material.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\model.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\model.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\objectstate.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\objectstate.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\registry.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\registry.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\resource.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\resource.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\scene.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\scene.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\screen.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\screen.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\smush.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\smush.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\sound.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\sound.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\stdafx.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\textobject.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\textobject.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\textsplit.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\textsplit.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\timer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\timer.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\vima.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\walkplane.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\walkplane.h"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
Loading…
Reference in New Issue
Block a user