diff options
| author | xiphon <xiphon@protonmail.com> | 2020-06-21 00:08:37 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-06-21 02:03:26 +0000 |
| commit | e1e862bce49467e0cafb18c837eeecb7fd505bb4 (patch) | |
| tree | 059a08c8d5e3eca6c3b3bbbe56fc6f4dfcfd01c7 /Makefile | |
| parent | 0b2e74cdb57c16e0036f390d30008f3046d0b28c (diff) | |
| download | monzero-gui-e1e862bce49467e0cafb18c837eeecb7fd505bb4.tar.gz monzero-gui-e1e862bce49467e0cafb18c837eeecb7fd505bb4.tar.xz monzero-gui-e1e862bce49467e0cafb18c837eeecb7fd505bb4.zip | |
cmake: implement Linux 'release-static' build target
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,9 @@ scanner: release: mkdir -p $(builddir)/release && cd $(builddir)/release && cmake -D DEV_MODE=$(or ${DEV_MODE},OFF) -D ARCH="x86-64" -D CMAKE_BUILD_TYPE=Release $(topdir) && $(MAKE) +release-static: + mkdir -p $(builddir)/release && cd $(builddir)/release && cmake -D STATIC=ON -D DEV_MODE=$(or ${DEV_MODE},OFF) -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=Release $(topdir) && $(MAKE) + debug-static-win64: mkdir -p $(builddir)/debug && cd $(builddir)/debug && cmake -D STATIC=ON -G "MSYS Makefiles" -D DEV_MODE=$(or ${DEV_MODE},ON) -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=Debug -D BUILD_TAG="win-x64" -D CMAKE_TOOLCHAIN_FILE=$(topdir)/cmake/64-bit-toolchain.cmake -D MSYS2_FOLDER=$(shell cd ${MINGW_PREFIX}/.. && pwd -W) -D MINGW=ON $(topdir) && $(MAKE) |
