592 lines
20 KiB
Makefile
592 lines
20 KiB
Makefile
# Copyright (c) 2019-2020 Status Research & Development GmbH. Licensed under
|
|
# either of:
|
|
# - Apache License, version 2.0
|
|
# - MIT license
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
# according to those terms.
|
|
|
|
SHELL := bash # the shell used internally by Make
|
|
|
|
# used inside the included makefiles
|
|
BUILD_SYSTEM_DIR := vendor/nimbus-build-system
|
|
|
|
# we don't want an error here, so we can handle things later, in the ".DEFAULT" target
|
|
-include $(BUILD_SYSTEM_DIR)/makefiles/variables.mk
|
|
|
|
.PHONY: \
|
|
all \
|
|
bottles \
|
|
check-pkg-target-linux \
|
|
check-pkg-target-macos \
|
|
check-pkg-target-windows \
|
|
clean \
|
|
deps \
|
|
fleets-remove \
|
|
fleets-update \
|
|
nim_status_client \
|
|
nim_windows_launcher \
|
|
pkg \
|
|
pkg-linux \
|
|
pkg-macos \
|
|
pkg-windows \
|
|
run \
|
|
run-linux \
|
|
run-macos \
|
|
run-windows \
|
|
status-go \
|
|
keycard-go \
|
|
update
|
|
|
|
ifeq ($(NIM_PARAMS),)
|
|
# "variables.mk" was not included, so we update the submodules.
|
|
GIT_SUBMODULE_UPDATE := git submodule update --init --recursive
|
|
.DEFAULT:
|
|
+@ echo -e "Git submodules not found. Running '$(GIT_SUBMODULE_UPDATE)'.\n"; \
|
|
$(GIT_SUBMODULE_UPDATE); \
|
|
echo
|
|
# Now that the included *.mk files appeared, and are newer than this file, Make will restart itself:
|
|
# https://www.gnu.org/software/make/manual/make.html#Remaking-Makefiles
|
|
#
|
|
# After restarting, it will execute its original goal, so we don't have to start a child Make here
|
|
# with "$(MAKE) $(MAKECMDGOALS)". Isn't hidden control flow great?
|
|
|
|
else # "variables.mk" was included. Business as usual until the end of this file.
|
|
|
|
all: nim_status_client
|
|
|
|
# must be included after the default target
|
|
-include $(BUILD_SYSTEM_DIR)/makefiles/targets.mk
|
|
|
|
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
|
|
detected_OS := Windows
|
|
else
|
|
detected_OS := $(strip $(shell uname))
|
|
endif
|
|
|
|
ifeq ($(detected_OS),Darwin)
|
|
CFLAGS := -mmacosx-version-min=10.14
|
|
export CFLAGS
|
|
CGO_CFLAGS := -mmacosx-version-min=10.14
|
|
export CGO_CFLAGS
|
|
LIBSTATUS_EXT := dylib
|
|
MACOSX_DEPLOYMENT_TARGET := 10.14
|
|
export MACOSX_DEPLOYMENT_TARGET
|
|
PKG_TARGET := pkg-macos
|
|
RUN_TARGET := run-macos
|
|
else ifeq ($(detected_OS),Windows)
|
|
LIBSTATUS_EXT := dll
|
|
PKG_TARGET := pkg-windows
|
|
QRCODEGEN_MAKE_PARAMS := CC=gcc
|
|
RUN_TARGET := run-windows
|
|
VCINSTALLDIR ?= C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\
|
|
export VCINSTALLDIR
|
|
else
|
|
LIBSTATUS_EXT := so
|
|
PKG_TARGET := pkg-linux
|
|
RUN_TARGET := run-linux
|
|
endif
|
|
|
|
check-pkg-target-linux:
|
|
ifneq ($(detected_OS),Linux)
|
|
$(error The pkg-linux target must be run on Linux)
|
|
endif
|
|
|
|
check-pkg-target-macos:
|
|
ifneq ($(detected_OS),Darwin)
|
|
$(error The pkg-macos target must be run on macOS)
|
|
endif
|
|
|
|
check-pkg-target-windows:
|
|
ifneq ($(detected_OS),Windows)
|
|
$(error The pkg-windows target must be run on Windows)
|
|
endif
|
|
|
|
ifeq ($(detected_OS),Darwin)
|
|
BOTTLES_DIR := $(shell pwd)/bottles
|
|
BOTTLES := $(addprefix $(BOTTLES_DIR)/,hunspell openssl@1.1 pcre)
|
|
|
|
$(BOTTLES): | $(BOTTLES_DIR)
|
|
echo -e "\e[92mFetching:\e[39m $(notdir $@) bottle"
|
|
./scripts/fetch-brew-bottle.sh $(notdir $@)
|
|
|
|
$(BOTTLES_DIR):
|
|
echo -e "\e[92mUpdating:\e[39m macOS Homebrew"
|
|
if [[ $$(stat -f %u /usr/local/var/homebrew) -ne "$${UID}" ]]; then \
|
|
echo "Missing permissions to update Homebrew formulae!" >&2; \
|
|
else \
|
|
brew update >/dev/null; \
|
|
mkdir -p $(BOTTLES_DIR); \
|
|
fi
|
|
|
|
bottles: $(BOTTLES)
|
|
endif
|
|
|
|
deps: | deps-common bottles
|
|
|
|
update: | update-common
|
|
|
|
# Qt5 dirs (we can't indent with tabs here)
|
|
ifneq ($(detected_OS),Windows)
|
|
QT5_PCFILEDIR := $(shell pkg-config --variable=pcfiledir Qt5Core 2>/dev/null)
|
|
QT5_LIBDIR := $(shell pkg-config --variable=libdir Qt5Core 2>/dev/null)
|
|
ifeq ($(QT5_PCFILEDIR),)
|
|
ifeq ($(QTDIR),)
|
|
$(error Cannot find your Qt5 installation. Please run "$(MAKE) QTDIR=/path/to/your/Qt5/installation/prefix ...")
|
|
else
|
|
QT5_PCFILEDIR := $(QTDIR)/lib/pkgconfig
|
|
QT5_LIBDIR := $(QTDIR)/lib
|
|
# some manually installed Qt5 instances have wrong paths in their *.pc files, so we pass the right one to the linker here
|
|
ifeq ($(detected_OS),Darwin)
|
|
NIM_PARAMS += -L:"-framework Foundation -framework Security -framework IOKit -framework CoreServices -framework LocalAuthentication"
|
|
# Fix for failures due to 'can't allocate code signature data for'
|
|
NIM_PARAMS += --passL:"-headerpad_max_install_names"
|
|
NIM_PARAMS += --passL:"-F$(QT5_LIBDIR)"
|
|
|
|
HUNSPELL := bottles/hunspell/lib/libhunspell-1.7.a
|
|
NIM_PARAMS += --passL:"$(HUNSPELL)"
|
|
|
|
export QT5_LIBDIR
|
|
else
|
|
NIM_PARAMS += --passL:"-L$(QT5_LIBDIR)"
|
|
endif
|
|
endif
|
|
endif
|
|
DOTHERSIDE := vendor/DOtherSide/build/lib/libDOtherSideStatic.a
|
|
DOTHERSIDE_CMAKE_PARAMS := -DENABLE_DYNAMIC_LIBS=OFF -DENABLE_STATIC_LIBS=ON
|
|
# order matters here, due to "-Wl,-as-needed"
|
|
NIM_PARAMS += --passL:"$(DOTHERSIDE)" --passL:"$(shell PKG_CONFIG_PATH="$(QT5_PCFILEDIR)" pkg-config --libs Qt5Core Qt5Qml Qt5Gui Qt5Quick Qt5QuickControls2 Qt5Widgets Qt5Svg)"
|
|
else
|
|
DOTHERSIDE := vendor/DOtherSide/build/lib/Release/DOtherSide.dll
|
|
DOTHERSIDE_CMAKE_PARAMS := -T"v141" -A x64 -DENABLE_DYNAMIC_LIBS=ON -DENABLE_STATIC_LIBS=OFF
|
|
NIM_PARAMS += -L:$(DOTHERSIDE)
|
|
NIM_EXTRA_PARAMS := --passL:"-lsetupapi -lhid"
|
|
endif
|
|
DOTHERSIDE_BUILD_CMD := cmake --build . --config Release $(HANDLE_OUTPUT)
|
|
|
|
|
|
|
|
ifeq ($(detected_OS),Darwin)
|
|
ifeq ("$(shell sysctl -nq hw.optional.arm64)","1")
|
|
# Building on M1 is still not supported, so in the meantime we crosscompile to amd64
|
|
DOTHERSIDE_CMAKE_PARAMS += -DCMAKE_OSX_ARCHITECTURES=x86_64
|
|
NIM_PARAMS += --cpu:amd64 --os:MacOSX --passL:"-arch x86_64" --passC:"-arch x86_64"
|
|
endif
|
|
endif
|
|
|
|
|
|
RELEASE ?= false
|
|
ifeq ($(RELEASE),false)
|
|
# We need `-d:debug` to get Nim's default stack traces
|
|
NIM_PARAMS += -d:debug
|
|
# Enable debugging symbols in DOtherSide, in case we need GDB backtraces
|
|
CFLAGS += -g
|
|
CXXFLAGS += -g
|
|
RCC_PARAMS = --no-compress
|
|
else
|
|
# Additional optimization flags for release builds are not included at present;
|
|
# adding them will involve refactoring config.nims in the root of this repo
|
|
NIM_PARAMS += -d:release
|
|
endif
|
|
|
|
NIM_PARAMS += --outdir:./bin
|
|
|
|
# App version
|
|
VERSIONFILE=VERSION
|
|
DESKTOP_VERSION=`cat $(VERSIONFILE)`
|
|
NIM_PARAMS += -d:DESKTOP_VERSION="$(DESKTOP_VERSION)"
|
|
|
|
$(DOTHERSIDE): | deps
|
|
echo -e $(BUILD_MSG) "DOtherSide"
|
|
+ cd vendor/DOtherSide && \
|
|
mkdir -p build && \
|
|
cd build && \
|
|
rm -f CMakeCache.txt && \
|
|
cmake $(DOTHERSIDE_CMAKE_PARAMS)\
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DENABLE_DOCS=OFF \
|
|
-DENABLE_TESTS=OFF \
|
|
.. $(HANDLE_OUTPUT) && \
|
|
$(DOTHERSIDE_BUILD_CMD)
|
|
|
|
STATUSGO := vendor/status-go/build/bin/libstatus.$(LIBSTATUS_EXT)
|
|
STATUSGO_LIBDIR := $(shell pwd)/$(shell dirname "$(STATUSGO)")
|
|
export STATUSGO_LIBDIR
|
|
|
|
status-go: $(STATUSGO)
|
|
$(STATUSGO): | deps
|
|
echo -e $(BUILD_MSG) "status-go"
|
|
+ cd vendor/status-go && \
|
|
$(MAKE) statusgo-shared-library $(HANDLE_OUTPUT)
|
|
|
|
|
|
KEYCARDGO := vendor/nim-keycard-go/go/keycard/build/libkeycard/libkeycard.$(LIBSTATUS_EXT)
|
|
KEYCARDGO_LIBDIR := $(shell pwd)/$(shell dirname "$(KEYCARDGO)")
|
|
export KEYCARDGO_LIBDIR
|
|
|
|
keycard-go: $(KEYCARDGO)
|
|
$(KEYCARDGO): | deps
|
|
echo -e $(BUILD_MSG) "keycard-go"
|
|
+ cd vendor/nim-keycard-go && \
|
|
$(MAKE) build-keycard-go $(HANDLE_OUTPUT)
|
|
|
|
QRCODEGEN := vendor/QR-Code-generator/c/libqrcodegen.a
|
|
|
|
$(QRCODEGEN): | deps
|
|
echo -e $(BUILD_MSG) "QR-Code-generator"
|
|
+ cd vendor/QR-Code-generator/c && \
|
|
$(MAKE) $(QRCODEGEN_MAKE_PARAMS)
|
|
|
|
FLEETS := fleets.json
|
|
$(FLEETS):
|
|
echo -e $(BUILD_MSG) "Getting latest $(FLEETS)"
|
|
curl -s https://fleets.status.im/ \
|
|
| jq --indent 4 --sort-keys . \
|
|
> $(FLEETS)
|
|
|
|
fleets-remove:
|
|
rm -f $(FLEETS)
|
|
|
|
fleets-update: fleets-remove $(FLEETS)
|
|
|
|
# When modifying files that are not tracked in UI_SOURCES (see below),
|
|
# e.g. ui/shared/img/*.svg, REBUILD_UI=true can be supplied to `make` to ensure
|
|
# a rebuild of resources.rcc: `make REBUILD_UI=true run`
|
|
REBUILD_UI ?= false
|
|
|
|
ifeq ($(REBUILD_UI),true)
|
|
$(shell touch ui/main.qml)
|
|
endif
|
|
|
|
ifeq ($(detected_OS),Darwin)
|
|
UI_SOURCES := $(shell find -E ui -type f -iregex '.*(qmldir|qml|qrc)$$' -not -iname 'resources.qrc')
|
|
else
|
|
UI_SOURCES := $(shell find ui -type f -regextype egrep -iregex '.*(qmldir|qml|qrc)$$' -not -iname 'resources.qrc')
|
|
endif
|
|
|
|
UI_RESOURCES := resources.rcc
|
|
|
|
$(UI_RESOURCES): $(UI_SOURCES)
|
|
echo -e $(BUILD_MSG) "resources.rcc"
|
|
rm -f ./resources.rcc
|
|
rm -f ./ui/resources.qrc
|
|
go run ui/generate-rcc.go -source=ui -output=ui/resources.qrc
|
|
rcc -binary $(RCC_PARAMS) ui/resources.qrc -o ./resources.rcc
|
|
|
|
rcc: $(UI_RESOURCES)
|
|
|
|
# default token is a free-tier token with limited capabilities and usage
|
|
# limits; our docs should include directions for community contributor to setup
|
|
# their own Infura account and token instead of relying on this default token
|
|
# during development
|
|
DEFAULT_TOKEN := 220a1abb4b6943a093c35d0ce4fb0732
|
|
INFURA_TOKEN ?= $(DEFAULT_TOKEN)
|
|
NIM_PARAMS += -d:INFURA_TOKEN:"$(INFURA_TOKEN)"
|
|
|
|
DEFAULT_TENOR_API_KEY := DU7DWZ27STB2
|
|
TENOR_API_KEY ?= $(DEFAULT_TENOR_API_KEY)
|
|
NIM_PARAMS += -d:TENOR_API_KEY:"$(TENOR_API_KEY)"
|
|
|
|
NIM_PARAMS += -d:chronicles_sinks=textlines[stdout],textlines[nocolors,dynamic],textlines[file,nocolors] -d:chronicles_runtime_filtering=on -d:chronicles_default_output_device=dynamic
|
|
|
|
RESOURCES_LAYOUT := -d:development
|
|
|
|
# When modifying files that are not tracked in NIM_SOURCES (see below),
|
|
# e.g. vendor/*.nim, REBUILD_NIM=true can be supplied to `make` to ensure a
|
|
# rebuild of bin/nim_status_client: `make REBUILD_NIM=true run`
|
|
# Note: it is not necessary to supply REBUILD_NIM=true after `make update`
|
|
# because that target bumps .update.timestamp
|
|
REBUILD_NIM ?= false
|
|
|
|
ifeq ($(REBUILD_NIM),true)
|
|
$(shell touch .update.timestamp)
|
|
endif
|
|
|
|
.update.timestamp:
|
|
touch .update.timestamp
|
|
|
|
NIM_SOURCES := .update.timestamp $(shell find src -type f)
|
|
|
|
ifeq ($(detected_OS),Windows)
|
|
NIM_STATUS_CLIENT := bin/nim_status_client.exe
|
|
else
|
|
NIM_STATUS_CLIENT := bin/nim_status_client
|
|
endif
|
|
|
|
$(NIM_STATUS_CLIENT): NIM_PARAMS += $(RESOURCES_LAYOUT)
|
|
$(NIM_STATUS_CLIENT): $(NIM_SOURCES) | $(DOTHERSIDE) $(STATUSGO) $(KEYCARDGO) $(QRCODEGEN) $(FLEETS) rcc deps
|
|
echo -e $(BUILD_MSG) "$@" && \
|
|
$(ENV_SCRIPT) nim c $(NIM_PARAMS) --passL:"-L$(STATUSGO_LIBDIR)" --passL:"-lstatus" --passL:"-L$(KEYCARDGO_LIBDIR)" --passL:"-lkeycard" $(NIM_EXTRA_PARAMS) --passL:"$(QRCODEGEN)" --passL:"-lm" src/nim_status_client.nim && \
|
|
[[ $$? = 0 ]] && \
|
|
(([[ $(detected_OS) = Darwin ]] && \
|
|
install_name_tool -change \
|
|
libstatus.dylib \
|
|
@rpath/libstatus.dylib \
|
|
bin/nim_status_client && \
|
|
install_name_tool -change \
|
|
libkeycard.dylib \
|
|
@rpath/libkeycard.dylib \
|
|
bin/nim_status_client) || true)
|
|
|
|
nim_status_client: force-rebuild-status-go $(NIM_STATUS_CLIENT)
|
|
|
|
_APPIMAGE_TOOL := appimagetool-x86_64.AppImage
|
|
APPIMAGE_TOOL := tmp/linux/tools/$(_APPIMAGE_TOOL)
|
|
|
|
$(APPIMAGE_TOOL):
|
|
echo -e "\e[92mFetching:\e[39m appimagetool"
|
|
rm -rf tmp/linux
|
|
mkdir -p tmp/linux/tools
|
|
wget -nv https://github.com/AppImage/AppImageKit/releases/download/continuous/$(_APPIMAGE_TOOL)
|
|
mv $(_APPIMAGE_TOOL) tmp/linux/tools/
|
|
chmod +x $(APPIMAGE_TOOL)
|
|
|
|
STATUS_CLIENT_APPIMAGE ?= pkg/Status.AppImage
|
|
STATUS_CLIENT_TARBALL ?= pkg/Status.tar.gz
|
|
STATUS_CLIENT_TARBALL_FULL ?= $(shell realpath $(STATUS_CLIENT_TARBALL))
|
|
|
|
ifeq ($(detected_OS),Linux)
|
|
FCITX5_QT := vendor/fcitx5-qt/build/qt5/platforminputcontext/libfcitx5platforminputcontextplugin.so
|
|
FCITX5_QT_CMAKE_PARAMS := -DCMAKE_BUILD_TYPE=Release -DBUILD_ONLY_PLUGIN=ON -DENABLE_QT4=OFF -DENABLE_QT5=ON
|
|
FCITX5_QT_BUILD_CMD := cmake --build . --config Release $(HANDLE_OUTPUT)
|
|
endif
|
|
|
|
$(FCITX5_QT): | deps
|
|
echo -e $(BUILD_MSG) "fcitx5-qt"
|
|
+ cd vendor/fcitx5-qt && \
|
|
mkdir -p build && \
|
|
cd build && \
|
|
rm -f CMakeCache.txt && \
|
|
cmake $(FCITX5_QT_CMAKE_PARAMS) \
|
|
.. $(HANDLE_OUTPUT) && \
|
|
$(FCITX5_QT_BUILD_CMD)
|
|
|
|
$(STATUS_CLIENT_APPIMAGE): override RESOURCES_LAYOUT := -d:production
|
|
$(STATUS_CLIENT_APPIMAGE): nim_status_client $(APPIMAGE_TOOL) nim-status.desktop $(FCITX5_QT)
|
|
rm -rf pkg/*.AppImage
|
|
rm -rf tmp/linux/dist
|
|
mkdir -p tmp/linux/dist/usr/bin
|
|
mkdir -p tmp/linux/dist/usr/lib
|
|
mkdir -p tmp/linux/dist/usr/qml
|
|
|
|
# General Files
|
|
cp bin/nim_status_client tmp/linux/dist/usr/bin
|
|
mkdir -p tmp/linux/dist/usr/bin/dictionaries
|
|
cp -R spellchecking/dictionaries tmp/linux/dist/usr/bin/dictionaries
|
|
cp nim-status.desktop tmp/linux/dist/.
|
|
cp status.svg tmp/linux/dist/status.svg
|
|
cp status.svg tmp/linux/dist/usr/.
|
|
cp -R resources.rcc tmp/linux/dist/usr/.
|
|
cp -R $(FLEETS) tmp/linux/dist/usr/.
|
|
mkdir -p tmp/linux/dist/usr/i18n
|
|
cp ui/i18n/* tmp/linux/dist/usr/i18n
|
|
|
|
# Libraries
|
|
cp -r /usr/lib/x86_64-linux-gnu/nss tmp/linux/dist/usr/lib/
|
|
cp -P /usr/lib/x86_64-linux-gnu/libgst* tmp/linux/dist/usr/lib/
|
|
cp -r /usr/lib/x86_64-linux-gnu/gstreamer-1.0 tmp/linux/dist/usr/lib/
|
|
cp -r /usr/lib/x86_64-linux-gnu/gstreamer1.0 tmp/linux/dist/usr/lib/
|
|
cp vendor/status-go/build/bin/libstatus.so tmp/linux/dist/usr/lib/
|
|
cp vendor/status-go/build/bin/libstatus.so.0 tmp/linux/dist/usr/lib/
|
|
cp $(KEYCARDGO) tmp/linux/dist/usr/lib/
|
|
|
|
echo -e $(BUILD_MSG) "AppImage"
|
|
linuxdeployqt tmp/linux/dist/nim-status.desktop -no-copy-copyright-files -qmldir=ui -qmlimport=$(QTDIR)/qml -bundle-non-qt-libs
|
|
|
|
# Qt plugins
|
|
cp $(FCITX5_QT) tmp/linux/dist/usr/plugins/platforminputcontexts/
|
|
|
|
rm tmp/linux/dist/AppRun
|
|
cp AppRun tmp/linux/dist/.
|
|
|
|
mkdir -p pkg
|
|
$(APPIMAGE_TOOL) tmp/linux/dist $(STATUS_CLIENT_APPIMAGE)
|
|
# if LINUX_GPG_PRIVATE_KEY_FILE is not set then we don't generate a signature
|
|
ifdef LINUX_GPG_PRIVATE_KEY_FILE
|
|
scripts/sign-linux-file.sh $(STATUS_CLIENT_APPIMAGE)
|
|
endif
|
|
|
|
$(STATUS_CLIENT_TARBALL): $(STATUS_CLIENT_APPIMAGE)
|
|
cd $(shell dirname $(STATUS_CLIENT_APPIMAGE)) && \
|
|
tar czvf $(STATUS_CLIENT_TARBALL_FULL) --ignore-failed-read \
|
|
$(shell basename $(STATUS_CLIENT_APPIMAGE)){,.asc}
|
|
ifdef LINUX_GPG_PRIVATE_KEY_FILE
|
|
scripts/sign-linux-file.sh $(STATUS_CLIENT_TARBALL)
|
|
endif
|
|
|
|
DMG_TOOL := node_modules/.bin/create-dmg
|
|
|
|
$(DMG_TOOL):
|
|
echo -e "\e[92mInstalling:\e[39m create-dmg"
|
|
npm i
|
|
|
|
MACOS_OUTER_BUNDLE := tmp/macos/dist/Status.app
|
|
MACOS_INNER_BUNDLE := $(MACOS_OUTER_BUNDLE)/Contents/Frameworks/QtWebEngineCore.framework/Versions/Current/Helpers/QtWebEngineProcess.app
|
|
|
|
STATUS_CLIENT_DMG ?= pkg/Status.dmg
|
|
|
|
$(STATUS_CLIENT_DMG): override RESOURCES_LAYOUT := -d:production
|
|
$(STATUS_CLIENT_DMG): nim_status_client $(DMG_TOOL)
|
|
rm -rf tmp/macos pkg/*.dmg
|
|
mkdir -p $(MACOS_OUTER_BUNDLE)/Contents/MacOS
|
|
mkdir -p $(MACOS_OUTER_BUNDLE)/Contents/Resources
|
|
cp Info.plist $(MACOS_OUTER_BUNDLE)/Contents/
|
|
cp bin/nim_status_client $(MACOS_OUTER_BUNDLE)/Contents/MacOS/
|
|
cp -R spellchecking/dictionaries $(MACOS_OUTER_BUNDLE)/Contents/MacOS/dictionaries
|
|
cp status.icns $(MACOS_OUTER_BUNDLE)/Contents/Resources/
|
|
cp status-macos.svg $(MACOS_OUTER_BUNDLE)/Contents/
|
|
cp -R resources.rcc $(MACOS_OUTER_BUNDLE)/Contents/
|
|
cp -R $(FLEETS) $(MACOS_OUTER_BUNDLE)/Contents/
|
|
mkdir -p $(MACOS_OUTER_BUNDLE)/Contents/i18n
|
|
cp ui/i18n/* $(MACOS_OUTER_BUNDLE)/Contents/i18n
|
|
|
|
echo -e $(BUILD_MSG) "app"
|
|
macdeployqt \
|
|
$(MACOS_OUTER_BUNDLE) \
|
|
-executable=$(MACOS_OUTER_BUNDLE)/Contents/MacOS/nim_status_client \
|
|
-qmldir=ui
|
|
macdeployqt \
|
|
$(MACOS_INNER_BUNDLE) \
|
|
-executable=$(MACOS_INNER_BUNDLE)/Contents/MacOS/QtWebEngineProcess
|
|
|
|
# if MACOS_CODESIGN_IDENT is not set then the outer and inner .app
|
|
# bundles are not signed
|
|
ifdef MACOS_CODESIGN_IDENT
|
|
scripts/sign-macos-pkg.sh $(MACOS_OUTER_BUNDLE) $(MACOS_CODESIGN_IDENT)
|
|
scripts/sign-macos-pkg.sh $(MACOS_INNER_BUNDLE) $(MACOS_CODESIGN_IDENT) \
|
|
--entitlements QtWebEngineProcess.plist
|
|
endif
|
|
echo -e $(BUILD_MSG) "dmg"
|
|
mkdir -p pkg
|
|
# See: https://github.com/sindresorhus/create-dmg#dmg-icon
|
|
# GraphicsMagick must be installed for create-dmg to make the custom
|
|
# DMG icon based on app icon, but should otherwise work without it
|
|
npx create-dmg \
|
|
--identity="NOBODY" \
|
|
$(MACOS_OUTER_BUNDLE) \
|
|
pkg || true
|
|
# We ignore failure above create-dmg can't skip signing.
|
|
# To work around that a dummy identity - 'NOBODY' - is specified.
|
|
# This causes non-zero exit code despite DMG being created.
|
|
# It is just not signed, hence the next command should succeed.
|
|
mv "`ls pkg/*.dmg`" $(STATUS_CLIENT_DMG)
|
|
|
|
ifdef MACOS_CODESIGN_IDENT
|
|
scripts/sign-macos-pkg.sh $(STATUS_CLIENT_DMG) $(MACOS_CODESIGN_IDENT)
|
|
endif
|
|
|
|
notarize-macos: export CHECK_INTERVAL_SEC ?= 30
|
|
notarize-macos: export CHECK_RETRY_LIMIT ?= 20
|
|
notarize-macos: export MACOS_BUNDLE_ID ?= im.status.ethereum.desktop
|
|
notarize-macos:
|
|
scripts/notarize-macos-pkg.sh $(STATUS_CLIENT_DMG)
|
|
|
|
NIM_WINDOWS_PREBUILT_DLLS ?= tmp/windows/tools/pcre.dll
|
|
|
|
$(NIM_WINDOWS_PREBUILT_DLLS):
|
|
echo -e "\e[92mFetching:\e[39m prebuilt DLLs from nim-lang.org"
|
|
rm -rf tmp/windows
|
|
mkdir -p tmp/windows/tools
|
|
cd tmp/windows/tools && \
|
|
wget -nv https://nim-lang.org/download/dlls.zip && \
|
|
unzip dlls.zip
|
|
|
|
nim_windows_launcher: | deps
|
|
$(ENV_SCRIPT) nim c -d:debug --outdir:./bin --passL:"-static-libgcc -Wl,-Bstatic,--whole-archive -lwinpthread -Wl,--no-whole-archive" src/nim_windows_launcher.nim
|
|
|
|
STATUS_CLIENT_EXE ?= pkg/Status.exe
|
|
STATUS_CLIENT_7Z ?= pkg/Status.7z
|
|
|
|
$(STATUS_CLIENT_EXE): override RESOURCES_LAYOUT := -d:production
|
|
$(STATUS_CLIENT_EXE): OUTPUT := tmp/windows/dist/Status
|
|
$(STATUS_CLIENT_EXE): INSTALLER_OUTPUT := pkg
|
|
$(STATUS_CLIENT_EXE): nim_status_client nim_windows_launcher $(NIM_WINDOWS_PREBUILT_DLLS)
|
|
rm -rf pkg/*.exe tmp/windows/dist
|
|
mkdir -p $(OUTPUT)/bin $(OUTPUT)/resources $(OUTPUT)/vendor $(OUTPUT)/resources/i18n
|
|
cat windows-install.txt | unix2dos > $(OUTPUT)/INSTALL.txt
|
|
cp status.ico status.svg resources.rcc $(FLEETS) $(OUTPUT)/resources/
|
|
cp ui/i18n/* $(OUTPUT)/resources/i18n
|
|
cp cacert.pem $(OUTPUT)/bin/cacert.pem
|
|
cp bin/nim_status_client.exe $(OUTPUT)/bin/Status.exe
|
|
cp bin/nim_windows_launcher.exe $(OUTPUT)/Status.exe
|
|
rcedit $(OUTPUT)/bin/Status.exe --set-icon $(OUTPUT)/resources/status.ico
|
|
rcedit $(OUTPUT)/Status.exe --set-icon $(OUTPUT)/resources/status.ico
|
|
cp $(DOTHERSIDE) $(STATUSGO) $(KEYCARDGO) tmp/windows/tools/*.dll $(OUTPUT)/bin/
|
|
cp "$(shell which libgcc_s_seh-1.dll)" $(OUTPUT)/bin/
|
|
cp "$(shell which libwinpthread-1.dll)" $(OUTPUT)/bin/
|
|
echo -e $(BUILD_MSG) "deployable folder"
|
|
windeployqt --compiler-runtime --qmldir ui --release \
|
|
tmp/windows/dist/Status/bin/DOtherSide.dll
|
|
mv tmp/windows/dist/Status/bin/vc_redist.x64.exe tmp/windows/dist/Status/vendor/
|
|
cp status.iss $(OUTPUT)/status.iss
|
|
# if WINDOWS_CODESIGN_PFX_PATH is not set then DLLs, EXEs are not signed
|
|
ifdef WINDOWS_CODESIGN_PFX_PATH
|
|
scripts/sign-windows-bin.sh ./tmp/windows/dist/Status
|
|
endif
|
|
echo -e $(BUILD_MSG) "exe"
|
|
mkdir -p $(INSTALLER_OUTPUT)
|
|
ISCC \
|
|
-O"$(INSTALLER_OUTPUT)" \
|
|
-D"BaseName=$(shell basename $(STATUS_CLIENT_EXE) .exe)" \
|
|
-D"Version=$(shell cat VERSION)" \
|
|
$(OUTPUT)/status.iss
|
|
ifdef WINDOWS_CODESIGN_PFX_PATH
|
|
scripts/sign-windows-bin.sh $(INSTALLER_OUTPUT)
|
|
endif
|
|
|
|
$(STATUS_CLIENT_7Z): OUTPUT := tmp/windows/dist/Status
|
|
$(STATUS_CLIENT_7Z): $(STATUS_CLIENT_EXE)
|
|
echo -e $(BUILD_MSG) "7z"
|
|
7z a $(STATUS_CLIENT_7Z) ./$(OUTPUT)
|
|
|
|
pkg: $(PKG_TARGET)
|
|
|
|
pkg-linux: check-pkg-target-linux $(STATUS_CLIENT_APPIMAGE)
|
|
|
|
tgz-linux: $(STATUS_CLIENT_TARBALL)
|
|
|
|
pkg-macos: check-pkg-target-macos $(STATUS_CLIENT_DMG)
|
|
|
|
pkg-windows: check-pkg-target-windows $(STATUS_CLIENT_EXE)
|
|
|
|
zip-windows: check-pkg-target-windows $(STATUS_CLIENT_7Z)
|
|
|
|
clean: | clean-common
|
|
rm -rf bin/* node_modules bottles/* pkg/* tmp/* $(STATUSGO) $(KEYCARDGO)
|
|
+ $(MAKE) -C vendor/DOtherSide/build --no-print-directory clean
|
|
|
|
force-rebuild-status-go:
|
|
bash ./scripts/force-rebuild-status-go.sh $(STATUSGO)
|
|
|
|
run: $(RUN_TARGET)
|
|
|
|
ICON_TOOL := node_modules/.bin/fileicon
|
|
|
|
$(ICON_TOOL):
|
|
echo -e "\e[92mInstalling:\e[39m fileicon"
|
|
npm i
|
|
|
|
# Currently not in use: https://github.com/status-im/status-desktop/pull/1858
|
|
# STATUS_PORT ?= 30306
|
|
|
|
run-linux: nim_status_client
|
|
echo -e "\e[92mRunning:\e[39m bin/nim_status_client"
|
|
LD_LIBRARY_PATH="$(QT5_LIBDIR)":"$(STATUSGO_LIBDIR)":"$(KEYCARDGO_LIBDIR)" \
|
|
./bin/nim_status_client
|
|
|
|
run-macos: nim_status_client $(ICON_TOOL)
|
|
mkdir -p bin/StatusDev.app/Contents/{MacOS,Resources}
|
|
cp Info.dev.plist bin/StatusDev.app/Contents/Info.plist
|
|
cp status-dev.icns bin/StatusDev.app/Contents/Resources/
|
|
cd bin/StatusDev.app/Contents/MacOS && \
|
|
ln -fs ../../../nim_status_client ./
|
|
npx fileicon set bin/nim_status_client status-dev.icns
|
|
echo -e "\e[92mRunning:\e[39m bin/StatusDev.app/Contents/MacOS/nim_status_client"
|
|
./bin/StatusDev.app/Contents/MacOS/nim_status_client
|
|
|
|
run-windows: nim_status_client $(NIM_WINDOWS_PREBUILT_DLLS)
|
|
echo -e "\e[92mRunning:\e[39m bin/nim_status_client.exe"
|
|
PATH="$(shell pwd)"/"$(shell dirname "$(DOTHERSIDE)")":"$(STATUSGO_LIBDIR)":"$(KEYCARDGO_LIBDIR)":"$(shell pwd)"/"$(shell dirname "$(NIM_WINDOWS_PREBUILT_DLLS)")":"$(PATH)" \
|
|
./bin/nim_status_client.exe
|
|
|
|
endif # "variables.mk" was not included
|