mirror of
https://github.com/syncthing/syncthing-macos.git
synced 2026-05-17 12:00:37 +00:00
c67c156cc0
Do not lock executable path at the application bundle location. Fixes #228
21 lines
1.2 KiB
Makefile
21 lines
1.2 KiB
Makefile
all: debug
|
|
debug:
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Debug -scheme Pods-syncthing
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Debug -scheme syncthing
|
|
debug-dist:
|
|
mkdir -p Build/Products/Debug/dist
|
|
cp -r Build/Products/Debug/Syncthing.app Build/Products/Debug/dist
|
|
debug-dmg:
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Debug -scheme Pods-syncthing
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Debug -scheme syncthing-dmg
|
|
release:
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Release -scheme Pods-syncthing
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Release -scheme syncthing
|
|
release-dmg:
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Release -scheme Pods-syncthing
|
|
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Release -scheme syncthing-dmg
|
|
release-update:
|
|
source ./venv/bin/activate && ./cmd/update-release.py
|
|
clean:
|
|
rm -Rf Build Index Logs ModuleCache.noindex info.plist
|