mirror of
				https://github.com/Ed94/HandmadeHero.git
				synced 2025-10-30 14:30:54 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | |
|   <PropertyGroup Label="Globals">
 | |
|     <ProjectGuid>{E1CF01B8-BB9F-42F4-9EDB-9F1274D3685A}</ProjectGuid>
 | |
|     <RootNamespace>HandmadeHero</RootNamespace>
 | |
|     <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
 | |
|     <ProjectName>HandmadeHero</ProjectName>
 | |
|   </PropertyGroup>
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | |
|   <!-- Development Configuration for x64 -->
 | |
|   <ItemGroup Label="ProjectConfigurations">
 | |
|     <ProjectConfiguration Include="Development|x64">
 | |
|       <Configuration>Development</Configuration>
 | |
|       <Platform>x64</Platform>
 | |
|     </ProjectConfiguration>
 | |
|   </ItemGroup>
 | |
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'">
 | |
|     <IncludePath>$(ProjectDir)project;$(IncludePath);</IncludePath>
 | |
|     <LibraryPath>$(ProjectDir)data;$(windir)System32;$(LibraryPath)</LibraryPath>
 | |
|     <NMakeBuildCommandLine>pwsh -ExecutionPolicy Bypass -NoProfile -NonInteractive -File $(ProjectDir)scripts\build.ps1 msvc dev engine</NMakeBuildCommandLine>
 | |
|     <NMakeCleanCommandLine>pwsh ExecutionPolicy Bypass -NoProfile -NonInteractive -File $(ProjectDir)scripts\clean.ps1</NMakeCleanCommandLine>
 | |
|     <NMakePreprocessorDefinitions>GEN_TIME;Build_Development;Build_Debug;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
 | |
|     <ExternalIncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);$(UniversalCRT_IncludePath);</ExternalIncludePath>
 | |
|     <NMakeReBuildCommandLine>
 | |
|     </NMakeReBuildCommandLine>
 | |
|   </PropertyGroup>
 | |
|   <ItemGroup>
 | |
|     <ClInclude Include="project\dependencies\gen.hpp" />
 | |
|     <ClInclude Include="project\engine\engine.hpp" />
 | |
|     <ClInclude Include="project\engine\engine_game_api.hpp" />
 | |
|     <ClInclude Include="project\engine\engine_to_platform_api.hpp" />
 | |
|     <ClInclude Include="project\gen\engine_symbol_table.hpp" />
 | |
|     <ClInclude Include="project\handmade.hpp" />
 | |
|     <ClInclude Include="project\platform\compiler_ignores.hpp" />
 | |
|     <ClInclude Include="project\platform\context.hpp" />
 | |
|     <ClInclude Include="project\platform\generics.hpp" />
 | |
|     <ClInclude Include="project\platform\gen\context.gen.hpp" />
 | |
|     <ClInclude Include="project\platform\grime.hpp" />
 | |
|     <ClInclude Include="project\platform\jsl.hpp" />
 | |
|     <ClInclude Include="project\platform\macros.hpp" />
 | |
|     <ClInclude Include="project\platform\math_constants.hpp" />
 | |
|     <ClInclude Include="project\platform\platform.hpp" />
 | |
|     <ClInclude Include="project\platform\strings.hpp" />
 | |
|     <ClInclude Include="project\platform\types.hpp" />
 | |
|     <ClInclude Include="project\platform\win32.hpp" />
 | |
|     <ClInclude Include="project\platform\win32\win32.hpp" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <ClCompile Include="project\codegen\engine_postbuild_gen.cpp" />
 | |
|     <ClCompile Include="project\codegen\platform_gen.cpp" />
 | |
|     <ClCompile Include="project\engine\engine.cpp" />
 | |
|     <ClCompile Include="project\engine\test_samples.cpp" />
 | |
|     <ClCompile Include="project\handmade.cpp" />
 | |
|     <ClCompile Include="project\handmade_engine.cpp" />
 | |
|     <ClCompile Include="project\handmade_win32.cpp" />
 | |
|     <ClCompile Include="project\platform\win32\win32_audio.cpp" />
 | |
|     <ClCompile Include="project\platform\win32\win32_input.cpp" />
 | |
|     <ClCompile Include="project\platform\win32\win32_platform.cpp" />
 | |
|     <ClCompile Include="project\platform\win32\win32_platform_api.cpp" />
 | |
|     <ClCompile Include="project\platform\win32_platform.cpp" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <None Include="docs\Day 001.md" />
 | |
|     <None Include="docs\Day 002.md" />
 | |
|     <None Include="docs\Day 003.md" />
 | |
|     <None Include="docs\Day 004.md" />
 | |
|     <None Include="docs\Day 011.md" />
 | |
|     <None Include="docs\Day 012.md" />
 | |
|     <None Include="docs\Day 013.md" />
 | |
|     <None Include="docs\Day 014.md" />
 | |
|     <None Include="docs\Day 015.md" />
 | |
|     <None Include="docs\Day 016.md" />
 | |
|     <None Include="docs\Day 017.md" />
 | |
|     <None Include="docs\Day 019.md" />
 | |
|     <None Include="docs\Day 020.md" />
 | |
|     <None Include="docs\Day 021.md" />
 | |
|     <None Include="docs\Day 022.md" />
 | |
|     <None Include="scripts\build.ps1" />
 | |
|     <None Include="scripts\clean.ps1" />
 | |
|     <None Include="scripts\helpers\devshell.ps1" />
 | |
|     <None Include="scripts\helpers\target_arch.psm1" />
 | |
|     <None Include="scripts\update_deps.ps1" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <Content Include="project\codegen\Readme.md" />
 | |
|     <Content Include="project\gen\Readme.md" />
 | |
|     <Content Include="scripts\rebuild.ps1" />
 | |
|   </ItemGroup>
 | |
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'" Label="Configuration">
 | |
|     <ConfigurationType>Makefile</ConfigurationType>
 | |
|     <UseDebugLibraries>true</UseDebugLibraries>
 | |
|     <PlatformToolset>v143</PlatformToolset>
 | |
|     <CharacterSet>Unicode</CharacterSet>
 | |
|   </PropertyGroup>
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Targets" />
 | |
| </Project> |