forked from mirror/libbpg
8 lines
358 B
Bash
8 lines
358 B
Bash
#!/bin/sh
|
|
|
|
# This will generate a cross-compile environment, compiling an x86_64
|
|
# Win64 target from a 32bit MinGW32 host environment. If your MinGW
|
|
# install is 64bit, you can use the native compiler batch file:
|
|
# make-Makefiles.sh
|
|
|
|
cmake -G "MSYS Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain-x86_64-w64-mingw32.cmake ../../source && cmake-gui ../../source
|