Files
2023-02-08 22:59:10 +08:00

167 lines
8.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{95217e2d-16de-4eb5-8f44-047e7b1ec475}</ProjectGuid>
<RootNamespace>Editor</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutDir>$(SolutionDir)Build\$(ProjectName)-$(Configuration)-Binary\</OutDir>
<IntDir>$(SolutionDir)Build\$(ProjectName)-$(Configuration)-Intermediate\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IntDir>$(SolutionDir)Build\$(ProjectName)-$(Configuration)-Intermediate\</IntDir>
<OutDir>$(SolutionDir)Build\$(ProjectName)-$(Configuration)-Binary\</OutDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<LanguageStandard>stdcpp20</LanguageStandard>
<AdditionalIncludeDirectories>$(SolutionDir)Source/$(ProjectName)/;$(SolutionDir)External/;$(SolutionDir)Source;$(VULKAN_SDK)/Include/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>Pch.h</PrecompiledHeaderFile>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
</Link>
<PostBuildEvent>
<Command>
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<LanguageStandard>stdcpp20</LanguageStandard>
<AdditionalIncludeDirectories>$(SolutionDir)Source/$(ProjectName)/;$(SolutionDir)External/;$(SolutionDir)Source;$(VULKAN_SDK)/Include/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>Pch.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
</Link>
<PostBuildEvent>
<Command>
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ProjectReference Include="..\Engine\Engine.vcxproj">
<Project>{e88caf1e-44f6-4cd4-a5eb-aea9f0827861}</Project>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ClCompile Include="Undo.cpp" />
<ClCompile Include="Widgets\AssetInspector.cpp" />
<ClCompile Include="Widgets\DrawAssetInspector\DrawMaterialType.cpp" />
<ClCompile Include="Widgets\DrawAssetInspector\DrawStaticMeshType.cpp" />
<ClCompile Include="Widgets\DrawAssetInspector\DrawTextureType.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentLandscape.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentPostprocessVolume.cpp" />
<ClCompile Include="EditorAsset.cpp" />
<ClCompile Include="Main.cpp" />
<ClCompile Include="Pch.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">/bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<ClCompile Include="Widgets\Console.cpp" />
<ClCompile Include="Widgets\ContentViewer.cpp" />
<ClCompile Include="Widgets\Detail.cpp" />
<ClCompile Include="Widgets\Dockspace.cpp" />
<ClCompile Include="Widgets\Downbar.cpp" />
<ClCompile Include="Editor.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponent.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentSunSky.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentLight.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentPMX.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentReflectionCapture.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentSpotLight.cpp" />
<ClCompile Include="Widgets\DrawComponent\DrawComponentStaticMesh.cpp" />
<ClCompile Include="Widgets\MainMenu.cpp" />
<ClCompile Include="Widgets\ProjectSelect.cpp" />
<ClCompile Include="Widgets\RenderSetting.cpp" />
<ClCompile Include="Widgets\SceneOutliner.cpp" />
<ClCompile Include="Widgets\Viewport.cpp" />
<ClCompile Include="Widgets\ViewportCamera.cpp" />
<ClCompile Include="Widgets\Widget.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="EditorAsset.h" />
<ClInclude Include="Pch.h" />
<ClInclude Include="Widgets\AssetInspector.h" />
<ClInclude Include="Widgets\Console.h" />
<ClInclude Include="Widgets\ContentViewer.h" />
<ClInclude Include="Widgets\Detail.h" />
<ClInclude Include="Widgets\Dockspace.h" />
<ClInclude Include="Widgets\Downbar.h" />
<ClInclude Include="Editor.h" />
<ClInclude Include="Widgets\DrawAssetInspector\DrawAssetInspector.h" />
<ClInclude Include="Widgets\DrawComponent\DrawComponent.h" />
<ClInclude Include="Undo.h" />
<ClInclude Include="Widgets\MainMenu.h" />
<ClInclude Include="Widgets\ProjectSelect.h" />
<ClInclude Include="Widgets\RenderSetting.h" />
<ClInclude Include="Widgets\SceneOutliner.h" />
<ClInclude Include="Widgets\Viewport.h" />
<ClInclude Include="Widgets\ViewportCamera.h" />
<ClInclude Include="Widgets\Widget.h" />
<ClInclude Include="Widgets\WidgetsHeader.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>