1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Even more introjucer refactoring.

This commit is contained in:
Julian Storer 2011-07-07 10:13:18 +01:00
parent 997d29c445
commit 6392cdabcc
28 changed files with 420 additions and 336 deletions

View file

@ -175,7 +175,12 @@ namespace CodeHelpers
String createIncludeStatement (const File& includeFile, const File& targetFile)
{
return "#include \"" + FileHelpers::unixStylePath (includeFile.getRelativePathFrom (targetFile.getParentDirectory())) + "\"";
return createIncludeStatement (FileHelpers::unixStylePath (includeFile.getRelativePathFrom (targetFile.getParentDirectory())));
}
String createIncludeStatement (const String& includePath)
{
return "#include \"" + includePath + "\"";
}
String makeHeaderGuardName (const File& file)