From e2c2c220c642cc5f1c622f909d0ddfd22e6c04d4 Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Fri, 11 May 2018 16:34:19 -0700 Subject: Generate Visual Studio projects using Premake (#557) * Generate Visual Studio projects using Premake This change adds a `premake5.lua` file that allows us to generate our Visual Studio solution using Premake 5 (https://premake.github.io/). The existing Visual Studio solution/projects are now replaced with the Premake-generated ones, and project contributors will be expected to update these by running premake after adding/removing files. I have *not* changed the Linux `Makefile` build at all, because that file is also used for things like running our tests, so that clobbering it with a premake-generated `Makefile` would break our continuous testing. Hopefully future changes can switch to a generated `Makefile` and perhaps even add an XCode project as well. Notes: * The `build/slang-build.props` file is no longer needed/used, so it has been removed. * The `slang-eval-test` test fixture wasn't following our naming conventions for its directory path, so it was updated to streamline the Premake build configuration work. This required changes to the `Makefile` as well * Some seemingly unncessary preprocessor definitions that were specified for `core` and `slang-glslang` have been dropped. We will see if anything breaks from that. * Possible fixup for Premake vpath issue Premake's `vpath` feature seems to be nondeterministic about the order it applies filters (because Lua isn't deterministic about the order of entries in a key/value table), and as a result we can end up in a weird case where it decides that a `foo.cpp.h` file matches the `**.cpp` filter (I'm not sure why) before it tests against the `**.h` filter. This change uses an (undocumented) Premake facility to set `vpath` using a list of singleton tables, which seems to fix the order in which things get tested. * Remove support for "single-file" build of Slang The `hello` example was the only bit of code that uses the "single-file" way of building Slang, and this had already run up against limitations of the Visual Studio compilers in its Debug|x64 build. Rather than mess with Premake to make it pass through the `/bigobj` linker flag that is needed to work around the issue, it makes more sense just to stop using/supporting the feature since we wouldn't want users to depend on it anyway (our documentation no longer refers to it). While I was at it I went ahead and made sure that the `SLANG_DYNAMIC` flag doesn't need to be set manually, so that instead there is a non-default `SLANG_STATIC` option (not that we have a static-library build of Slang at the moment). --- source/core/core.vcxproj | 193 ++++++------ source/core/core.vcxproj.filters | 119 +++++++ source/slang-glslang/slang-glslang.vcxproj | 229 +++++++------- source/slang-glslang/slang-glslang.vcxproj.filters | 330 ++++++++++---------- source/slang/slang.vcxproj | 173 +++++------ source/slang/slang.vcxproj.filters | 344 ++++++++++++++++----- source/slangc/main.cpp | 1 - source/slangc/slangc.vcxproj | 99 +++--- source/slangc/slangc.vcxproj.filters | 13 +- 9 files changed, 898 insertions(+), 603 deletions(-) create mode 100644 source/core/core.vcxproj.filters (limited to 'source') diff --git a/source/core/core.vcxproj b/source/core/core.vcxproj index 803c1ab12..ecd8ee07b 100644 --- a/source/core/core.vcxproj +++ b/source/core/core.vcxproj @@ -18,196 +18,197 @@ x64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Win32Proj - CoreLib {F9BE7957-8399-899E-0C49-E714FDDD4B65} - 8.1 + true + Win32Proj + core StaticLibrary true - v140 Unicode + v140 StaticLibrary true - v140 Unicode + v140 StaticLibrary false - v140 - true Unicode + v140 StaticLibrary false - v140 - true Unicode + v140 - - + - - - + - - + + ..\..\bin\windows-x86\debug\ + ..\..\intermediate\windows-x86\debug\core\ + core + .lib + + + ..\..\bin\windows-x64\debug\ + ..\..\intermediate\windows-x64\debug\core\ + core + .lib + + + ..\..\bin\windows-x86\release\ + ..\..\intermediate\windows-x86\release\core\ + core + .lib + + + ..\..\bin\windows-x64\release\ + ..\..\intermediate\windows-x64\release\core\ + core + .lib + - - + NotUsing Level4 + true + _DEBUG;%(PreprocessorDefinitions) + EditAndContinue Disabled - WIN32;_DEBUG;_LIB;WINDOWS_PLATFORM;%(PreprocessorDefinitions);GLEW_STATIC MultiThreadedDebug - false - Default - true Windows true - Shlwapi.lib + true - - + NotUsing Level4 + true + _DEBUG;%(PreprocessorDefinitions) + EditAndContinue Disabled - WIN32;_DEBUG;_LIB;WINDOWS_PLATFORM;%(PreprocessorDefinitions);GLEW_STATIC MultiThreadedDebug - true - false - Default - true Windows true - Shlwapi.lib + true - - true - + NotUsing Level4 - - - MaxSpeed + true + NDEBUG;%(PreprocessorDefinitions) + Full true true - WIN32;NDEBUG;_LIB;WINDOWS_PLATFORM;%(PreprocessorDefinitions);GLEW_STATIC + false + true MultiThreaded - false - true Windows - true true true - Shlwapi.lib + true + NotUsing Level4 - - - MaxSpeed + true + NDEBUG;%(PreprocessorDefinitions) + Full true true - WIN32;NDEBUG;_LIB;WINDOWS_PLATFORM;%(PreprocessorDefinitions);GLEW_STATIC + false + true MultiThreaded - false - true Windows - true true true - Shlwapi.lib + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/core/core.vcxproj.filters b/source/core/core.vcxproj.filters new file mode 100644 index 000000000..39a164770 --- /dev/null +++ b/source/core/core.vcxproj.filters @@ -0,0 +1,119 @@ + + + + + {21EB8090-0D4E-1035-B6D3-48EBA215DCB7} + + + {E9C7FDCE-D52A-8D73-7EB0-C5296AF258F6} + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Source Files + + + \ No newline at end of file diff --git a/source/slang-glslang/slang-glslang.vcxproj b/source/slang-glslang/slang-glslang.vcxproj index b9662efcf..d1975cba5 100644 --- a/source/slang-glslang/slang-glslang.vcxproj +++ b/source/slang-glslang/slang-glslang.vcxproj @@ -5,14 +5,14 @@ Debug Win32 - - Release - Win32 - Debug x64 + + Release + Win32 + Release x64 @@ -20,158 +20,225 @@ {C495878A-832C-485B-B347-0998A90CC936} + true Win32Proj - slang_glslang - 8.1 - slang-glslang + slang-glslang DynamicLibrary true - v140 Unicode - - - DynamicLibrary - false v140 - true - Unicode DynamicLibrary true + Unicode v140 + + + DynamicLibrary + false Unicode + v140 DynamicLibrary false - v140 - true Unicode + v140 - - - - + - - + - - true - $(SolutionDir)external\glslang\;$(IncludePath) + ..\..\bin\windows-x86\debug\ + ..\..\intermediate\windows-x86\debug\slang-glslang\ + slang-glslang + .dll true - $(SolutionDir)external\glslang\;$(IncludePath) + ..\..\bin\windows-x64\debug\ + ..\..\intermediate\windows-x64\debug\slang-glslang\ + slang-glslang + .dll false - $(SolutionDir)external\glslang\;$(IncludePath) + ..\..\bin\windows-x86\release\ + ..\..\intermediate\windows-x86\release\slang-glslang\ + slang-glslang + .dll false - $(SolutionDir)external\glslang\;$(IncludePath) + ..\..\bin\windows-x64\release\ + ..\..\intermediate\windows-x64\release\slang-glslang\ + slang-glslang + .dll - - + NotUsing Level3 + _DEBUG;ENABLE_OPT=0;AMD_EXTENSIONS;NV_EXTENSIONS;%(PreprocessorDefinitions) + ..\..\external\glslang;%(AdditionalIncludeDirectories) + EditAndContinue Disabled - NV_EXTENSIONS;AMD_EXTENSIONS;ENABLE_OPT=0;WIN32;_DEBUG;_WINDOWS;_USRDLL;GLSLANG_EXPORTS;%(PreprocessorDefinitions) - 4819;4267 + MultiThreadedDebug Windows true + ..\..\bin\windows-x86\debug\slang-glslang.lib - - + NotUsing Level3 + _DEBUG;ENABLE_OPT=0;AMD_EXTENSIONS;NV_EXTENSIONS;%(PreprocessorDefinitions) + ..\..\external\glslang;%(AdditionalIncludeDirectories) + EditAndContinue Disabled - NV_EXTENSIONS;AMD_EXTENSIONS;ENABLE_OPT=0;_DEBUG;_WINDOWS;_USRDLL;GLSLANG_EXPORTS;%(PreprocessorDefinitions) - 4819;4267 + MultiThreadedDebug Windows true + ..\..\bin\windows-x64\debug\slang-glslang.lib + NotUsing Level3 - - - MaxSpeed + NDEBUG;ENABLE_OPT=0;AMD_EXTENSIONS;NV_EXTENSIONS;%(PreprocessorDefinitions) + ..\..\external\glslang;%(AdditionalIncludeDirectories) + Full true true - NV_EXTENSIONS;AMD_EXTENSIONS;ENABLE_OPT=0;WIN32;NDEBUG;_WINDOWS;_USRDLL;GLSLANG_EXPORTS;%(PreprocessorDefinitions) - 4819;4267 + false + true + MultiThreaded Windows true true - true + ..\..\bin\windows-x86\release\slang-glslang.lib + NotUsing Level3 - - - MaxSpeed + NDEBUG;ENABLE_OPT=0;AMD_EXTENSIONS;NV_EXTENSIONS;%(PreprocessorDefinitions) + ..\..\external\glslang;%(AdditionalIncludeDirectories) + Full true true - NV_EXTENSIONS;AMD_EXTENSIONS;ENABLE_OPT=0;NDEBUG;_WINDOWS;_USRDLL;GLSLANG_EXPORTS;%(PreprocessorDefinitions) - 4819;4267 + false + true + MultiThreaded Windows true true - true + ..\..\bin\windows-x64\release\slang-glslang.lib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + - - - - @@ -179,63 +246,9 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/source/slang-glslang/slang-glslang.vcxproj.filters b/source/slang-glslang/slang-glslang.vcxproj.filters index 2adddaca4..0d3841020 100644 --- a/source/slang-glslang/slang-glslang.vcxproj.filters +++ b/source/slang-glslang/slang-glslang.vcxproj.filters @@ -1,253 +1,255 @@ - + - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd + {21EB8090-0D4E-1035-B6D3-48EBA215DCB7} - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + {E9C7FDCE-D52A-8D73-7EB0-C5296AF258F6} - + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - + Source Files - - + + Source Files + + Source Files - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - \ No newline at end of file diff --git a/source/slang/slang.vcxproj b/source/slang/slang.vcxproj index fa75d7378..f32355e83 100644 --- a/source/slang/slang.vcxproj +++ b/source/slang/slang.vcxproj @@ -20,163 +20,167 @@ {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} + true Win32Proj slang - slang - 8.1 DynamicLibrary true - v140 Unicode + v140 DynamicLibrary true - v140 Unicode + v140 DynamicLibrary false - v140 - true Unicode + v140 DynamicLibrary false - v140 - true Unicode + v140 - - + - - - + - true + ..\..\bin\windows-x86\debug\ + ..\..\intermediate\windows-x86\debug\slang\ + slang + .dll true + ..\..\bin\windows-x64\debug\ + ..\..\intermediate\windows-x64\debug\slang\ + slang + .dll false + ..\..\bin\windows-x86\release\ + ..\..\intermediate\windows-x86\release\slang\ + slang + .dll false + ..\..\bin\windows-x64\release\ + ..\..\intermediate\windows-x64\release\slang\ + slang + .dll - - + NotUsing Level4 + true + _DEBUG;SLANG_DYNAMIC_EXPORT;%(PreprocessorDefinitions) + EditAndContinue Disabled - SLANG_DYNAMIC;SLANG_DYNAMIC_EXPORT;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ../ MultiThreadedDebug - false - true - Console + Windows true + ..\..\bin\windows-x86\debug\slang.lib + true - - + NotUsing Level4 + true + _DEBUG;SLANG_DYNAMIC_EXPORT;%(PreprocessorDefinitions) + EditAndContinue Disabled - SLANG_DYNAMIC;SLANG_DYNAMIC_EXPORT;WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ../ MultiThreadedDebug - true - false - true - Console + Windows true + ..\..\bin\windows-x64\debug\slang.lib + true - - true - + NotUsing Level4 - - - MaxSpeed + true + NDEBUG;SLANG_DYNAMIC_EXPORT;%(PreprocessorDefinitions) + Full true true - SLANG_DYNAMIC;SLANG_DYNAMIC_EXPORT;WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ../ + false + true MultiThreaded - false - true - Console - true + Windows true true + ..\..\bin\windows-x86\release\slang.lib + true + NotUsing Level4 - - - MaxSpeed + true + NDEBUG;SLANG_DYNAMIC_EXPORT;%(PreprocessorDefinitions) + Full true true - SLANG_DYNAMIC;SLANG_DYNAMIC_EXPORT;WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ../ + false + true MultiThreaded - false - true - Console - true + Windows true true + ..\..\bin\windows-x64\release\slang.lib + true - - - - + + + @@ -251,50 +255,41 @@ - - {f9be7957-8399-899e-0c49-e714fddd4b65} - + Document - $(OutDir)slang-generate.exe %(Identity) - slang-generate %(Identity) - %(Identity).cpp - $(OutDir)slang-generate.exe - $(OutDir)slang-generate.exe %(Identity) - slang-generate %(Identity) - %(Identity).cpp - $(OutDir)slang-generate.exe - $(OutDir)slang-generate.exe %(Identity) - slang-generate %(Identity) - %(Identity).cpp - $(OutDir)slang-generate.exe - $(OutDir)slang-generate.exe %(Identity) - slang-generate %(Identity) - %(Identity).cpp - $(OutDir)slang-generate.exe + "../../bin/windows-x86/debug/slang-generate" %(Identity) + "../../bin/windows-x64/debug/slang-generate" %(Identity) + "../../bin/windows-x86/release/slang-generate" %(Identity) + "../../bin/windows-x64/release/slang-generate" %(Identity) + %(Identity).h + slang-generate %(Identity) + ../../bin/windows-x86/debug/slang-generate.exe + ../../bin/windows-x64/debug/slang-generate.exe + ../../bin/windows-x86/release/slang-generate.exe + ../../bin/windows-x64/release/slang-generate.exe Document - $(OutDir)slang-generate.exe %(Identity) - $(OutDir)slang-generate.exe %(Identity) - $(OutDir)slang-generate.exe %(Identity) - $(OutDir)slang-generate.exe %(Identity) - slang-generate %(Identity) - slang-generate %(Identity) - slang-generate %(Identity) - slang-generate %(Identity) - %(Identity).cpp - %(Identity).cpp - %(Identity).cpp - %(Identity).cpp - $(OutDir)slang-generate.exe - $(OutDir)slang-generate.exe - $(OutDir)slang-generate.exe - $(OutDir)slang-generate.exe + "../../bin/windows-x86/debug/slang-generate" %(Identity) + "../../bin/windows-x64/debug/slang-generate" %(Identity) + "../../bin/windows-x86/release/slang-generate" %(Identity) + "../../bin/windows-x64/release/slang-generate" %(Identity) + %(Identity).h + slang-generate %(Identity) + ../../bin/windows-x86/debug/slang-generate.exe + ../../bin/windows-x64/debug/slang-generate.exe + ../../bin/windows-x86/release/slang-generate.exe + ../../bin/windows-x64/release/slang-generate.exe + + + {F9BE7957-8399-899E-0C49-E714FDDD4B65} + + diff --git a/source/slang/slang.vcxproj.filters b/source/slang/slang.vcxproj.filters index 90b542551..991fe9c44 100644 --- a/source/slang/slang.vcxproj.filters +++ b/source/slang/slang.vcxproj.filters @@ -1,93 +1,271 @@ - + - - + + {21EB8090-0D4E-1035-B6D3-48EBA215DCB7} + + + {E9C7FDCE-D52A-8D73-7EB0-C5296AF258F6} + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + - - + + Source Files + + + + + Source Files + + + Source Files + \ No newline at end of file diff --git a/source/slangc/main.cpp b/source/slangc/main.cpp index 391642c3e..376b75212 100644 --- a/source/slangc/main.cpp +++ b/source/slangc/main.cpp @@ -1,6 +1,5 @@ // main.cpp -#define SLANG_DYNAMIC #include "../../slang.h" SLANG_API void spSetCommandLineCompilerMode(SlangCompileRequest* request); diff --git a/source/slangc/slangc.vcxproj b/source/slangc/slangc.vcxproj index 4855b7373..77a7dcea5 100644 --- a/source/slangc/slangc.vcxproj +++ b/source/slangc/slangc.vcxproj @@ -20,81 +20,87 @@ {D56CBCEB-1EB5-4CA8-AEC4-48EA35ED61C7} + true Win32Proj slangc - slangc - 8.1 Application true - v140 Unicode + v140 Application true - v140 Unicode + v140 Application false - v140 - true Unicode + v140 Application false - v140 - true Unicode + v140 - - + - - - + - true + ..\..\bin\windows-x86\debug\ + ..\..\intermediate\windows-x86\debug\slangc\ + slangc + .exe true + ..\..\bin\windows-x64\debug\ + ..\..\intermediate\windows-x64\debug\slangc\ + slangc + .exe false + ..\..\bin\windows-x86\release\ + ..\..\intermediate\windows-x86\release\slangc\ + slangc + .exe false + ..\..\bin\windows-x64\release\ + ..\..\intermediate\windows-x64\release\slangc\ + slangc + .exe - - - Level4 + NotUsing + Level3 + _DEBUG;%(PreprocessorDefinitions) + EditAndContinue Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) MultiThreadedDebug - ../ - false - true Console @@ -103,15 +109,12 @@ - - - Level4 + NotUsing + Level3 + _DEBUG;%(PreprocessorDefinitions) + EditAndContinue Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) MultiThreadedDebug - ../ - false - true Console @@ -120,57 +123,51 @@ - Level4 - - - MaxSpeed + NotUsing + Level3 + NDEBUG;%(PreprocessorDefinitions) + Full true true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + false + true MultiThreaded - ../ - false - true Console - true true true - Level4 - - - MaxSpeed + NotUsing + Level3 + NDEBUG;%(PreprocessorDefinitions) + Full true true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + false + true MultiThreaded - ../ - false - true Console - true true true + + + - {f9be7957-8399-899e-0c49-e714fddd4b65} + {F9BE7957-8399-899E-0C49-E714FDDD4B65} - {db00da62-0533-4afd-b59f-a67d5b3a0808} + {DB00DA62-0533-4AFD-B59F-A67D5B3A0808} - - - diff --git a/source/slangc/slangc.vcxproj.filters b/source/slangc/slangc.vcxproj.filters index 0d8d9e457..e9ae1c092 100644 --- a/source/slangc/slangc.vcxproj.filters +++ b/source/slangc/slangc.vcxproj.filters @@ -1,17 +1,8 @@ - + - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + {E9C7FDCE-D52A-8D73-7EB0-C5296AF258F6} -- cgit v1.2.3