Browse Source

Added a VC2012 project for the introjucer

tags/2021-05-28
jules 13 years ago
parent
commit
af961e146e
5 changed files with 4183 additions and 0 deletions
  1. +19
    -0
      extras/Introjucer/Builds/VisualStudio2012/The Introjucer.sln
  2. +1472
    -0
      extras/Introjucer/Builds/VisualStudio2012/The Introjucer.vcxproj
  3. +2654
    -0
      extras/Introjucer/Builds/VisualStudio2012/The Introjucer.vcxproj.filters
  4. +30
    -0
      extras/Introjucer/Builds/VisualStudio2012/resources.rc
  5. +8
    -0
      extras/Introjucer/Introjucer.jucer

+ 19
- 0
extras/Introjucer/Builds/VisualStudio2012/The Introjucer.sln View File

@@ -0,0 +1,19 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2012
Project("{62DDBD62-D03F-FBCA-D85C-731B2D53653D}") = "The Introjucer", "The Introjucer.vcxproj", "{26ABE2A4-1F2F-8375-088D-D692A4408B5A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{26ABE2A4-1F2F-8375-088D-D692A4408B5A}.Debug|Win32.ActiveCfg = Debug|Win32
{26ABE2A4-1F2F-8375-088D-D692A4408B5A}.Debug|Win32.Build.0 = Debug|Win32
{26ABE2A4-1F2F-8375-088D-D692A4408B5A}.Release|Win32.ActiveCfg = Release|Win32
{26ABE2A4-1F2F-8375-088D-D692A4408B5A}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

+ 1472
- 0
extras/Introjucer/Builds/VisualStudio2012/The Introjucer.vcxproj
File diff suppressed because it is too large
View File


+ 2654
- 0
extras/Introjucer/Builds/VisualStudio2012/The Introjucer.vcxproj.filters
File diff suppressed because it is too large
View File


+ 30
- 0
extras/Introjucer/Builds/VisualStudio2012/resources.rc View File

@@ -0,0 +1,30 @@
#ifdef JUCE_USER_DEFINED_RC_FILE
#include JUCE_USER_DEFINED_RC_FILE
#else
#undef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,1,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "Raw Material Software Ltd.\0"
VALUE "FileDescription", "The Introjucer\0"
VALUE "FileVersion", "3.1.0\0"
VALUE "ProductName", "The Introjucer\0"
VALUE "ProductVersion", "3.1.0\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 65001
END
END
#endif

+ 8
- 0
extras/Introjucer/Introjucer.jucer View File

@@ -62,6 +62,14 @@
winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"/>
</CONFIGURATIONS>
</VS2010>
<VS2012 targetFolder="Builds/VisualStudio2012" juceFolder="../..">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
isDebug="1" optimisation="1" targetName="The Introjucer"/>
<CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
isDebug="0" optimisation="2" targetName="The Introjucer"/>
</CONFIGURATIONS>
</VS2012>
<CODEBLOCKS targetFolder="Builds/CodeBlocks" juceFolder="../..">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="The Introjucer"/>


Loading…
Cancel
Save