📄 setup-mingw-cross-compiling
字号:
#!/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.0.0/mkspecs/win32-g++ wpa_gui.pro -o Makefilecat Makefile.Release | sed s%qt4/lib%qt4-win/4.0.0/lib%g | sed s%qt4/include%qt4-win/4.0.0/include%g > tmp.Makefile.Release &&mv -f tmp.Makefile.Release Makefile.Release
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -