Try to get MinGW-w64 properly configured

This commit is contained in:
Fletcher T. Penney 2015-11-09 07:23:13 -05:00
parent db93d84d96
commit 88c3f9a354
3 changed files with 13 additions and 4 deletions

View File

@ -32,19 +32,19 @@ xcode: $(BUILD_DIR)
.PHONY : windows
windows: $(BUILD_DIR)
cd $(BUILD_DIR); touch README.html; \
cmake -DCMAKE_TOOLCHAIN_FILE=../tools/Toolchain-mingw64.cmake -DCMAKE_BUILD_TYPE=Release ..
cmake -DCMAKE_TOOLCHAIN_FILE=../tools/Toolchain-MinGW-w64-64bit.cmake -DCMAKE_BUILD_TYPE=Release ..
# Build Windows zip file using MinGW on *nix
.PHONY : windows-zip
windows-zip: $(BUILD_DIR)
cd $(BUILD_DIR); touch README.html; \
cmake -DCMAKE_TOOLCHAIN_FILE=../tools/Toolchain-mingw64.cmake -DCMAKE_BUILD_TYPE=Release -DZIP=1 ..
cmake -DCMAKE_TOOLCHAIN_FILE=../tools/Toolchain-MinGW-w64-64bit.cmake -DCMAKE_BUILD_TYPE=Release -DZIP=1 ..
# Cross-compile for Windows using MinGW on *nix (32-bit)
.PHONY : windows-32
windows-32: $(BUILD_DIR)
cd $(BUILD_DIR); touch README.html; \
cmake -DCMAKE_TOOLCHAIN_FILE=../tools/Toolchain-mingw32.cmake -DCMAKE_BUILD_TYPE=Release ..
cmake -DCMAKE_TOOLCHAIN_FILE=../tools/Toolchain-MinGW-w64-32bit.cmake -DCMAKE_BUILD_TYPE=Release ..
# Build Windows zip file using MinGW on *nix (32-bit)
.PHONY : windows-zip-32

View File

@ -1,4 +1,4 @@
# Settings for compiling for Windows 64-bit machines
# Settings for compiling for Windows 32-bit machines using MinGW-w64
set (CMAKE_SYSTEM_NAME Windows)

View File

@ -0,0 +1,9 @@
# Settings for compiling for Windows 64-bit machines using MinGW-w64
set (CMAKE_SYSTEM_NAME Windows)
set (CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
set (CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
set (CMAKE_RC_COMPILER x86_64-w64-mingw32-windres)
set (CMAKE_FIND_ROOT_PATH /usr/bin)