QT5: hello world
1. 安裝 QT5
% brew install qt5
相關會裝在 /usr/local/opt/qt5 下,
所以 profile 的 PATH 可以加上:
export PATH="/usr/local/opt/qt5/bin:$PATH"
2. 程式 - github
hello_world.cpp
(1) % qmake -project
會產生 hello_world.pro, 其中可以加上
QT += widgets
(2) % qmake
會產生 Makefile
(3) % make
會產生 hello_world 執行檔
MacOS 的話會在 ./hello_world.app/Contents/MacOS/Hello_world
執行:
留言
張貼留言