aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorphilkode <philkode@protonmail.com>2018-05-31 10:40:00 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-05-31 10:49:24 +0100
commit14f0d38cd6b5ea7329180c73da5f497bee6eb5f0 (patch)
tree0a183ae04017e0cd9380c093eb325237bf30e2ee /Makefile
parentMerge pull request #3251 (diff)
downloadmonero-14f0d38cd6b5ea7329180c73da5f497bee6eb5f0.tar.xz
Incorporate Window debug build targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d0be9bcd6..41e8805d4 100644
--- a/Makefile
+++ b/Makefile
@@ -49,6 +49,14 @@ debug-static-all:
mkdir -p build/debug
cd build/debug && cmake -D BUILD_TESTS=ON -D STATIC=ON -D CMAKE_BUILD_TYPE=Debug ../.. && $(MAKE)
+debug-static-win64:
+ mkdir -p build/debug
+ cd build/debug && cmake -G "MSYS Makefiles" -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=Debug -D BUILD_TAG="win-x64" -D CMAKE_TOOLCHAIN_FILE=../../cmake/64-bit-toolchain.cmake -D MSYS2_FOLDER=c:/msys64 ../.. && $(MAKE)
+
+debug-static-win32:
+ mkdir -p build/debug
+ cd build/debug && cmake -G "MSYS Makefiles" -D STATIC=ON -D ARCH="i686" -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=Debug -D BUILD_TAG="win-x32" -D CMAKE_TOOLCHAIN_FILE=../../cmake/32-bit-toolchain.cmake -D MSYS2_FOLDER=c:/msys32 ../.. && $(MAKE)
+
cmake-release:
mkdir -p build/release
cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../..