mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-19 12:14:35 +02:00
Added typeinfogen with state system
This commit is contained in:
+32
-18
@@ -194,8 +194,9 @@
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -209,8 +210,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Q4 Debug|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -224,8 +226,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Prey Debug|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -239,8 +242,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug with inlines|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -254,8 +258,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug with inlines and memory log|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -269,8 +274,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dedicated Debug|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -284,8 +290,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dedicated Debug with inlines|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -299,8 +306,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Dedicated Release|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -314,8 +322,9 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
<Command>cd..
|
||||
cd..
|
||||
typeinfo.exe</Command>
|
||||
</PreBuildEvent>
|
||||
<Link>
|
||||
<OutputFile>../../base/gamex64.dll</OutputFile>
|
||||
@@ -344,6 +353,7 @@
|
||||
<ClCompile Include="game\gamesys\Class.cpp" />
|
||||
<ClCompile Include="game\gamesys\DebugGraph.cpp" />
|
||||
<ClCompile Include="game\gamesys\Event.cpp" />
|
||||
<ClCompile Include="game\gamesys\GameTypeInfo.cpp" />
|
||||
<ClCompile Include="game\gamesys\SaveGame.cpp" />
|
||||
<ClCompile Include="game\gamesys\SysCmds.cpp" />
|
||||
<ClCompile Include="game\gamesys\SysCvar.cpp" />
|
||||
@@ -418,6 +428,7 @@
|
||||
<ClInclude Include="game\gamesys\Class.h" />
|
||||
<ClInclude Include="game\gamesys\DebugGraph.h" />
|
||||
<ClInclude Include="game\gamesys\Event.h" />
|
||||
<ClInclude Include="game\gamesys\GameTypeInfo.h" />
|
||||
<ClInclude Include="game\gamesys\NoGameTypeInfo.h" />
|
||||
<ClInclude Include="game\gamesys\SaveGame.h" />
|
||||
<ClInclude Include="game\gamesys\SysCmds.h" />
|
||||
@@ -481,6 +492,9 @@
|
||||
<ProjectReference Include="..\engine\idlib.vcxproj">
|
||||
<Project>{49bec5c6-b964-417a-851e-808886b57400}</Project>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\engine\typeinfo.vcxproj">
|
||||
<Project>{6ea6406f-3e65-47d9-8246-d6660a81606f}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
|
||||
Reference in New Issue
Block a user