Fork me on GitHub

11/17/2010

Qt 在 mac 下用 g++ compile

將程式寫好之後 在路徑下

1. qmake -project : 產生 .pro 檔案

2. mac {
        CONFIG -= app_bundle
    }
    
不要 Makefile 創建 app bundle
    
3. 直接 qmake 會產生 Xcode project, qmake -spec macx-g++ 則會生成一個 makefile

4. make 輸出執行檔

參考資料:How to compile a simple Qt and c++ application using g++ on mac os x?

...

No comments:

Post a Comment