duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

reshadefx.vcxproj (1851B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      3   <Import Project="..\msvc\vsprops\Configurations.props" />
      4   <PropertyGroup Label="Globals">
      5     <ProjectGuid>{27B8D4BB-4F01-4432-BC14-9BF6CA458EEE}</ProjectGuid>
      6   </PropertyGroup>
      7   <ItemGroup>
      8     <ClInclude Include="include\effect_codegen.hpp" />
      9     <ClInclude Include="include\effect_expression.hpp" />
     10     <ClInclude Include="include\effect_lexer.hpp" />
     11     <ClInclude Include="include\effect_module.hpp" />
     12     <ClInclude Include="include\effect_parser.hpp" />
     13     <ClInclude Include="include\effect_preprocessor.hpp" />
     14     <ClInclude Include="include\effect_symbol_table.hpp" />
     15     <ClInclude Include="include\effect_token.hpp" />
     16   </ItemGroup>
     17   <ItemGroup>
     18     <ClCompile Include="src\effect_codegen_glsl.cpp" />
     19     <ClCompile Include="src\effect_codegen_hlsl.cpp" />
     20     <ClCompile Include="src\effect_codegen_spirv.cpp" />
     21     <ClCompile Include="src\effect_expression.cpp" />
     22     <ClCompile Include="src\effect_lexer.cpp" />
     23     <ClCompile Include="src\effect_parser_exp.cpp" />
     24     <ClCompile Include="src\effect_parser_stmt.cpp" />
     25     <ClCompile Include="src\effect_preprocessor.cpp" />
     26     <ClCompile Include="src\effect_symbol_table.cpp" />
     27   </ItemGroup>
     28   <ItemGroup>
     29     <None Include="src\effect_symbol_table_intrinsics.inl" />
     30   </ItemGroup>
     31   <Import Project="..\msvc\vsprops\StaticLibrary.props" />
     32   <ItemDefinitionGroup>
     33     <ClCompile>
     34       <WarningLevel>TurnOffAllWarnings</WarningLevel>
     35       <AdditionalIncludeDirectories>$(ProjectDir)src;$(ProjectDir)include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
     36       <LanguageStandard>stdcpp17</LanguageStandard>
     37     </ClCompile>
     38   </ItemDefinitionGroup>
     39   <Import Project="..\msvc\vsprops\Targets.props" />
     40 </Project>