setup-mingw-cross-compiling

来自「IEEE802.11 a/b/g 客户端应用程序源代码」· 代码 · 共 12 行

TXT
12
字号
#!/bin/sh# qmake seems to be forcing include and lib paths from the original build# and I have no idea how to change these. For now, just override the# directories in the Makefile.Release file after qmake run.qmake -spec /q/jm/qt4-win/4.3.3/mkspecs/win32-g++ wpa_gui.pro -o Makefilecat Makefile.Release |    sed s%/usr/lib/qt4%/q/jm/qt4-win/4.3.3/lib%g |    sed s%/usr/include/qt4%/q/jm/qt4-win/4.3.3/include%g > tmp.Makefile.Release &&mv -f tmp.Makefile.Release Makefile.Release

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?