Browse Source

Add Core.json to dist

tags/v1.0.0
Andrew Belt 6 years ago
parent
commit
d5280bd5f7
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      Makefile

+ 3
- 3
Makefile View File

@@ -100,7 +100,7 @@ ifdef ARCH_LIN
mkdir -p dist/Rack mkdir -p dist/Rack
cp $(TARGET) dist/Rack/ cp $(TARGET) dist/Rack/
$(STRIP) -s dist/Rack/$(TARGET) $(STRIP) -s dist/Rack/$(TARGET)
cp -R LICENSE* res template.vcv dist/Rack/
cp -R LICENSE* res Core.json template.vcv dist/Rack/
# Manually check that no nonstandard shared libraries are linked # Manually check that no nonstandard shared libraries are linked
ldd dist/Rack/$(TARGET) ldd dist/Rack/$(TARGET)
cp plugins/Fundamental/dist/*.zip dist/Rack/Fundamental.zip cp plugins/Fundamental/dist/*.zip dist/Rack/Fundamental.zip
@@ -116,7 +116,7 @@ ifdef ARCH_MAC
cp $(TARGET) dist/$(TARGET).app/Contents/MacOS/ cp $(TARGET) dist/$(TARGET).app/Contents/MacOS/
$(STRIP) -S dist/$(TARGET).app/Contents/MacOS/$(TARGET) $(STRIP) -S dist/$(TARGET).app/Contents/MacOS/$(TARGET)
mkdir -p dist/$(TARGET).app/Contents/Resources mkdir -p dist/$(TARGET).app/Contents/Resources
cp -R LICENSE* res template.vcv icon.icns dist/$(TARGET).app/Contents/Resources
cp -R LICENSE* res Core.json template.vcv icon.icns dist/$(TARGET).app/Contents/Resources


# Manually check that no nonstandard shared libraries are linked # Manually check that no nonstandard shared libraries are linked
otool -L dist/$(TARGET).app/Contents/MacOS/$(TARGET) otool -L dist/$(TARGET).app/Contents/MacOS/$(TARGET)
@@ -134,7 +134,7 @@ ifdef ARCH_WIN
mkdir -p dist/Rack mkdir -p dist/Rack
cp $(TARGET) dist/Rack/ cp $(TARGET) dist/Rack/
$(STRIP) -s dist/Rack/$(TARGET) $(STRIP) -s dist/Rack/$(TARGET)
cp -R LICENSE* res template.vcv dist/Rack/
cp -R LICENSE* res Core.json template.vcv dist/Rack/
cp /mingw64/bin/libwinpthread-1.dll dist/Rack/ cp /mingw64/bin/libwinpthread-1.dll dist/Rack/
cp /mingw64/bin/libstdc++-6.dll dist/Rack/ cp /mingw64/bin/libstdc++-6.dll dist/Rack/
cp /mingw64/bin/libgcc_s_seh-1.dll dist/Rack/ cp /mingw64/bin/libgcc_s_seh-1.dll dist/Rack/


Loading…
Cancel
Save