IOWOW

Cross-compilation for windows

Prerequisites

  sudo apt-get install bison flex libtool ruby \
       scons intltool libtool-bin p7zip-full \
       gperf lzip libgdk-pixbuf2.0-dev wine64

Prepare MXE cross environment (http://mxe.cc)


git submodule update --init

nano ./mxe/settings.mk

JOBS := 1
MXE_TARGETS := x86_64-w64-mingw32.static
LOCAL_PKG_LIST := cunit libiberty	
.DEFAULT local-pkg-list:
local-pkg-list: $(LOCAL_PKG_LIST)


cd ./mxe
make

Cross compilation


export MXE_HOME=<path to project>/mxe

mkdir ./build
cd  ./build

cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_TOOLCHAIN_FILE=../win64-tc.cmake \
         -DBUILD_TESTS=OFF -DTEST_TOOL_CMD=wine

make package