KXStudio scripts and misc stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
615B

  1. #!/bin/bash
  2. export PATH=/opt/mingw32/bin:/opt/mingw32/i686-w64-mingw32/bin:$PATH
  3. export AR=i686-w64-mingw32-ar
  4. export CC=i686-w64-mingw32-gcc
  5. export CXX=i686-w64-mingw32-g++
  6. export MOC=i686-w64-mingw32-moc
  7. export RCC=i686-w64-mingw32-rcc
  8. export UIC=i686-w64-mingw32-uic
  9. export STRIP=i686-w64-mingw32-strip
  10. export WINDRES=i686-w64-mingw32-windres
  11. export PKGCONFIG=i686-w64-mingw32-pkg-config
  12. export PKG_CONFIG_PATH=/opt/mingw32/lib/pkgconfig
  13. export CFLAGS="-DPTW32_STATIC_LIB -I/opt/mingw32/include"
  14. export CXXFLAGS="-DPTW32_STATIC_LIB -DFLUIDSYNTH_NOT_A_DLL -I/opt/mingw32/include"
  15. export WIN32=true
  16. exec "$@"