Browse Source

Introjucer: fix to AAX install script and VC2008 optimisation level.

tags/2021-05-28
jules 13 years ago
parent
commit
24667e7f48
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      extras/Introjucer/Source/BinaryData/AudioPluginXCodeScript.txt
  2. +1
    -1
      extras/Introjucer/Source/Project Saving/jucer_ProjectExport_MSVC.h

+ 1
- 1
extras/Introjucer/Source/BinaryData/AudioPluginXCodeScript.txt View File

@@ -8,7 +8,7 @@ original=$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME
copyAU=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'AudioUnit' | wc -l`
copyVST=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'VSTPlugin' | wc -l`
copyRTAS=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'CProcess' | wc -l`
copyAAX=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'GetEffectDescriptions' | wc -l`
copyAAX=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'ACFStartup' | wc -l`
if [ $copyAU -gt 0 ]; then
echo "Copying to AudioUnit folder..."


+ 1
- 1
extras/Introjucer/Source/Project Saving/jucer_ProjectExport_MSVC.h View File

@@ -746,7 +746,7 @@ protected:
XmlElement* compiler = createToolElement (xml, "VCCLCompilerTool");
const int optimiseLevel = config.getOptimisationLevelInt();
compiler->setAttribute ("Optimization", optimiseLevel <= 1 ? "0" : (optimiseLevel == 2 ? "1" : "2"));
compiler->setAttribute ("Optimization", optimiseLevel <= 1 ? "0" : (optimiseLevel == 2 ? "1" : "3"));
if (isDebug)
{


Loading…
Cancel
Save