Files
renderdoc/renderdoc/driver/gl/renderdoc_gl.vcxproj
T
baldurk fe0be58908 Implement CGLPlatform using CGL and NSOpenGLContext
* On replay on macOS we use NSOpenGLContext so we can render to windows.
* We have two windowing systems on mac - one for Metal compatible outputs and
  one for OpenGL compatible outputs.
2019-02-13 18:50:54 +00:00

204 lines
8.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Development|Win32">
<Configuration>Development</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Development|x64">
<Configuration>Development</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>renderdoc_gl</RootNamespace>
<ProjectName>gl</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v140</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
<IncludePath>$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
<LibraryPath>$(LibraryPath)</LibraryPath>
<ExcludePath>$(ExcludePath)</ExcludePath>
<TargetName>driver_$(ProjectName)</TargetName>
</PropertyGroup>
<PropertyGroup>
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Platform)'=='x64'">
<ClCompile>
<PreprocessorDefinitions>WIN64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<PreprocessorDefinitions>RELEASE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup>
<ClCompile>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<MinimalRebuild>false</MinimalRebuild>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<AdditionalIncludeDirectories>$(SolutionDir)renderdoc\;$(SolutionDir)renderdoc\3rdparty\</AdditionalIncludeDirectories>
<PreprocessorDefinitions>RENDERDOC_EXPORTS;RENDERDOC_PLATFORM_WIN32;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WarningLevel>Level4</WarningLevel>
<TreatWarningAsError>true</TreatWarningAsError>
<DisableSpecificWarnings>4100</DisableSpecificWarnings>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>precompiled.h</PrecompiledHeaderFile>
<ForcedIncludeFiles>precompiled.h</ForcedIncludeFiles>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Development'">
<ClCompile>
<Optimization>Disabled</Optimization>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<Optimization>MaxSpeed</Optimization>
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<BufferSecurityCheck>false</BufferSecurityCheck>
</ClCompile>
<Link>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="apple_gl_hook_defs.h" />
<ClInclude Include="cgl_dispatch_table.h" />
<ClInclude Include="glx_dispatch_table.h" />
<ClInclude Include="gl_common.h" />
<ClInclude Include="gl_driver.h" />
<ClInclude Include="gl_enum.h" />
<ClInclude Include="gl_dispatch_table.h" />
<ClInclude Include="gl_dispatch_table_defs.h" />
<ClInclude Include="gl_initstate.h" />
<ClInclude Include="egl_dispatch_table.h" />
<ClInclude Include="gl_manager.h" />
<ClInclude Include="gl_renderstate.h" />
<ClInclude Include="gl_replay.h" />
<ClInclude Include="gl_resources.h" />
<ClInclude Include="gl_shader_refl.h" />
<ClInclude Include="official\cgl.h" />
<ClInclude Include="official\egl.h" />
<ClInclude Include="official\eglext.h" />
<ClInclude Include="official\eglplatform.h" />
<ClInclude Include="official\gl32.h" />
<ClInclude Include="official\gl3platform.h" />
<ClInclude Include="official\glcorearb.h" />
<ClInclude Include="official\glesext.h" />
<ClInclude Include="official\glext.h" />
<ClInclude Include="official\khrplatform.h" />
<ClInclude Include="official\wglext.h" />
<ClInclude Include="precompiled.h" />
<ClInclude Include="wgl_dispatch_table.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="cgl_platform.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="cgl_hooks.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="glx_fake_vk_hooks.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="glx_hooks.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="glx_platform.cpp">
<ExcludedFromBuild>true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="egl_platform.cpp" />
<ClCompile Include="egl_hooks.cpp" />
<ClCompile Include="gl_common.cpp" />
<ClCompile Include="gl_counters.cpp" />
<ClCompile Include="gl_debug.cpp" />
<ClCompile Include="gl_driver.cpp" />
<ClCompile Include="gl_hooks.cpp" />
<ClCompile Include="wgl_hooks.cpp" />
<ClCompile Include="gl_initstate.cpp" />
<ClCompile Include="gl_manager.cpp" />
<ClCompile Include="gl_msaa_array_conv.cpp" />
<ClCompile Include="gl_outputwindow.cpp" />
<ClCompile Include="gl_overlay.cpp" />
<ClCompile Include="gl_postvs.cpp" />
<ClCompile Include="gl_program_iterate.cpp" />
<ClCompile Include="gl_rendermesh.cpp" />
<ClCompile Include="gl_renderstate.cpp" />
<ClCompile Include="gl_rendertext.cpp" />
<ClCompile Include="gl_rendertexture.cpp" />
<ClCompile Include="gl_replay.cpp" />
<ClCompile Include="gl_resources.cpp" />
<ClCompile Include="gl_shader_refl.cpp" />
<ClCompile Include="gl_stringise.cpp" />
<ClCompile Include="precompiled.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="wgl_platform.cpp" />
<ClCompile Include="wrappers\gl_buffer_funcs.cpp" />
<ClCompile Include="wrappers\gl_debug_funcs.cpp" />
<ClCompile Include="wrappers\gl_draw_funcs.cpp" />
<ClCompile Include="wrappers\gl_emulated.cpp" />
<ClCompile Include="wrappers\gl_framebuffer_funcs.cpp" />
<ClCompile Include="wrappers\gl_get_funcs.cpp" />
<ClCompile Include="wrappers\gl_interop_funcs.cpp" />
<ClCompile Include="wrappers\gl_query_funcs.cpp" />
<ClCompile Include="wrappers\gl_sampler_funcs.cpp" />
<ClCompile Include="wrappers\gl_shader_funcs.cpp" />
<ClCompile Include="wrappers\gl_state_funcs.cpp" />
<ClCompile Include="wrappers\gl_texture_funcs.cpp" />
<ClCompile Include="wrappers\gl_uniform_funcs.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\shaders\spirv\renderdoc_spirv.vcxproj">
<Project>{0aae0ad1-371b-4a36-9ed1-80e10e960605}</Project>
<Private>false</Private>
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies>
<LinkLibraryDependencies>false</LinkLibraryDependencies>
<UseLibraryDependencyInputs>false</UseLibraryDependencyInputs>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="cgl_platform.mm" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>