mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
1326 lines
57 KiB
C++
1326 lines
57 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library - "Jules' Utility Class Extensions"
|
|
Copyright 2004-11 by Raw Material Software Ltd.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
JUCE can be redistributed and/or modified under the terms of the GNU General
|
|
Public License (Version 2), as published by the Free Software Foundation.
|
|
A copy of the license is included in the JUCE distribution, or can be found
|
|
online at www.gnu.org/licenses.
|
|
|
|
JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
To release a closed-source product which uses JUCE, commercial licenses are
|
|
available: visit www.rawmaterialsoftware.com/juce for more information.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#ifndef __JUCER_PROJECTEXPORT_MSVC_JUCEHEADER__
|
|
#define __JUCER_PROJECTEXPORT_MSVC_JUCEHEADER__
|
|
|
|
#include "jucer_ProjectExporter.h"
|
|
#include "jucer_ProjectSaver.h"
|
|
|
|
//==============================================================================
|
|
class MSVCProjectExporterBase : public ProjectExporter
|
|
{
|
|
public:
|
|
MSVCProjectExporterBase (Project& project_, const ValueTree& settings_, const char* const folderName)
|
|
: ProjectExporter (project_, settings_), hasIcon (false)
|
|
{
|
|
if (getTargetLocation().toString().isEmpty())
|
|
getTargetLocation() = getDefaultBuildsRootFolder() + folderName;
|
|
|
|
if ((int) getLibraryType().getValue() <= 0)
|
|
getLibraryType() = 1;
|
|
|
|
projectGUID = createGUID (project.getProjectUID());
|
|
|
|
updateOldSettings();
|
|
}
|
|
|
|
//==============================================================================
|
|
bool isPossibleForCurrentProject() { return true; }
|
|
bool usesMMFiles() const { return false; }
|
|
bool isVisualStudio() const { return true; }
|
|
bool canCopeWithDuplicateFiles() { return false; }
|
|
|
|
void createPropertyEditors (PropertyListBuilder& props)
|
|
{
|
|
ProjectExporter::createPropertyEditors (props);
|
|
|
|
if (projectType.isLibrary())
|
|
{
|
|
const char* const libTypes[] = { "Static Library (.lib)", "Dynamic Library (.dll)", 0 };
|
|
const int libTypeValues[] = { 1, 2, 0 };
|
|
props.add (new ChoicePropertyComponent (getLibraryType(), "Library Type",
|
|
StringArray (libTypes), Array<var> (libTypeValues)));
|
|
}
|
|
}
|
|
|
|
protected:
|
|
String projectGUID;
|
|
File rcFile, iconFile;
|
|
bool hasIcon;
|
|
|
|
File getProjectFile (const String& extension) const { return getTargetFolder().getChildFile (project.getProjectFilenameRoot()).withFileExtension (extension); }
|
|
|
|
Value getLibraryType() const { return getSetting (Ids::libraryType); }
|
|
bool isLibraryDLL() const { return msvcIsDLL || (projectType.isLibrary() && getLibraryType() == 2); }
|
|
|
|
void updateOldSettings()
|
|
{
|
|
{
|
|
const String oldStylePrebuildCommand (getSetting (Ids::prebuildCommand).toString());
|
|
settings.removeProperty (Ids::prebuildCommand, nullptr);
|
|
|
|
if (oldStylePrebuildCommand.isNotEmpty())
|
|
for (ConfigIterator config (*this); config.next();)
|
|
dynamic_cast <MSVCBuildConfiguration&> (*config).getPrebuildCommand() = oldStylePrebuildCommand;
|
|
}
|
|
|
|
{
|
|
const String oldStyleLibName (getSetting ("libraryName_Debug").toString());
|
|
settings.removeProperty ("libraryName_Debug", nullptr);
|
|
|
|
if (oldStyleLibName.isNotEmpty())
|
|
for (ConfigIterator config (*this); config.next();)
|
|
if (config->isDebug().getValue())
|
|
config->getTargetBinaryName() = oldStyleLibName;
|
|
}
|
|
|
|
{
|
|
const String oldStyleLibName (getSetting ("libraryName_Release").toString());
|
|
settings.removeProperty ("libraryName_Release", nullptr);
|
|
|
|
if (oldStyleLibName.isNotEmpty())
|
|
for (ConfigIterator config (*this); config.next();)
|
|
if (! config->isDebug().getValue())
|
|
config->getTargetBinaryName() = oldStyleLibName;
|
|
}
|
|
}
|
|
|
|
//==============================================================================
|
|
class MSVCBuildConfiguration : public BuildConfiguration
|
|
{
|
|
public:
|
|
MSVCBuildConfiguration (Project& project, const ValueTree& settings)
|
|
: BuildConfiguration (project, settings)
|
|
{
|
|
if (getWarningLevel() == 0)
|
|
getWarningLevelValue() = 4;
|
|
|
|
msvcPreBuildCommand = getPrebuildCommand().toString();
|
|
msvcPostBuildCommand = getPostbuildCommand().toString();
|
|
|
|
if (shouldGenerateManifest().getValue().isVoid())
|
|
shouldGenerateManifest() = var (true);
|
|
}
|
|
|
|
Value getWarningLevelValue() const { return getValue (Ids::winWarningLevel); }
|
|
int getWarningLevel() const { return getWarningLevelValue().getValue(); }
|
|
|
|
Value getPrebuildCommand() const { return getValue (Ids::prebuildCommand); }
|
|
Value getPostbuildCommand() const { return getValue (Ids::postbuildCommand); }
|
|
|
|
Value shouldGenerateManifest() const { return getValue (Ids::generateManifest); }
|
|
|
|
String getOutputFilename (const String& suffix, bool forceSuffix) const
|
|
{
|
|
const String target (File::createLegalFileName (getTargetBinaryName().toString().trim()));
|
|
|
|
if (forceSuffix || ! target.containsChar ('.'))
|
|
return target.upToLastOccurrenceOf (".", false, false) + suffix;
|
|
|
|
return target;
|
|
}
|
|
|
|
void createPropertyEditors (PropertyListBuilder& props)
|
|
{
|
|
createBasicPropertyEditors (props);
|
|
|
|
const char* const warningLevelNames[] = { "Low", "Medium", "High", nullptr };
|
|
const int warningLevels[] = { 2, 3, 4, 0 };
|
|
|
|
props.add (new ChoicePropertyComponent (getWarningLevelValue(), "Warning Level",
|
|
StringArray (warningLevelNames), Array<var> (warningLevels)));
|
|
|
|
props.add (new TextPropertyComponent (getPrebuildCommand(), "Pre-build Command", 2048, false));
|
|
props.add (new TextPropertyComponent (getPostbuildCommand(), "Post-build Command", 2048, false));
|
|
props.add (new BooleanPropertyComponent (shouldGenerateManifest(), "Manifest", "Generate Manifest"));
|
|
}
|
|
};
|
|
|
|
BuildConfiguration::Ptr createBuildConfig (const ValueTree& settings) const
|
|
{
|
|
return new MSVCBuildConfiguration (project, settings);
|
|
}
|
|
|
|
static int getWarningLevel (const BuildConfiguration& config)
|
|
{
|
|
return dynamic_cast <const MSVCBuildConfiguration&> (config).getWarningLevel();
|
|
}
|
|
|
|
//==============================================================================
|
|
String getIntermediatesPath (const BuildConfiguration& config) const
|
|
{
|
|
return ".\\" + File::createLegalFileName (config.getName().toString().trim());
|
|
}
|
|
|
|
String getConfigTargetPath (const BuildConfiguration& config) const
|
|
{
|
|
const String binaryPath (config.getTargetBinaryRelativePath().toString().trim());
|
|
if (binaryPath.isEmpty())
|
|
return getIntermediatesPath (config);
|
|
|
|
RelativePath binaryRelPath (binaryPath, RelativePath::projectFolder);
|
|
|
|
if (binaryRelPath.isAbsolute())
|
|
return binaryRelPath.toWindowsStyle();
|
|
|
|
return ".\\" + binaryRelPath.rebased (projectFolder, getTargetFolder(), RelativePath::buildTargetFolder)
|
|
.toWindowsStyle();
|
|
}
|
|
|
|
String getPreprocessorDefs (const BuildConfiguration& config, const String& joinString) const
|
|
{
|
|
StringPairArray defines (msvcExtraPreprocessorDefs);
|
|
defines.set ("WIN32", "");
|
|
defines.set ("_WINDOWS", "");
|
|
|
|
if (config.isDebug().getValue())
|
|
{
|
|
defines.set ("DEBUG", "");
|
|
defines.set ("_DEBUG", "");
|
|
}
|
|
else
|
|
{
|
|
defines.set ("NDEBUG", "");
|
|
}
|
|
|
|
defines = mergePreprocessorDefs (defines, getAllPreprocessorDefs (config));
|
|
|
|
StringArray result;
|
|
|
|
for (int i = 0; i < defines.size(); ++i)
|
|
{
|
|
String def (defines.getAllKeys()[i]);
|
|
const String value (defines.getAllValues()[i]);
|
|
if (value.isNotEmpty())
|
|
def << "=" << value;
|
|
|
|
result.add (def);
|
|
}
|
|
|
|
return result.joinIntoString (joinString);
|
|
}
|
|
|
|
StringArray getHeaderSearchPaths (const BuildConfiguration& config) const
|
|
{
|
|
StringArray searchPaths (extraSearchPaths);
|
|
searchPaths.addArray (config.getHeaderSearchPaths());
|
|
searchPaths.removeDuplicates (false);
|
|
return searchPaths;
|
|
}
|
|
|
|
virtual String createConfigName (const BuildConfiguration& config) const
|
|
{
|
|
return config.getName().toString() + "|Win32";
|
|
}
|
|
|
|
//==============================================================================
|
|
void writeSolutionFile (OutputStream& out, const String& versionString, String commentString, const File& vcProject)
|
|
{
|
|
if (commentString.isNotEmpty())
|
|
commentString += newLine;
|
|
|
|
out << "Microsoft Visual Studio Solution File, Format Version " << versionString << newLine
|
|
<< commentString
|
|
<< "Project(\"" << createGUID (projectName + "sln_guid") << "\") = \"" << projectName << "\", \""
|
|
<< vcProject.getFileName() << "\", \"" << projectGUID << '"' << newLine
|
|
<< "EndProject" << newLine
|
|
<< "Global" << newLine
|
|
<< "\tGlobalSection(SolutionConfigurationPlatforms) = preSolution" << newLine;
|
|
|
|
for (ConfigIterator i (*this); i.next();)
|
|
{
|
|
const String configName (createConfigName (*i));
|
|
out << "\t\t" << configName << " = " << configName << newLine;
|
|
}
|
|
|
|
out << "\tEndGlobalSection" << newLine
|
|
<< "\tGlobalSection(ProjectConfigurationPlatforms) = postSolution" << newLine;
|
|
|
|
for (ConfigIterator i (*this); i.next();)
|
|
{
|
|
const String configName (createConfigName (*i));
|
|
out << "\t\t" << projectGUID << "." << configName << ".ActiveCfg = " << configName << newLine;
|
|
out << "\t\t" << projectGUID << "." << configName << ".Build.0 = " << configName << newLine;
|
|
}
|
|
|
|
out << "\tEndGlobalSection" << newLine
|
|
<< "\tGlobalSection(SolutionProperties) = preSolution" << newLine
|
|
<< "\t\tHideSolutionNode = FALSE" << newLine
|
|
<< "\tEndGlobalSection" << newLine
|
|
<< "EndGlobal" << newLine;
|
|
}
|
|
|
|
//==============================================================================
|
|
static bool writeRCFile (const File& file, const File& iconFile)
|
|
{
|
|
return file.deleteFile()
|
|
&& file.appendText ("IDI_ICON1 ICON DISCARDABLE "
|
|
+ iconFile.getFileName().quoted(), false, false);
|
|
}
|
|
|
|
static void writeBMPImage (const Image& image, const int w, const int h, MemoryOutputStream& out)
|
|
{
|
|
const int maskStride = (w / 8 + 3) & ~3;
|
|
|
|
out.writeInt (40); // bitmapinfoheader size
|
|
out.writeInt (w);
|
|
out.writeInt (h * 2);
|
|
out.writeShort (1); // planes
|
|
out.writeShort (32); // bits
|
|
out.writeInt (0); // compression
|
|
out.writeInt ((h * w * 4) + (h * maskStride)); // size image
|
|
out.writeInt (0); // x pixels per meter
|
|
out.writeInt (0); // y pixels per meter
|
|
out.writeInt (0); // clr used
|
|
out.writeInt (0); // clr important
|
|
|
|
const Image::BitmapData bitmap (image, Image::BitmapData::readOnly);
|
|
const int alphaThreshold = 5;
|
|
|
|
int y;
|
|
for (y = h; --y >= 0;)
|
|
{
|
|
for (int x = 0; x < w; ++x)
|
|
{
|
|
const Colour pixel (bitmap.getPixelColour (x, y));
|
|
|
|
if (pixel.getAlpha() <= alphaThreshold)
|
|
{
|
|
out.writeInt (0);
|
|
}
|
|
else
|
|
{
|
|
out.writeByte ((char) pixel.getBlue());
|
|
out.writeByte ((char) pixel.getGreen());
|
|
out.writeByte ((char) pixel.getRed());
|
|
out.writeByte ((char) pixel.getAlpha());
|
|
}
|
|
}
|
|
}
|
|
|
|
for (y = h; --y >= 0;)
|
|
{
|
|
int mask = 0, count = 0;
|
|
|
|
for (int x = 0; x < w; ++x)
|
|
{
|
|
const Colour pixel (bitmap.getPixelColour (x, y));
|
|
|
|
mask <<= 1;
|
|
if (pixel.getAlpha() <= alphaThreshold)
|
|
mask |= 1;
|
|
|
|
if (++count == 8)
|
|
{
|
|
out.writeByte ((char) mask);
|
|
count = 0;
|
|
mask = 0;
|
|
}
|
|
}
|
|
|
|
if (mask != 0)
|
|
out.writeByte ((char) mask);
|
|
|
|
for (int i = maskStride - w / 8; --i >= 0;)
|
|
out.writeByte (0);
|
|
}
|
|
}
|
|
|
|
static void writeIconFile (const Array<Image>& images, MemoryOutputStream& out)
|
|
{
|
|
out.writeShort (0); // reserved
|
|
out.writeShort (1); // .ico tag
|
|
out.writeShort ((short) images.size());
|
|
|
|
MemoryOutputStream dataBlock;
|
|
|
|
const int imageDirEntrySize = 16;
|
|
const int dataBlockStart = 6 + images.size() * imageDirEntrySize;
|
|
|
|
for (int i = 0; i < images.size(); ++i)
|
|
{
|
|
const size_t oldDataSize = dataBlock.getDataSize();
|
|
|
|
const Image& image = images.getReference (i);
|
|
const int w = image.getWidth();
|
|
const int h = image.getHeight();
|
|
|
|
if (w >= 256 || h >= 256)
|
|
{
|
|
PNGImageFormat pngFormat;
|
|
pngFormat.writeImageToStream (image, dataBlock);
|
|
}
|
|
else
|
|
{
|
|
writeBMPImage (image, w, h, dataBlock);
|
|
}
|
|
|
|
out.writeByte ((char) w);
|
|
out.writeByte ((char) h);
|
|
out.writeByte (0);
|
|
out.writeByte (0);
|
|
out.writeShort (1); // colour planes
|
|
out.writeShort (32); // bits per pixel
|
|
out.writeInt ((int) (dataBlock.getDataSize() - oldDataSize));
|
|
out.writeInt (dataBlockStart + oldDataSize);
|
|
}
|
|
|
|
jassert (out.getPosition() == dataBlockStart);
|
|
out << dataBlock;
|
|
}
|
|
|
|
bool createIconFile()
|
|
{
|
|
Array<Image> images;
|
|
|
|
const int sizes[] = { 16, 32, 48, 256 };
|
|
|
|
for (int i = 0; i < numElementsInArray (sizes); ++i)
|
|
{
|
|
Image im (getBestIconForSize (sizes[i], true));
|
|
if (im.isValid())
|
|
images.add (im);
|
|
}
|
|
|
|
if (images.size() == 0)
|
|
return true;
|
|
|
|
MemoryOutputStream mo;
|
|
writeIconFile (images, mo);
|
|
|
|
iconFile = getTargetFolder().getChildFile ("icon.ico");
|
|
rcFile = getTargetFolder().getChildFile ("resources.rc");
|
|
|
|
hasIcon = FileHelpers::overwriteFileWithNewDataIfDifferent (iconFile, mo)
|
|
&& writeRCFile (rcFile, iconFile);
|
|
return hasIcon;
|
|
}
|
|
|
|
JUCE_DECLARE_NON_COPYABLE (MSVCProjectExporterBase);
|
|
};
|
|
|
|
|
|
//==============================================================================
|
|
class MSVCProjectExporterVC2008 : public MSVCProjectExporterBase
|
|
{
|
|
public:
|
|
//==============================================================================
|
|
MSVCProjectExporterVC2008 (Project& project_, const ValueTree& settings_, const char* folderName = "VisualStudio2008")
|
|
: MSVCProjectExporterBase (project_, settings_, folderName)
|
|
{
|
|
name = getName();
|
|
}
|
|
|
|
static const char* getName() { return "Visual Studio 2008"; }
|
|
static const char* getValueTreeTypeName() { return "VS2008"; }
|
|
|
|
void launchProject() { getSLNFile().startAsProcess(); }
|
|
|
|
int getLaunchPreferenceOrderForCurrentOS()
|
|
{
|
|
#if JUCE_WINDOWS
|
|
return 4;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
static MSVCProjectExporterVC2008* createForSettings (Project& project, const ValueTree& settings)
|
|
{
|
|
if (settings.hasType (getValueTreeTypeName()))
|
|
return new MSVCProjectExporterVC2008 (project, settings);
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
//==============================================================================
|
|
void create (const OwnedArray<LibraryModule>&)
|
|
{
|
|
createIconFile();
|
|
|
|
if (hasIcon)
|
|
{
|
|
for (int i = 0; i < groups.size(); ++i)
|
|
{
|
|
Project::Item& group = groups.getReference(i);
|
|
|
|
if (group.getID() == ProjectSaver::getGeneratedGroupID())
|
|
{
|
|
group.addFile (iconFile, -1, true);
|
|
group.addFile (rcFile, -1, true);
|
|
|
|
group.findItemForFile (iconFile).getShouldAddToResourceValue() = false;
|
|
group.findItemForFile (rcFile).getShouldAddToResourceValue() = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
{
|
|
XmlElement projectXml ("VisualStudioProject");
|
|
fillInProjectXml (projectXml);
|
|
writeXmlOrThrow (projectXml, getVCProjFile(), "UTF-8", 10);
|
|
}
|
|
|
|
{
|
|
MemoryOutputStream mo;
|
|
writeSolutionFile (mo, getSolutionVersionString(), String::empty, getVCProjFile());
|
|
|
|
overwriteFileIfDifferentOrThrow (getSLNFile(), mo);
|
|
}
|
|
}
|
|
|
|
protected:
|
|
virtual String getProjectVersionString() const { return "9.00"; }
|
|
virtual String getSolutionVersionString() const { return "10.00" + newLine + "# Visual C++ Express 2008"; }
|
|
|
|
File getVCProjFile() const { return getProjectFile (".vcproj"); }
|
|
File getSLNFile() const { return getProjectFile (".sln"); }
|
|
|
|
//==============================================================================
|
|
void fillInProjectXml (XmlElement& projectXml)
|
|
{
|
|
projectXml.setAttribute ("ProjectType", "Visual C++");
|
|
projectXml.setAttribute ("Version", getProjectVersionString());
|
|
projectXml.setAttribute ("Name", projectName);
|
|
projectXml.setAttribute ("ProjectGUID", projectGUID);
|
|
projectXml.setAttribute ("TargetFrameworkVersion", "131072");
|
|
|
|
{
|
|
XmlElement* platforms = projectXml.createNewChildElement ("Platforms");
|
|
XmlElement* platform = platforms->createNewChildElement ("Platform");
|
|
platform->setAttribute ("Name", "Win32");
|
|
}
|
|
|
|
projectXml.createNewChildElement ("ToolFiles");
|
|
createConfigs (*projectXml.createNewChildElement ("Configurations"));
|
|
projectXml.createNewChildElement ("References");
|
|
createFiles (*projectXml.createNewChildElement ("Files"));
|
|
projectXml.createNewChildElement ("Globals");
|
|
}
|
|
|
|
//==============================================================================
|
|
void addFile (const RelativePath& file, XmlElement& parent, const bool excludeFromBuild, const bool useStdcall)
|
|
{
|
|
jassert (file.getRoot() == RelativePath::buildTargetFolder);
|
|
|
|
XmlElement* fileXml = parent.createNewChildElement ("File");
|
|
fileXml->setAttribute ("RelativePath", file.toWindowsStyle());
|
|
|
|
if (excludeFromBuild || useStdcall)
|
|
{
|
|
for (ConfigIterator i (*this); i.next();)
|
|
{
|
|
XmlElement* fileConfig = fileXml->createNewChildElement ("FileConfiguration");
|
|
fileConfig->setAttribute ("Name", createConfigName (*i));
|
|
|
|
if (excludeFromBuild)
|
|
fileConfig->setAttribute ("ExcludedFromBuild", "true");
|
|
|
|
XmlElement* tool = createToolElement (*fileConfig, "VCCLCompilerTool");
|
|
|
|
if (useStdcall)
|
|
tool->setAttribute ("CallingConvention", "2");
|
|
}
|
|
}
|
|
}
|
|
|
|
XmlElement* createGroup (const String& groupName, XmlElement& parent)
|
|
{
|
|
XmlElement* filter = parent.createNewChildElement ("Filter");
|
|
filter->setAttribute ("Name", groupName);
|
|
return filter;
|
|
}
|
|
|
|
void addFiles (const Project::Item& projectItem, XmlElement& parent)
|
|
{
|
|
if (projectItem.isGroup())
|
|
{
|
|
XmlElement* filter = createGroup (projectItem.getName().toString(), parent);
|
|
|
|
for (int i = 0; i < projectItem.getNumChildren(); ++i)
|
|
addFiles (projectItem.getChild(i), *filter);
|
|
}
|
|
else if (projectItem.shouldBeAddedToTargetProject())
|
|
{
|
|
const RelativePath path (projectItem.getFile(), getTargetFolder(), RelativePath::buildTargetFolder);
|
|
|
|
addFile (path, parent,
|
|
projectItem.shouldBeAddedToBinaryResources() || (shouldFileBeCompiledByDefault (path) && ! projectItem.shouldBeCompiled()),
|
|
shouldFileBeCompiledByDefault (path) && (bool) projectItem.getShouldUseStdCallValue().getValue());
|
|
}
|
|
}
|
|
|
|
void createFiles (XmlElement& files)
|
|
{
|
|
for (int i = 0; i < groups.size(); ++i)
|
|
if (groups.getReference(i).getNumChildren() > 0)
|
|
addFiles (groups.getReference(i), files);
|
|
}
|
|
|
|
//==============================================================================
|
|
XmlElement* createToolElement (XmlElement& parent, const String& toolName) const
|
|
{
|
|
XmlElement* const e = parent.createNewChildElement ("Tool");
|
|
e->setAttribute ("Name", toolName);
|
|
return e;
|
|
}
|
|
|
|
void createConfig (XmlElement& xml, const MSVCBuildConfiguration& config) const
|
|
{
|
|
String binariesPath (getConfigTargetPath (config));
|
|
String intermediatesPath (getIntermediatesPath (config));
|
|
const bool isDebug = (bool) config.isDebug().getValue();
|
|
|
|
xml.setAttribute ("Name", createConfigName (config));
|
|
xml.setAttribute ("OutputDirectory", FileHelpers::windowsStylePath (binariesPath));
|
|
xml.setAttribute ("IntermediateDirectory", FileHelpers::windowsStylePath (intermediatesPath));
|
|
xml.setAttribute ("ConfigurationType", isLibraryDLL() ? "2" : (projectType.isLibrary() ? "4" : "1"));
|
|
xml.setAttribute ("UseOfMFC", "0");
|
|
xml.setAttribute ("ATLMinimizesCRunTimeLibraryUsage", "false");
|
|
xml.setAttribute ("CharacterSet", "2");
|
|
|
|
if (! isDebug)
|
|
xml.setAttribute ("WholeProgramOptimization", "1");
|
|
|
|
XmlElement* preBuildEvent = createToolElement (xml, "VCPreBuildEventTool");
|
|
|
|
if (config.msvcPreBuildCommand.isNotEmpty())
|
|
{
|
|
preBuildEvent->setAttribute ("Description", "Pre-build");
|
|
preBuildEvent->setAttribute ("CommandLine", config.msvcPreBuildCommand);
|
|
}
|
|
|
|
createToolElement (xml, "VCCustomBuildTool");
|
|
createToolElement (xml, "VCXMLDataGeneratorTool");
|
|
createToolElement (xml, "VCWebServiceProxyGeneratorTool");
|
|
|
|
if (! projectType.isLibrary())
|
|
{
|
|
XmlElement* midl = createToolElement (xml, "VCMIDLTool");
|
|
midl->setAttribute ("PreprocessorDefinitions", isDebug ? "_DEBUG" : "NDEBUG");
|
|
midl->setAttribute ("MkTypLibCompatible", "true");
|
|
midl->setAttribute ("SuppressStartupBanner", "true");
|
|
midl->setAttribute ("TargetEnvironment", "1");
|
|
midl->setAttribute ("TypeLibraryName", FileHelpers::windowsStylePath (intermediatesPath + "/"
|
|
+ config.getOutputFilename (".tlb", true)));
|
|
midl->setAttribute ("HeaderFileName", "");
|
|
}
|
|
|
|
{
|
|
XmlElement* compiler = createToolElement (xml, "VCCLCompilerTool");
|
|
|
|
const int optimiseLevel = (int) config.getOptimisationLevel().getValue();
|
|
compiler->setAttribute ("Optimization", optimiseLevel <= 1 ? "0" : (optimiseLevel == 2 ? "1" : "2"));
|
|
|
|
if (isDebug)
|
|
{
|
|
compiler->setAttribute ("BufferSecurityCheck", "");
|
|
compiler->setAttribute ("DebugInformationFormat", projectType.isLibrary() ? "3" : "4");
|
|
}
|
|
else
|
|
{
|
|
compiler->setAttribute ("InlineFunctionExpansion", "1");
|
|
compiler->setAttribute ("StringPooling", "true");
|
|
}
|
|
|
|
compiler->setAttribute ("AdditionalIncludeDirectories", replacePreprocessorTokens (config, getHeaderSearchPaths (config).joinIntoString (";")));
|
|
compiler->setAttribute ("PreprocessorDefinitions", getPreprocessorDefs (config, ";"));
|
|
compiler->setAttribute ("RuntimeLibrary", msvcNeedsDLLRuntimeLib ? (isDebug ? 3 : 2) // MT DLL
|
|
: (isDebug ? 1 : 0)); // MT static
|
|
compiler->setAttribute ("RuntimeTypeInfo", "true");
|
|
compiler->setAttribute ("UsePrecompiledHeader", "0");
|
|
compiler->setAttribute ("PrecompiledHeaderFile", FileHelpers::windowsStylePath (intermediatesPath + "/"
|
|
+ config.getOutputFilename (".pch", true)));
|
|
compiler->setAttribute ("AssemblerListingLocation", FileHelpers::windowsStylePath (intermediatesPath + "/"));
|
|
compiler->setAttribute ("ObjectFile", FileHelpers::windowsStylePath (intermediatesPath + "/"));
|
|
compiler->setAttribute ("ProgramDataBaseFileName", FileHelpers::windowsStylePath (intermediatesPath + "/"));
|
|
compiler->setAttribute ("WarningLevel", String (getWarningLevel (config)));
|
|
compiler->setAttribute ("SuppressStartupBanner", "true");
|
|
|
|
const String extraFlags (replacePreprocessorTokens (config, getExtraCompilerFlags().toString()).trim());
|
|
if (extraFlags.isNotEmpty())
|
|
compiler->setAttribute ("AdditionalOptions", extraFlags);
|
|
}
|
|
|
|
createToolElement (xml, "VCManagedResourceCompilerTool");
|
|
|
|
{
|
|
XmlElement* resCompiler = createToolElement (xml, "VCResourceCompilerTool");
|
|
resCompiler->setAttribute ("PreprocessorDefinitions", isDebug ? "_DEBUG" : "NDEBUG");
|
|
}
|
|
|
|
createToolElement (xml, "VCPreLinkEventTool");
|
|
|
|
if (! projectType.isLibrary())
|
|
{
|
|
XmlElement* linker = createToolElement (xml, "VCLinkerTool");
|
|
|
|
linker->setAttribute ("OutputFile", FileHelpers::windowsStylePath (binariesPath + "/" + config.getOutputFilename (msvcTargetSuffix, false)));
|
|
linker->setAttribute ("SuppressStartupBanner", "true");
|
|
|
|
linker->setAttribute ("IgnoreDefaultLibraryNames", isDebug ? "libcmt.lib, msvcrt.lib" : "");
|
|
linker->setAttribute ("GenerateDebugInformation", isDebug ? "true" : "false");
|
|
linker->setAttribute ("ProgramDatabaseFile", FileHelpers::windowsStylePath (intermediatesPath + "/"
|
|
+ config.getOutputFilename (".pdb", true)));
|
|
linker->setAttribute ("SubSystem", msvcIsWindowsSubsystem ? "2" : "1");
|
|
|
|
const StringArray librarySearchPaths (config.getLibrarySearchPaths());
|
|
if (librarySearchPaths.size() > 0)
|
|
linker->setAttribute ("AdditionalLibraryDirectories", librarySearchPaths.joinIntoString (";"));
|
|
|
|
linker->setAttribute ("GenerateManifest", config.shouldGenerateManifest().getValue() ? "true" : "false");
|
|
|
|
if (! isDebug)
|
|
{
|
|
linker->setAttribute ("OptimizeReferences", "2");
|
|
linker->setAttribute ("EnableCOMDATFolding", "2");
|
|
}
|
|
|
|
linker->setAttribute ("TargetMachine", "1"); // (64-bit build = 5)
|
|
|
|
if (msvcDelayLoadedDLLs.isNotEmpty())
|
|
linker->setAttribute ("DelayLoadDLLs", msvcDelayLoadedDLLs);
|
|
|
|
if (config.msvcModuleDefinitionFile.isNotEmpty())
|
|
linker->setAttribute ("ModuleDefinitionFile", config.msvcModuleDefinitionFile);
|
|
|
|
String extraLinkerOptions (getExtraLinkerFlags().toString());
|
|
|
|
if (config.msvcExtraLinkerOptions.isNotEmpty())
|
|
extraLinkerOptions << ' ' << config.msvcExtraLinkerOptions;
|
|
|
|
if (extraLinkerOptions.isNotEmpty())
|
|
linker->setAttribute ("AdditionalOptions", replacePreprocessorTokens (config, extraLinkerOptions).trim());
|
|
}
|
|
else
|
|
{
|
|
if (isLibraryDLL())
|
|
{
|
|
XmlElement* linker = createToolElement (xml, "VCLinkerTool");
|
|
|
|
String extraLinkerOptions (getExtraLinkerFlags().toString());
|
|
extraLinkerOptions << " /IMPLIB:" << FileHelpers::windowsStylePath (binariesPath + "/" + config.getOutputFilename (".lib", true));
|
|
linker->setAttribute ("AdditionalOptions", replacePreprocessorTokens (config, extraLinkerOptions).trim());
|
|
|
|
linker->setAttribute ("OutputFile", FileHelpers::windowsStylePath (binariesPath + "/" + config.getOutputFilename (msvcTargetSuffix, false)));
|
|
linker->setAttribute ("IgnoreDefaultLibraryNames", isDebug ? "libcmt.lib, msvcrt.lib" : "");
|
|
}
|
|
else
|
|
{
|
|
XmlElement* librarian = createToolElement (xml, "VCLibrarianTool");
|
|
|
|
librarian->setAttribute ("OutputFile", FileHelpers::windowsStylePath (binariesPath + "/" + config.getOutputFilename (msvcTargetSuffix, false)));
|
|
librarian->setAttribute ("IgnoreDefaultLibraryNames", isDebug ? "libcmt.lib, msvcrt.lib" : "");
|
|
}
|
|
}
|
|
|
|
createToolElement (xml, "VCALinkTool");
|
|
createToolElement (xml, "VCManifestTool");
|
|
createToolElement (xml, "VCXDCMakeTool");
|
|
|
|
{
|
|
XmlElement* bscMake = createToolElement (xml, "VCBscMakeTool");
|
|
bscMake->setAttribute ("SuppressStartupBanner", "true");
|
|
bscMake->setAttribute ("OutputFile", FileHelpers::windowsStylePath (intermediatesPath + "/"
|
|
+ config.getOutputFilename (".bsc", true)));
|
|
}
|
|
|
|
createToolElement (xml, "VCFxCopTool");
|
|
|
|
if (! projectType.isLibrary())
|
|
createToolElement (xml, "VCAppVerifierTool");
|
|
|
|
XmlElement* postBuildEvent = createToolElement (xml, "VCPostBuildEventTool");
|
|
|
|
if (config.msvcPostBuildCommand.isNotEmpty())
|
|
{
|
|
postBuildEvent->setAttribute ("Description", "Post-build");
|
|
postBuildEvent->setAttribute ("CommandLine", config.msvcPostBuildCommand);
|
|
}
|
|
}
|
|
|
|
void createConfigs (XmlElement& xml)
|
|
{
|
|
for (ConfigIterator config (*this); config.next();)
|
|
createConfig (*xml.createNewChildElement ("Configuration"),
|
|
dynamic_cast <const MSVCBuildConfiguration&> (*config));
|
|
}
|
|
|
|
//==============================================================================
|
|
JUCE_DECLARE_NON_COPYABLE (MSVCProjectExporterVC2008);
|
|
};
|
|
|
|
|
|
//==============================================================================
|
|
class MSVCProjectExporterVC2005 : public MSVCProjectExporterVC2008
|
|
{
|
|
public:
|
|
MSVCProjectExporterVC2005 (Project& project_, const ValueTree& settings_)
|
|
: MSVCProjectExporterVC2008 (project_, settings_, "VisualStudio2005")
|
|
{
|
|
name = getName();
|
|
}
|
|
|
|
static const char* getName() { return "Visual Studio 2005"; }
|
|
static const char* getValueTreeTypeName() { return "VS2005"; }
|
|
|
|
int getLaunchPreferenceOrderForCurrentOS()
|
|
{
|
|
#if JUCE_WINDOWS
|
|
return 2;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
static MSVCProjectExporterVC2005* createForSettings (Project& project, const ValueTree& settings)
|
|
{
|
|
if (settings.hasType (getValueTreeTypeName()))
|
|
return new MSVCProjectExporterVC2005 (project, settings);
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
protected:
|
|
String getProjectVersionString() const { return "8.00"; }
|
|
String getSolutionVersionString() const { return "9.00" + newLine + "# Visual C++ Express 2005"; }
|
|
|
|
JUCE_DECLARE_NON_COPYABLE (MSVCProjectExporterVC2005);
|
|
};
|
|
|
|
//==============================================================================
|
|
class MSVCProjectExporterVC2010 : public MSVCProjectExporterBase
|
|
{
|
|
public:
|
|
MSVCProjectExporterVC2010 (Project& project_, const ValueTree& settings_)
|
|
: MSVCProjectExporterBase (project_, settings_, "VisualStudio2010")
|
|
{
|
|
name = getName();
|
|
}
|
|
|
|
static const char* getName() { return "Visual Studio 2010"; }
|
|
static const char* getValueTreeTypeName() { return "VS2010"; }
|
|
|
|
int getLaunchPreferenceOrderForCurrentOS()
|
|
{
|
|
#if JUCE_WINDOWS
|
|
return 3;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
void launchProject() { getSLNFile().startAsProcess(); }
|
|
|
|
static MSVCProjectExporterVC2010* createForSettings (Project& project, const ValueTree& settings)
|
|
{
|
|
if (settings.hasType (getValueTreeTypeName()))
|
|
return new MSVCProjectExporterVC2010 (project, settings);
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
//==============================================================================
|
|
void create (const OwnedArray<LibraryModule>&)
|
|
{
|
|
createIconFile();
|
|
|
|
{
|
|
XmlElement projectXml ("Project");
|
|
fillInProjectXml (projectXml);
|
|
writeXmlOrThrow (projectXml, getVCProjFile(), "utf-8", 100);
|
|
}
|
|
|
|
{
|
|
XmlElement filtersXml ("Project");
|
|
fillInFiltersXml (filtersXml);
|
|
writeXmlOrThrow (filtersXml, getVCProjFiltersFile(), "utf-8", 100);
|
|
}
|
|
|
|
{
|
|
MemoryOutputStream mo;
|
|
writeSolutionFile (mo, "11.00", "# Visual Studio 2010", getVCProjFile());
|
|
|
|
overwriteFileIfDifferentOrThrow (getSLNFile(), mo);
|
|
}
|
|
}
|
|
|
|
protected:
|
|
//==============================================================================
|
|
class VC2010BuildConfiguration : public MSVCBuildConfiguration
|
|
{
|
|
public:
|
|
VC2010BuildConfiguration (Project& project, const ValueTree& settings)
|
|
: MSVCBuildConfiguration (project, settings)
|
|
{
|
|
if (getArchitectureType().toString().isEmpty())
|
|
getArchitectureType() = get32BitArchName();
|
|
}
|
|
|
|
//==============================================================================
|
|
static const char* get32BitArchName() { return "32-bit"; }
|
|
static const char* get64BitArchName() { return "x64"; }
|
|
|
|
Value getArchitectureType() const { return getValue (Ids::winArchitecture); }
|
|
bool is64Bit() const { return getArchitectureType().toString() == get64BitArchName(); }
|
|
|
|
//==============================================================================
|
|
void createPropertyEditors (PropertyListBuilder& props)
|
|
{
|
|
MSVCBuildConfiguration::createPropertyEditors (props);
|
|
|
|
const char* const archTypes[] = { get32BitArchName(), get64BitArchName(), nullptr };
|
|
props.add (new ChoicePropertyComponent (getArchitectureType(), "Architecture",
|
|
StringArray (archTypes), Array<var> (archTypes)));
|
|
}
|
|
};
|
|
|
|
BuildConfiguration::Ptr createBuildConfig (const ValueTree& settings) const
|
|
{
|
|
return new VC2010BuildConfiguration (project, settings);
|
|
}
|
|
|
|
static bool is64Bit (const BuildConfiguration& config)
|
|
{
|
|
return dynamic_cast <const VC2010BuildConfiguration&> (config).is64Bit();
|
|
}
|
|
|
|
//==============================================================================
|
|
File getVCProjFile() const { return getProjectFile (".vcxproj"); }
|
|
File getVCProjFiltersFile() const { return getProjectFile (".vcxproj.filters"); }
|
|
File getSLNFile() const { return getProjectFile (".sln"); }
|
|
|
|
String createConfigName (const BuildConfiguration& config) const
|
|
{
|
|
return config.getName().toString() + (is64Bit (config) ? "|x64"
|
|
: "|Win32");
|
|
}
|
|
|
|
void setConditionAttribute (XmlElement& xml, const BuildConfiguration& config)
|
|
{
|
|
xml.setAttribute ("Condition", "'$(Configuration)|$(Platform)'=='" + createConfigName (config) + "'");
|
|
}
|
|
|
|
//==============================================================================
|
|
void fillInProjectXml (XmlElement& projectXml)
|
|
{
|
|
projectXml.setAttribute ("DefaultTargets", "Build");
|
|
projectXml.setAttribute ("ToolsVersion", "4.0");
|
|
projectXml.setAttribute ("xmlns", "http://schemas.microsoft.com/developer/msbuild/2003");
|
|
|
|
{
|
|
XmlElement* configsGroup = projectXml.createNewChildElement ("ItemGroup");
|
|
configsGroup->setAttribute ("Label", "ProjectConfigurations");
|
|
|
|
for (ConfigIterator config (*this); config.next();)
|
|
{
|
|
XmlElement* e = configsGroup->createNewChildElement ("ProjectConfiguration");
|
|
e->setAttribute ("Include", createConfigName (*config));
|
|
e->createNewChildElement ("Configuration")->addTextElement (config->getName().toString());
|
|
e->createNewChildElement ("Platform")->addTextElement (is64Bit (*config) ? "x64" : "Win32");
|
|
}
|
|
}
|
|
|
|
{
|
|
XmlElement* globals = projectXml.createNewChildElement ("PropertyGroup");
|
|
globals->setAttribute ("Label", "Globals");
|
|
globals->createNewChildElement ("ProjectGuid")->addTextElement (projectGUID);
|
|
}
|
|
|
|
{
|
|
XmlElement* imports = projectXml.createNewChildElement ("Import");
|
|
imports->setAttribute ("Project", "$(VCTargetsPath)\\Microsoft.Cpp.Default.props");
|
|
}
|
|
|
|
for (ConfigIterator config (*this); config.next();)
|
|
{
|
|
XmlElement* e = projectXml.createNewChildElement ("PropertyGroup");
|
|
setConditionAttribute (*e, *config);
|
|
e->setAttribute ("Label", "Configuration");
|
|
e->createNewChildElement ("ConfigurationType")->addTextElement (getProjectType());
|
|
e->createNewChildElement ("UseOfMfc")->addTextElement ("false");
|
|
e->createNewChildElement ("CharacterSet")->addTextElement ("MultiByte");
|
|
|
|
if (! config->isDebug().getValue())
|
|
e->createNewChildElement ("WholeProgramOptimization")->addTextElement ("true");
|
|
|
|
if (is64Bit (*config))
|
|
e->createNewChildElement ("PlatformToolset")->addTextElement ("Windows7.1SDK");
|
|
}
|
|
|
|
{
|
|
XmlElement* e = projectXml.createNewChildElement ("Import");
|
|
e->setAttribute ("Project", "$(VCTargetsPath)\\Microsoft.Cpp.props");
|
|
}
|
|
|
|
{
|
|
XmlElement* e = projectXml.createNewChildElement ("ImportGroup");
|
|
e->setAttribute ("Label", "ExtensionSettings");
|
|
}
|
|
|
|
{
|
|
XmlElement* e = projectXml.createNewChildElement ("ImportGroup");
|
|
e->setAttribute ("Label", "PropertySheets");
|
|
XmlElement* p = e->createNewChildElement ("Import");
|
|
p->setAttribute ("Project", "$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props");
|
|
p->setAttribute ("Condition", "exists('$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props')");
|
|
p->setAttribute ("Label", "LocalAppDataPlatform");
|
|
}
|
|
|
|
{
|
|
XmlElement* e = projectXml.createNewChildElement ("PropertyGroup");
|
|
e->setAttribute ("Label", "UserMacros");
|
|
}
|
|
|
|
{
|
|
XmlElement* props = projectXml.createNewChildElement ("PropertyGroup");
|
|
props->createNewChildElement ("_ProjectFileVersion")->addTextElement ("10.0.30319.1");
|
|
|
|
for (ConfigIterator i (*this); i.next();)
|
|
{
|
|
const MSVCBuildConfiguration& config = dynamic_cast <const MSVCBuildConfiguration&> (*i);
|
|
|
|
{
|
|
XmlElement* outdir = props->createNewChildElement ("OutDir");
|
|
setConditionAttribute (*outdir, config);
|
|
outdir->addTextElement (getConfigTargetPath (config) + "\\");
|
|
}
|
|
|
|
{
|
|
XmlElement* intdir = props->createNewChildElement ("IntDir");
|
|
setConditionAttribute (*intdir, config);
|
|
intdir->addTextElement (getConfigTargetPath (config) + "\\");
|
|
}
|
|
|
|
{
|
|
XmlElement* name = props->createNewChildElement ("TargetName");
|
|
setConditionAttribute (*name, config);
|
|
name->addTextElement (config.getOutputFilename (String::empty, true));
|
|
}
|
|
|
|
{
|
|
XmlElement* manifest = props->createNewChildElement ("GenerateManifest");
|
|
setConditionAttribute (*manifest, config);
|
|
manifest->addTextElement (config.shouldGenerateManifest().getValue() ? "true" : "false");
|
|
}
|
|
|
|
const StringArray librarySearchPaths (config.getLibrarySearchPaths());
|
|
|
|
if (librarySearchPaths.size() > 0)
|
|
{
|
|
XmlElement* libPath = props->createNewChildElement ("LibraryPath");
|
|
setConditionAttribute (*libPath, config);
|
|
libPath->addTextElement ("$(LibraryPath);" + librarySearchPaths.joinIntoString (";"));
|
|
}
|
|
}
|
|
}
|
|
|
|
for (ConfigIterator i (*this); i.next();)
|
|
{
|
|
const MSVCBuildConfiguration& config = dynamic_cast <const MSVCBuildConfiguration&> (*i);
|
|
|
|
String binariesPath (getConfigTargetPath (config));
|
|
String intermediatesPath (getIntermediatesPath (config));
|
|
const bool isDebug = (bool) config.isDebug().getValue();
|
|
|
|
XmlElement* group = projectXml.createNewChildElement ("ItemDefinitionGroup");
|
|
setConditionAttribute (*group, config);
|
|
|
|
{
|
|
XmlElement* midl = group->createNewChildElement ("Midl");
|
|
midl->createNewChildElement ("PreprocessorDefinitions")->addTextElement (isDebug ? "_DEBUG;%(PreprocessorDefinitions)"
|
|
: "NDEBUG;%(PreprocessorDefinitions)");
|
|
midl->createNewChildElement ("MkTypLibCompatible")->addTextElement ("true");
|
|
midl->createNewChildElement ("SuppressStartupBanner")->addTextElement ("true");
|
|
midl->createNewChildElement ("TargetEnvironment")->addTextElement ("Win32");
|
|
midl->createNewChildElement ("HeaderFileName");
|
|
}
|
|
|
|
{
|
|
XmlElement* cl = group->createNewChildElement ("ClCompile");
|
|
cl->createNewChildElement ("Optimization")->addTextElement (isDebug ? "Disabled" : "MaxSpeed");
|
|
|
|
if (isDebug)
|
|
cl->createNewChildElement ("DebugInformationFormat")->addTextElement (is64Bit (config) ? "ProgramDatabase"
|
|
: "EditAndContinue");
|
|
|
|
StringArray includePaths (getHeaderSearchPaths (config));
|
|
includePaths.add ("%(AdditionalIncludeDirectories)");
|
|
cl->createNewChildElement ("AdditionalIncludeDirectories")->addTextElement (includePaths.joinIntoString (";"));
|
|
cl->createNewChildElement ("PreprocessorDefinitions")->addTextElement (getPreprocessorDefs (config, ";") + ";%(PreprocessorDefinitions)");
|
|
cl->createNewChildElement ("RuntimeLibrary")->addTextElement (msvcNeedsDLLRuntimeLib ? (isDebug ? "MultiThreadedDLLDebug" : "MultiThreadedDLL")
|
|
: (isDebug ? "MultiThreadedDebug" : "MultiThreaded"));
|
|
cl->createNewChildElement ("RuntimeTypeInfo")->addTextElement ("true");
|
|
cl->createNewChildElement ("PrecompiledHeader");
|
|
cl->createNewChildElement ("AssemblerListingLocation")->addTextElement (FileHelpers::windowsStylePath (intermediatesPath + "/"));
|
|
cl->createNewChildElement ("ObjectFileName")->addTextElement (FileHelpers::windowsStylePath (intermediatesPath + "/"));
|
|
cl->createNewChildElement ("ProgramDataBaseFileName")->addTextElement (FileHelpers::windowsStylePath (intermediatesPath + "/"));
|
|
cl->createNewChildElement ("WarningLevel")->addTextElement ("Level" + String (getWarningLevel (config)));
|
|
cl->createNewChildElement ("SuppressStartupBanner")->addTextElement ("true");
|
|
cl->createNewChildElement ("MultiProcessorCompilation")->addTextElement ("true");
|
|
|
|
const String extraFlags (replacePreprocessorTokens (config, getExtraCompilerFlags().toString()).trim());
|
|
if (extraFlags.isNotEmpty())
|
|
cl->createNewChildElement ("AdditionalOptions")->addTextElement (extraFlags + " %(AdditionalOptions)");
|
|
}
|
|
|
|
{
|
|
XmlElement* res = group->createNewChildElement ("ResourceCompile");
|
|
res->createNewChildElement ("PreprocessorDefinitions")->addTextElement (isDebug ? "_DEBUG;%(PreprocessorDefinitions)"
|
|
: "NDEBUG;%(PreprocessorDefinitions)");
|
|
}
|
|
|
|
{
|
|
XmlElement* link = group->createNewChildElement ("Link");
|
|
link->createNewChildElement ("OutputFile")
|
|
->addTextElement (FileHelpers::windowsStylePath (binariesPath + "/" + config.getOutputFilename (msvcTargetSuffix, false)));
|
|
link->createNewChildElement ("SuppressStartupBanner")->addTextElement ("true");
|
|
link->createNewChildElement ("IgnoreSpecificDefaultLibraries")->addTextElement (isDebug ? "libcmt.lib; msvcrt.lib;;%(IgnoreSpecificDefaultLibraries)"
|
|
: "%(IgnoreSpecificDefaultLibraries)");
|
|
link->createNewChildElement ("GenerateDebugInformation")->addTextElement (isDebug ? "true" : "false");
|
|
link->createNewChildElement ("ProgramDatabaseFile")->addTextElement (FileHelpers::windowsStylePath (intermediatesPath + "/"
|
|
+ config.getOutputFilename (".pdb", true)));
|
|
link->createNewChildElement ("SubSystem")->addTextElement (msvcIsWindowsSubsystem ? "Windows" : "Console");
|
|
|
|
if (! is64Bit (config))
|
|
link->createNewChildElement ("TargetMachine")->addTextElement ("MachineX86");
|
|
|
|
if (! isDebug)
|
|
{
|
|
link->createNewChildElement ("OptimizeReferences")->addTextElement ("true");
|
|
link->createNewChildElement ("EnableCOMDATFolding")->addTextElement ("true");
|
|
}
|
|
|
|
String extraLinkerOptions (getExtraLinkerFlags().toString());
|
|
if (extraLinkerOptions.isNotEmpty())
|
|
link->createNewChildElement ("AdditionalOptions")->addTextElement (replacePreprocessorTokens (config, extraLinkerOptions).trim()
|
|
+ " %(AdditionalOptions)");
|
|
}
|
|
|
|
{
|
|
XmlElement* bsc = group->createNewChildElement ("Bscmake");
|
|
bsc->createNewChildElement ("SuppressStartupBanner")->addTextElement ("true");
|
|
bsc->createNewChildElement ("OutputFile")->addTextElement (FileHelpers::windowsStylePath (intermediatesPath
|
|
+ "/" + config.getOutputFilename (".bsc", true)));
|
|
}
|
|
|
|
if (config.msvcPreBuildCommand.isNotEmpty())
|
|
group->createNewChildElement ("PreBuildEvent")
|
|
->createNewChildElement ("Command")
|
|
->addTextElement (config.msvcPreBuildCommand);
|
|
|
|
if (config.msvcPostBuildCommand.isNotEmpty())
|
|
group->createNewChildElement ("PostBuildEvent")
|
|
->createNewChildElement ("Command")
|
|
->addTextElement (config.msvcPostBuildCommand);
|
|
}
|
|
|
|
{
|
|
XmlElement* cppFiles = projectXml.createNewChildElement ("ItemGroup");
|
|
XmlElement* headerFiles = projectXml.createNewChildElement ("ItemGroup");
|
|
|
|
for (int i = 0; i < groups.size(); ++i)
|
|
if (groups.getReference(i).getNumChildren() > 0)
|
|
addFilesToCompile (groups.getReference(i), *cppFiles, *headerFiles, false);
|
|
}
|
|
|
|
if (hasIcon)
|
|
{
|
|
{
|
|
XmlElement* iconGroup = projectXml.createNewChildElement ("ItemGroup");
|
|
XmlElement* e = iconGroup->createNewChildElement ("None");
|
|
e->setAttribute ("Include", ".\\" + iconFile.getFileName());
|
|
}
|
|
|
|
{
|
|
XmlElement* rcGroup = projectXml.createNewChildElement ("ItemGroup");
|
|
XmlElement* e = rcGroup->createNewChildElement ("ResourceCompile");
|
|
e->setAttribute ("Include", ".\\" + rcFile.getFileName());
|
|
}
|
|
}
|
|
|
|
{
|
|
XmlElement* e = projectXml.createNewChildElement ("Import");
|
|
e->setAttribute ("Project", "$(VCTargetsPath)\\Microsoft.Cpp.targets");
|
|
}
|
|
|
|
{
|
|
XmlElement* e = projectXml.createNewChildElement ("ImportGroup");
|
|
e->setAttribute ("Label", "ExtensionTargets");
|
|
}
|
|
}
|
|
|
|
String getProjectType() const
|
|
{
|
|
if (projectType.isGUIApplication() || projectType.isCommandLineApp()) return "Application";
|
|
else if (isLibraryDLL()) return "DynamicLibrary";
|
|
else if (projectType.isLibrary()) return "StaticLibrary";
|
|
|
|
jassertfalse;
|
|
return String::empty;
|
|
}
|
|
|
|
//==============================================================================
|
|
void addFileToCompile (const RelativePath& file, XmlElement& cpps, XmlElement& headers, const bool excludeFromBuild, const bool useStdcall)
|
|
{
|
|
jassert (file.getRoot() == RelativePath::buildTargetFolder);
|
|
|
|
if (file.hasFileExtension ("cpp;cc;cxx;c"))
|
|
{
|
|
XmlElement* e = cpps.createNewChildElement ("ClCompile");
|
|
e->setAttribute ("Include", file.toWindowsStyle());
|
|
|
|
if (excludeFromBuild)
|
|
e->createNewChildElement ("ExcludedFromBuild")->addTextElement ("true");
|
|
|
|
if (useStdcall)
|
|
{
|
|
jassertfalse;
|
|
}
|
|
}
|
|
else if (file.hasFileExtension (headerFileExtensions))
|
|
{
|
|
headers.createNewChildElement ("ClInclude")->setAttribute ("Include", file.toWindowsStyle());
|
|
}
|
|
}
|
|
|
|
void addFilesToCompile (const Array<RelativePath>& files, XmlElement& cpps, XmlElement& headers, bool useStdCall)
|
|
{
|
|
for (int i = 0; i < files.size(); ++i)
|
|
addFileToCompile (files.getReference(i), cpps, headers, false, useStdCall);
|
|
}
|
|
|
|
void addFilesToCompile (const Project::Item& projectItem, XmlElement& cpps, XmlElement& headers, bool useStdCall)
|
|
{
|
|
if (projectItem.isGroup())
|
|
{
|
|
for (int i = 0; i < projectItem.getNumChildren(); ++i)
|
|
addFilesToCompile (projectItem.getChild(i), cpps, headers, useStdCall);
|
|
}
|
|
else
|
|
{
|
|
if (projectItem.shouldBeAddedToTargetProject())
|
|
{
|
|
const RelativePath path (projectItem.getFile(), getTargetFolder(), RelativePath::buildTargetFolder);
|
|
|
|
if (path.hasFileExtension (headerFileExtensions) || (path.hasFileExtension ("cpp;cc;c;cxx")))
|
|
addFileToCompile (path, cpps, headers, ! projectItem.shouldBeCompiled(), useStdCall);
|
|
}
|
|
}
|
|
}
|
|
|
|
//==============================================================================
|
|
void addFilterGroup (XmlElement& groups, const String& path)
|
|
{
|
|
XmlElement* e = groups.createNewChildElement ("Filter");
|
|
e->setAttribute ("Include", path);
|
|
e->createNewChildElement ("UniqueIdentifier")->addTextElement (createGUID (path + "_guidpathsaltxhsdf"));
|
|
}
|
|
|
|
void addFileToFilter (const RelativePath& file, const String& groupPath, XmlElement& cpps, XmlElement& headers)
|
|
{
|
|
XmlElement* e;
|
|
|
|
if (file.hasFileExtension (headerFileExtensions))
|
|
e = headers.createNewChildElement ("ClInclude");
|
|
else
|
|
e = cpps.createNewChildElement ("ClCompile");
|
|
|
|
jassert (file.getRoot() == RelativePath::buildTargetFolder);
|
|
e->setAttribute ("Include", file.toWindowsStyle());
|
|
e->createNewChildElement ("Filter")->addTextElement (groupPath);
|
|
}
|
|
|
|
void addFilesToFilter (const Project::Item& projectItem, const String& path, XmlElement& cpps, XmlElement& headers, XmlElement& groups)
|
|
{
|
|
if (projectItem.isGroup())
|
|
{
|
|
addFilterGroup (groups, path);
|
|
|
|
for (int i = 0; i < projectItem.getNumChildren(); ++i)
|
|
addFilesToFilter (projectItem.getChild(i),
|
|
(path.isEmpty() ? String::empty : (path + "\\")) + projectItem.getChild(i).getName().toString(),
|
|
cpps, headers, groups);
|
|
}
|
|
else
|
|
{
|
|
if (projectItem.shouldBeAddedToTargetProject())
|
|
{
|
|
addFileToFilter (RelativePath (projectItem.getFile(), getTargetFolder(), RelativePath::buildTargetFolder),
|
|
path.upToLastOccurrenceOf ("\\", false, false), cpps, headers);
|
|
}
|
|
}
|
|
}
|
|
|
|
void addFilesToFilter (const Array<RelativePath>& files, const String& path, XmlElement& cpps, XmlElement& headers, XmlElement& groups)
|
|
{
|
|
if (files.size() > 0)
|
|
{
|
|
addFilterGroup (groups, path);
|
|
|
|
for (int i = 0; i < files.size(); ++i)
|
|
addFileToFilter (files.getReference(i), path, cpps, headers);
|
|
}
|
|
}
|
|
|
|
void fillInFiltersXml (XmlElement& filterXml)
|
|
{
|
|
filterXml.setAttribute ("ToolsVersion", "4.0");
|
|
filterXml.setAttribute ("xmlns", "http://schemas.microsoft.com/developer/msbuild/2003");
|
|
|
|
XmlElement* groupsXml = filterXml.createNewChildElement ("ItemGroup");
|
|
XmlElement* cpps = filterXml.createNewChildElement ("ItemGroup");
|
|
XmlElement* headers = filterXml.createNewChildElement ("ItemGroup");
|
|
|
|
for (int i = 0; i < groups.size(); ++i)
|
|
if (groups.getReference(i).getNumChildren() > 0)
|
|
addFilesToFilter (groups.getReference(i), groups.getReference(i).getName().toString(), *cpps, *headers, *groupsXml);
|
|
|
|
if (iconFile.exists())
|
|
{
|
|
{
|
|
XmlElement* iconGroup = filterXml.createNewChildElement ("ItemGroup");
|
|
XmlElement* e = iconGroup->createNewChildElement ("None");
|
|
e->setAttribute ("Include", ".\\" + iconFile.getFileName());
|
|
e->createNewChildElement ("Filter")->addTextElement (ProjectSaver::getJuceCodeGroupName());
|
|
}
|
|
|
|
{
|
|
XmlElement* rcGroup = filterXml.createNewChildElement ("ItemGroup");
|
|
XmlElement* e = rcGroup->createNewChildElement ("ResourceCompile");
|
|
e->setAttribute ("Include", ".\\" + rcFile.getFileName());
|
|
e->createNewChildElement ("Filter")->addTextElement (ProjectSaver::getJuceCodeGroupName());
|
|
}
|
|
}
|
|
}
|
|
|
|
//==============================================================================
|
|
JUCE_DECLARE_NON_COPYABLE (MSVCProjectExporterVC2010);
|
|
};
|
|
|
|
|
|
#endif // __JUCER_PROJECTEXPORT_MSVC_JUCEHEADER__
|