From 0a42d3e4d755f601ccd055e2b4a466894fe10db1 Mon Sep 17 00:00:00 2001 From: baldurk Date: Sun, 28 Feb 2016 11:33:23 +0100 Subject: [PATCH] Rename 'Profile' target in visual studio to 'Development' * When I went to explain to someone why the target was named Profile and not Debug as you might expect, I realised the reasons were entirely opaque and historical. So instead, rename it to Development since that is really what it's for - any profiling would be done in Release mode. --- .gitignore | 6 +- COMPILE.md | 2 +- pdblocate/pdblocate.vcxproj | 20 +-- qrenderdoc/qrenderdoc.pro | 4 +- renderdoc.sln | 116 +++++++++--------- .../breakpad/client/windows/common.vcxproj | 16 +-- .../crash_generation_client.vcxproj | 16 +-- .../crash_generation_server.vcxproj | 16 +-- .../windows/handler/exception_handler.vcxproj | 16 +-- .../driver/d3d11/renderdoc_d3d11.vcxproj | 24 ++-- renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj | 24 ++-- renderdoc/driver/gl/renderdoc_gl.vcxproj | 24 ++-- .../shaders/dxbc/renderdoc_dxbc.vcxproj | 24 ++-- .../shaders/spirv/renderdoc_spirv.vcxproj | 24 ++-- .../driver/vulkan/renderdoc_vulkan.vcxproj | 20 +-- renderdoc/renderdoc.vcxproj | 24 ++-- renderdoccmd/renderdoccmd.vcxproj | 24 ++-- renderdocshim/renderdocshim.vcxproj | 24 ++-- .../3rdparty/WinFormsUI/WinFormsUI.csproj | 4 +- renderdocui/renderdocui.csproj | 8 +- 20 files changed, 218 insertions(+), 218 deletions(-) diff --git a/.gitignore b/.gitignore index 6ffb22260..6091199e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ Debug/ Documentation/ Release/ -Profile/ -Profile32/ -Profile64/ +Development/ +Development32/ +Development64/ Release32/ Release64/ dist/ diff --git a/COMPILE.md b/COMPILE.md index da9f21024..3334ef7a3 100644 --- a/COMPILE.md +++ b/COMPILE.md @@ -13,7 +13,7 @@ The main [renderdoc.sln](renderdoc.sln) is a VS2010 solution. To build on later There should be no external dependencies, all libraries/headers needed to build are included in the git checkout. -Profile configuration is recommended for day-to-day dev. It's debuggable but not too slow. Release configuration is then obviously what you should build for any builds you'll send out to people or if you want to evaluate performance. +Development configuration is recommended for day-to-day dev. It's debuggable but not too slow. Release configuration is then obviously what you should build for any builds you'll send out to people or if you want to evaluate performance. ### Visual Studio Visualisers ### diff --git a/pdblocate/pdblocate.vcxproj b/pdblocate/pdblocate.vcxproj index 548321e39..911eefb29 100644 --- a/pdblocate/pdblocate.vcxproj +++ b/pdblocate/pdblocate.vcxproj @@ -1,12 +1,12 @@  - - Profile32 + + Development32 Win32 - - Profile64 + + Development64 Win32 @@ -47,15 +47,15 @@ $(VSInstallDir)\DIA SDK\include;$(IncludePath) $(SolutionDir)Win32\Release\pdblocate\ - + false $(VSInstallDir)\DIA SDK\include;$(IncludePath) - $(SolutionDir)x64\Profile\pdblocate\ + $(SolutionDir)x64\Development\pdblocate\ - + false $(VSInstallDir)\DIA SDK\include;$(IncludePath) - $(SolutionDir)Win32\Profile\pdblocate\ + $(SolutionDir)Win32\Development\pdblocate\ @@ -91,7 +91,7 @@ true - + Level3 @@ -108,7 +108,7 @@ true - + Level3 diff --git a/qrenderdoc/qrenderdoc.pro b/qrenderdoc/qrenderdoc.pro index 624add9c0..d6bc30d3e 100644 --- a/qrenderdoc/qrenderdoc.pro +++ b/qrenderdoc/qrenderdoc.pro @@ -32,11 +32,11 @@ INCLUDEPATH += $$_PRO_FILE_PWD_/3rdparty/flowlayout win32 { !contains(QMAKE_TARGET.arch, x86_64) { - Debug:DESTDIR = $$_PRO_FILE_PWD_/../Win32/Profile + Debug:DESTDIR = $$_PRO_FILE_PWD_/../Win32/Development Release:DESTDIR = $$_PRO_FILE_PWD_/../Win32/Release } else { - Debug:DESTDIR = $$_PRO_FILE_PWD_/../x64/Profile + Debug:DESTDIR = $$_PRO_FILE_PWD_/../x64/Development Release:DESTDIR = $$_PRO_FILE_PWD_/../x64/Release } diff --git a/renderdoc.sln b/renderdoc.sln index 270f6b561..6184b0b65 100644 --- a/renderdoc.sln +++ b/renderdoc.sln @@ -70,128 +70,128 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vulkan", "renderdoc\driver\ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Profile|Win32 = Profile|Win32 - Profile|x64 = Profile|x64 + Development|Win32 = Development|Win32 + Development|x64 = Development|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E2B46D67-90E2-40B6-9597-72930E7845E5}.Profile|Win32.ActiveCfg = Profile|Win32 - {E2B46D67-90E2-40B6-9597-72930E7845E5}.Profile|Win32.Build.0 = Profile|Win32 - {E2B46D67-90E2-40B6-9597-72930E7845E5}.Profile|x64.ActiveCfg = Profile|x64 - {E2B46D67-90E2-40B6-9597-72930E7845E5}.Profile|x64.Build.0 = Profile|x64 + {E2B46D67-90E2-40B6-9597-72930E7845E5}.Development|Win32.ActiveCfg = Development|Win32 + {E2B46D67-90E2-40B6-9597-72930E7845E5}.Development|Win32.Build.0 = Development|Win32 + {E2B46D67-90E2-40B6-9597-72930E7845E5}.Development|x64.ActiveCfg = Development|x64 + {E2B46D67-90E2-40B6-9597-72930E7845E5}.Development|x64.Build.0 = Development|x64 {E2B46D67-90E2-40B6-9597-72930E7845E5}.Release|Win32.ActiveCfg = Release|Win32 {E2B46D67-90E2-40B6-9597-72930E7845E5}.Release|Win32.Build.0 = Release|Win32 {E2B46D67-90E2-40B6-9597-72930E7845E5}.Release|x64.ActiveCfg = Release|x64 {E2B46D67-90E2-40B6-9597-72930E7845E5}.Release|x64.Build.0 = Release|x64 - {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Profile|Win32.ActiveCfg = Profile|x86 - {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Profile|Win32.Build.0 = Profile|x86 - {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Profile|x64.ActiveCfg = Profile|x64 - {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Profile|x64.Build.0 = Profile|x64 + {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Development|Win32.ActiveCfg = Development|x86 + {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Development|Win32.Build.0 = Development|x86 + {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Development|x64.ActiveCfg = Development|x64 + {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Development|x64.Build.0 = Development|x64 {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Release|Win32.ActiveCfg = Release|x86 {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Release|Win32.Build.0 = Release|x86 {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Release|x64.ActiveCfg = Release|x64 {5504BAC8-287E-4083-A57F-5EE172EDDAEB}.Release|x64.Build.0 = Release|x64 - {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Profile|Win32.ActiveCfg = Profile32|Win32 - {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Profile|Win32.Build.0 = Profile32|Win32 - {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Profile|x64.ActiveCfg = Profile64|Win32 - {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Profile|x64.Build.0 = Profile64|Win32 + {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Development|Win32.ActiveCfg = Development32|Win32 + {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Development|Win32.Build.0 = Development32|Win32 + {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Development|x64.ActiveCfg = Development64|Win32 + {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Development|x64.Build.0 = Development64|Win32 {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Release|Win32.ActiveCfg = Release32|Win32 {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Release|Win32.Build.0 = Release32|Win32 {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Release|x64.ActiveCfg = Release64|Win32 {6CCB39BA-AB6B-4589-B7C4-9DA879571713}.Release|x64.Build.0 = Release64|Win32 - {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Profile|Win32.ActiveCfg = Profile|Any CPU - {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Profile|Win32.Build.0 = Profile|Any CPU - {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Profile|x64.ActiveCfg = Profile|Any CPU - {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Profile|x64.Build.0 = Profile|Any CPU + {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Development|Win32.ActiveCfg = Development|Any CPU + {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Development|Win32.Build.0 = Development|Any CPU + {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Development|x64.ActiveCfg = Development|Any CPU + {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Development|x64.Build.0 = Development|Any CPU {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Release|Win32.ActiveCfg = Release|Any CPU {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Release|Win32.Build.0 = Release|Any CPU {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Release|x64.ActiveCfg = Release|Any CPU {C75532C4-765B-418E-B09B-46D36B2ABDB1}.Release|x64.Build.0 = Release|Any CPU - {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Profile|Win32.ActiveCfg = Profile|Win32 - {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Profile|Win32.Build.0 = Profile|Win32 - {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Profile|x64.ActiveCfg = Profile|x64 - {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Profile|x64.Build.0 = Profile|x64 + {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Development|Win32.ActiveCfg = Development|Win32 + {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Development|Win32.Build.0 = Development|Win32 + {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Development|x64.ActiveCfg = Development|x64 + {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Development|x64.Build.0 = Development|x64 {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Release|Win32.ActiveCfg = Release|Win32 {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Release|Win32.Build.0 = Release|Win32 {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Release|x64.ActiveCfg = Release|x64 {D03DF2F9-513C-4084-BBDD-1DEE8D9250D7}.Release|x64.Build.0 = Release|x64 - {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Profile|Win32.ActiveCfg = Profile|Win32 - {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Profile|x64.ActiveCfg = Profile|x64 + {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Development|Win32.ActiveCfg = Development|Win32 + {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Development|x64.ActiveCfg = Development|x64 {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Release|Win32.ActiveCfg = Release|Win32 {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Release|Win32.Build.0 = Release|Win32 {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Release|x64.ActiveCfg = Release|x64 {EA1242CF-BB42-B1AC-9B6A-A508D96D1CB7}.Release|x64.Build.0 = Release|x64 - {EC847717-119A-2391-0477-212E1140082C}.Profile|Win32.ActiveCfg = Profile|Win32 - {EC847717-119A-2391-0477-212E1140082C}.Profile|x64.ActiveCfg = Profile|x64 + {EC847717-119A-2391-0477-212E1140082C}.Development|Win32.ActiveCfg = Development|Win32 + {EC847717-119A-2391-0477-212E1140082C}.Development|x64.ActiveCfg = Development|x64 {EC847717-119A-2391-0477-212E1140082C}.Release|Win32.ActiveCfg = Release|Win32 {EC847717-119A-2391-0477-212E1140082C}.Release|Win32.Build.0 = Release|Win32 {EC847717-119A-2391-0477-212E1140082C}.Release|x64.ActiveCfg = Release|x64 {EC847717-119A-2391-0477-212E1140082C}.Release|x64.Build.0 = Release|x64 - {7893E300-3ED0-7F4C-158F-67EA63934C57}.Profile|Win32.ActiveCfg = Profile|Win32 - {7893E300-3ED0-7F4C-158F-67EA63934C57}.Profile|x64.ActiveCfg = Profile|x64 + {7893E300-3ED0-7F4C-158F-67EA63934C57}.Development|Win32.ActiveCfg = Development|Win32 + {7893E300-3ED0-7F4C-158F-67EA63934C57}.Development|x64.ActiveCfg = Development|x64 {7893E300-3ED0-7F4C-158F-67EA63934C57}.Release|Win32.ActiveCfg = Release|Win32 {7893E300-3ED0-7F4C-158F-67EA63934C57}.Release|Win32.Build.0 = Release|Win32 {7893E300-3ED0-7F4C-158F-67EA63934C57}.Release|x64.ActiveCfg = Release|x64 {7893E300-3ED0-7F4C-158F-67EA63934C57}.Release|x64.Build.0 = Release|x64 - {B7399F39-300F-450E-F471-9490F959D2A7}.Profile|Win32.ActiveCfg = Profile|Win32 - {B7399F39-300F-450E-F471-9490F959D2A7}.Profile|x64.ActiveCfg = Profile|x64 + {B7399F39-300F-450E-F471-9490F959D2A7}.Development|Win32.ActiveCfg = Development|Win32 + {B7399F39-300F-450E-F471-9490F959D2A7}.Development|x64.ActiveCfg = Development|x64 {B7399F39-300F-450E-F471-9490F959D2A7}.Release|Win32.ActiveCfg = Release|Win32 {B7399F39-300F-450E-F471-9490F959D2A7}.Release|Win32.Build.0 = Release|Win32 {B7399F39-300F-450E-F471-9490F959D2A7}.Release|x64.ActiveCfg = Release|x64 {B7399F39-300F-450E-F471-9490F959D2A7}.Release|x64.Build.0 = Release|x64 - {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Profile|Win32.ActiveCfg = Profile|Win32 - {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Profile|Win32.Build.0 = Profile|Win32 - {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Profile|x64.ActiveCfg = Profile|x64 - {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Profile|x64.Build.0 = Profile|x64 + {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Development|Win32.ActiveCfg = Development|Win32 + {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Development|Win32.Build.0 = Development|Win32 + {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Development|x64.ActiveCfg = Development|x64 + {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Development|x64.Build.0 = Development|x64 {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Release|Win32.ActiveCfg = Release|Win32 {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Release|Win32.Build.0 = Release|Win32 {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Release|x64.ActiveCfg = Release|x64 {6DEE3F12-F2F8-42CA-865A-578D0FD11387}.Release|x64.Build.0 = Release|x64 - {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Profile|Win32.ActiveCfg = Profile|Win32 - {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Profile|Win32.Build.0 = Profile|Win32 - {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Profile|x64.ActiveCfg = Profile|x64 - {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Profile|x64.Build.0 = Profile|x64 + {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Development|Win32.ActiveCfg = Development|Win32 + {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Development|Win32.Build.0 = Development|Win32 + {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Development|x64.ActiveCfg = Development|x64 + {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Development|x64.Build.0 = Development|x64 {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Release|Win32.ActiveCfg = Release|Win32 {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Release|Win32.Build.0 = Release|Win32 {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Release|x64.ActiveCfg = Release|x64 {F1E59A05-60D4-4927-9E57-DD191EAE90EF}.Release|x64.Build.0 = Release|x64 - {2A793574-BD3C-46D4-9788-C339D9550CE1}.Profile|Win32.ActiveCfg = Profile|Win32 - {2A793574-BD3C-46D4-9788-C339D9550CE1}.Profile|Win32.Build.0 = Profile|Win32 - {2A793574-BD3C-46D4-9788-C339D9550CE1}.Profile|x64.ActiveCfg = Profile|x64 - {2A793574-BD3C-46D4-9788-C339D9550CE1}.Profile|x64.Build.0 = Profile|x64 + {2A793574-BD3C-46D4-9788-C339D9550CE1}.Development|Win32.ActiveCfg = Development|Win32 + {2A793574-BD3C-46D4-9788-C339D9550CE1}.Development|Win32.Build.0 = Development|Win32 + {2A793574-BD3C-46D4-9788-C339D9550CE1}.Development|x64.ActiveCfg = Development|x64 + {2A793574-BD3C-46D4-9788-C339D9550CE1}.Development|x64.Build.0 = Development|x64 {2A793574-BD3C-46D4-9788-C339D9550CE1}.Release|Win32.ActiveCfg = Release|Win32 {2A793574-BD3C-46D4-9788-C339D9550CE1}.Release|Win32.Build.0 = Release|Win32 {2A793574-BD3C-46D4-9788-C339D9550CE1}.Release|x64.ActiveCfg = Release|x64 {2A793574-BD3C-46D4-9788-C339D9550CE1}.Release|x64.Build.0 = Release|x64 - {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Profile|Win32.ActiveCfg = Profile|Win32 - {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Profile|Win32.Build.0 = Profile|Win32 - {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Profile|x64.ActiveCfg = Profile|x64 - {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Profile|x64.Build.0 = Profile|x64 + {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Development|Win32.ActiveCfg = Development|Win32 + {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Development|Win32.Build.0 = Development|Win32 + {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Development|x64.ActiveCfg = Development|x64 + {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Development|x64.Build.0 = Development|x64 {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Release|Win32.ActiveCfg = Release|Win32 {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Release|Win32.Build.0 = Release|Win32 {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Release|x64.ActiveCfg = Release|x64 {F92FCDA6-A261-4EEC-9CD0-73A11FBCC459}.Release|x64.Build.0 = Release|x64 - {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Profile|Win32.ActiveCfg = Profile|Win32 - {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Profile|Win32.Build.0 = Profile|Win32 - {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Profile|x64.ActiveCfg = Profile|x64 - {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Profile|x64.Build.0 = Profile|x64 + {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Development|Win32.ActiveCfg = Development|Win32 + {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Development|Win32.Build.0 = Development|Win32 + {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Development|x64.ActiveCfg = Development|x64 + {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Development|x64.Build.0 = Development|x64 {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Release|Win32.ActiveCfg = Release|Win32 {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Release|Win32.Build.0 = Release|Win32 {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Release|x64.ActiveCfg = Release|x64 {C43FF27E-A155-4852-88EC-5CE9334C07A8}.Release|x64.Build.0 = Release|x64 - {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Profile|Win32.ActiveCfg = Profile|Win32 - {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Profile|Win32.Build.0 = Profile|Win32 - {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Profile|x64.ActiveCfg = Profile|x64 - {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Profile|x64.Build.0 = Profile|x64 + {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Development|Win32.ActiveCfg = Development|Win32 + {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Development|Win32.Build.0 = Development|Win32 + {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Development|x64.ActiveCfg = Development|x64 + {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Development|x64.Build.0 = Development|x64 {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Release|Win32.ActiveCfg = Release|Win32 {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Release|Win32.Build.0 = Release|Win32 {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Release|x64.ActiveCfg = Release|x64 {0AAE0AD1-371B-4A36-9ED1-80E10E960605}.Release|x64.Build.0 = Release|x64 - {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Profile|Win32.ActiveCfg = Profile|Win32 - {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Profile|Win32.Build.0 = Profile|Win32 - {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Profile|x64.ActiveCfg = Profile|x64 - {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Profile|x64.Build.0 = Profile|x64 + {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Development|Win32.ActiveCfg = Development|Win32 + {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Development|Win32.Build.0 = Development|Win32 + {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Development|x64.ActiveCfg = Development|x64 + {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Development|x64.Build.0 = Development|x64 {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Release|Win32.ActiveCfg = Release|Win32 {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Release|Win32.Build.0 = Release|Win32 {88C5DAC6-30A0-4CFD-AF51-540A977D1F3F}.Release|x64.ActiveCfg = Release|x64 diff --git a/renderdoc/3rdparty/breakpad/client/windows/common.vcxproj b/renderdoc/3rdparty/breakpad/client/windows/common.vcxproj index 7dc0e474b..78c6a8f80 100644 --- a/renderdoc/3rdparty/breakpad/client/windows/common.vcxproj +++ b/renderdoc/3rdparty/breakpad/client/windows/common.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -41,12 +41,12 @@ $(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\ false false - true - true + true + true $(ProjectName) $(OutDir)\$(ProjectName).lib - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) @@ -96,7 +96,7 @@ _DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;CHROMIUM_BUILD;TOOLKIT_VIEWS=1;ENABLE_GPU=1;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) diff --git a/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_client.vcxproj b/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_client.vcxproj index 92039bb40..da8346afa 100644 --- a/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_client.vcxproj +++ b/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_client.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -40,12 +40,12 @@ $(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\ false false - true - true + true + true $(ProjectName) $(OutDir)\$(ProjectName).lib - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) @@ -95,7 +95,7 @@ _DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;CHROMIUM_BUILD;TOOLKIT_VIEWS=1;ENABLE_GPU=1;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) diff --git a/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_server.vcxproj b/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_server.vcxproj index 0530a38a0..26dd1dbcd 100644 --- a/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_server.vcxproj +++ b/renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_server.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -40,12 +40,12 @@ $(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\ false false - true - true + true + true $(ProjectName) $(OutDir)\$(ProjectName).lib - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) @@ -95,7 +95,7 @@ _DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;CHROMIUM_BUILD;TOOLKIT_VIEWS=1;ENABLE_GPU=1;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) diff --git a/renderdoc/3rdparty/breakpad/client/windows/handler/exception_handler.vcxproj b/renderdoc/3rdparty/breakpad/client/windows/handler/exception_handler.vcxproj index a763541da..72f40ffaf 100644 --- a/renderdoc/3rdparty/breakpad/client/windows/handler/exception_handler.vcxproj +++ b/renderdoc/3rdparty/breakpad/client/windows/handler/exception_handler.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -40,12 +40,12 @@ $(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\ false false - true - true + true + true $(ProjectName) $(OutDir)\$(ProjectName).lib - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) @@ -95,7 +95,7 @@ _DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;_HAS_EXCEPTIONS=0;NOMINMAX;_CRT_RAND_S;CERT_CHAIN_PARA_HAS_EXTRA_FIELDS;WIN32_LEAN_AND_MEAN;_SECURE_ATL;CHROMIUM_BUILD;TOOLKIT_VIEWS=1;ENABLE_GPU=1;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) - + $(SolutionDir)renderdoc\3rdparty\ /MP %(AdditionalOptions) diff --git a/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj b/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj index a723b6098..3aa68d858 100644 --- a/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj +++ b/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -25,12 +25,12 @@ d3d11 - + StaticLibrary true Unicode - + StaticLibrary true Unicode @@ -50,10 +50,10 @@ - + - + @@ -72,7 +72,7 @@ $(ExcludePath) driver_$(ProjectName) - + $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ $(ExecutablePath) @@ -90,7 +90,7 @@ $(ExcludePath) driver_$(ProjectName) - + $(ExecutablePath) $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) $(LibraryPath) @@ -99,7 +99,7 @@ $(Platform)\$(Configuration)\ driver_$(ProjectName) - + @@ -117,7 +117,7 @@ true - + NotUsing Level3 diff --git a/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj b/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj index dab754ba0..d4ee347e5 100644 --- a/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj +++ b/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -25,12 +25,12 @@ dxgi - + StaticLibrary true Unicode - + StaticLibrary true Unicode @@ -50,10 +50,10 @@ - + - + @@ -72,7 +72,7 @@ $(ExcludePath) driver_$(ProjectName) - + $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ $(ExecutablePath) @@ -90,7 +90,7 @@ $(ExcludePath) driver_$(ProjectName) - + $(ExecutablePath) $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) $(LibraryPath) @@ -99,7 +99,7 @@ $(Platform)\$(Configuration)\ driver_$(ProjectName) - + @@ -117,7 +117,7 @@ true - + NotUsing Level3 diff --git a/renderdoc/driver/gl/renderdoc_gl.vcxproj b/renderdoc/driver/gl/renderdoc_gl.vcxproj index 56c2a309c..8318a126c 100644 --- a/renderdoc/driver/gl/renderdoc_gl.vcxproj +++ b/renderdoc/driver/gl/renderdoc_gl.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -81,12 +81,12 @@ gl - + StaticLibrary true Unicode - + StaticLibrary true Unicode @@ -106,10 +106,10 @@ - + - + @@ -128,7 +128,7 @@ $(ExcludePath) driver_$(ProjectName) - + $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ $(ExecutablePath) @@ -146,7 +146,7 @@ $(ExcludePath) driver_$(ProjectName) - + $(ExecutablePath) $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) $(LibraryPath) @@ -155,7 +155,7 @@ $(Platform)\$(Configuration)\ driver_$(ProjectName) - + @@ -173,7 +173,7 @@ true - + NotUsing Level3 diff --git a/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj b/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj index 6999d5c60..b542dd396 100644 --- a/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj +++ b/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -37,12 +37,12 @@ dxbc - + StaticLibrary true Unicode - + StaticLibrary true Unicode @@ -62,10 +62,10 @@ - + - + @@ -84,7 +84,7 @@ $(ExcludePath) $(ProjectName) - + $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ $(ExecutablePath) @@ -102,7 +102,7 @@ $(ExcludePath) $(ProjectName) - + $(ExecutablePath) $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) $(LibraryPath) @@ -111,7 +111,7 @@ $(Platform)\$(Configuration)\ $(ProjectName) - + @@ -129,7 +129,7 @@ true - + NotUsing Level3 diff --git a/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj b/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj index 6565fd054..3ddda5c8f 100644 --- a/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj +++ b/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -101,12 +101,12 @@ spirv - + StaticLibrary true Unicode - + StaticLibrary true Unicode @@ -126,10 +126,10 @@ - + - + @@ -148,7 +148,7 @@ $(ExcludePath) $(ProjectName) - + $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ $(ExecutablePath) @@ -166,7 +166,7 @@ $(ExcludePath) $(ProjectName) - + $(ExecutablePath) $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) $(LibraryPath) @@ -175,7 +175,7 @@ $(Platform)\$(Configuration)\ $(ProjectName) - + @@ -193,7 +193,7 @@ true - + NotUsing Level3 diff --git a/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj b/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj index 4dba6bcfb..5e9df4298 100644 --- a/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj +++ b/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -91,12 +91,12 @@ vulkan - + StaticLibrary true Unicode - + StaticLibrary true Unicode @@ -116,10 +116,10 @@ - + - + @@ -138,7 +138,7 @@ $(ExcludePath) driver_$(ProjectName) - + @@ -156,7 +156,7 @@ true - + NotUsing Level3 diff --git a/renderdoc/renderdoc.vcxproj b/renderdoc/renderdoc.vcxproj index b263fa4cc..2346d9092 100644 --- a/renderdoc/renderdoc.vcxproj +++ b/renderdoc/renderdoc.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -37,13 +37,13 @@ true Unicode - + DynamicLibrary false true Unicode - + DynamicLibrary false true @@ -58,10 +58,10 @@ - + - + @@ -82,7 +82,7 @@ $(ExecutablePath) $(ExcludePath) - + true $(SolutionDir)$(Platform)\$(Configuration)\ $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) @@ -91,7 +91,7 @@ $(ExcludePath) $(Platform)\$(Configuration)\ - + true $(SolutionDir)$(Platform)\$(Configuration)\ $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) @@ -156,7 +156,7 @@ true - + Level4 NotUsing @@ -188,7 +188,7 @@ true - + Level4 NotUsing diff --git a/renderdoccmd/renderdoccmd.vcxproj b/renderdoccmd/renderdoccmd.vcxproj index 9d59dd034..bcb074b4a 100644 --- a/renderdoccmd/renderdoccmd.vcxproj +++ b/renderdoccmd/renderdoccmd.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -24,12 +24,12 @@ renderdoccmd - + Application true Unicode - + Application true Unicode @@ -49,10 +49,10 @@ - + - + @@ -62,13 +62,13 @@ - + true $(IncludePath) $(LibraryPath) $(SolutionDir)$(Platform)\$(Configuration)\ - + true $(IncludePath) $(LibraryPath) @@ -86,7 +86,7 @@ $(LibraryPath) $(SolutionDir)\$(Platform)\$(Configuration)\ - + @@ -103,7 +103,7 @@ ws2_32.lib;Wininet.lib;%(AdditionalDependencies) - + diff --git a/renderdocshim/renderdocshim.vcxproj b/renderdocshim/renderdocshim.vcxproj index fc203df9e..7e1a233c8 100644 --- a/renderdocshim/renderdocshim.vcxproj +++ b/renderdocshim/renderdocshim.vcxproj @@ -1,12 +1,12 @@  - - Profile + + Development Win32 - - Profile + + Development x64 @@ -24,12 +24,12 @@ renderdocshim - + DynamicLibrary true Unicode - + DynamicLibrary true Unicode @@ -49,10 +49,10 @@ - + - + @@ -62,13 +62,13 @@ - + true $(Platform)\$(Configuration)\ $(SolutionDir)$(Platform)\$(Configuration)\ $(ProjectName)32 - + true $(Platform)\$(Configuration)\ $(SolutionDir)$(Platform)\$(Configuration)\ @@ -86,7 +86,7 @@ $(SolutionDir)$(Platform)\$(Configuration)\ $(ProjectName)64 - + @@ -110,7 +110,7 @@ Default - + diff --git a/renderdocui/3rdparty/WinFormsUI/WinFormsUI.csproj b/renderdocui/3rdparty/WinFormsUI/WinFormsUI.csproj index 9e30064a1..9cee22bc3 100644 --- a/renderdocui/3rdparty/WinFormsUI/WinFormsUI.csproj +++ b/renderdocui/3rdparty/WinFormsUI/WinFormsUI.csproj @@ -23,8 +23,8 @@ prompt 4 - - bin\Profile\ + + bin\Development\ TRACE true pdbonly diff --git a/renderdocui/renderdocui.csproj b/renderdocui/renderdocui.csproj index f3c822ae7..0b3845a4e 100644 --- a/renderdocui/renderdocui.csproj +++ b/renderdocui/renderdocui.csproj @@ -43,8 +43,8 @@ Resources\icon.ico - - ..\Win32\Profile\ + + ..\Win32\Development\ DEBUG;TRACE false pdbonly @@ -64,8 +64,8 @@ false false - - ..\x64\Profile\ + + ..\x64\Development\ DEBUG;TRACE pdbonly x64