Browse Source

Introjucer: Added a strip option to linux makefile generation

tags/2021-05-28
jules 12 years ago
parent
commit
1be82bfcee
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Make.h

+ 5
- 0
extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Make.h View File

@@ -282,6 +282,11 @@ private:
<< "\t-@rm -rf $(OBJDIR)" << newLine
<< newLine;
out << "strip:" << newLine
<< "\t@echo Stripping " << projectName << newLine
<< "\t-@strip --strip-unneeded $(OUTDIR)/$(TARGET)" << newLine
<< newLine;
for (int i = 0; i < files.size(); ++i)
{
if (shouldFileBeCompiledByDefault (files.getReference(i)))


Loading…
Cancel
Save