1. 程式人生 > >qt資源加載出錯

qt資源加載出錯

源文件 details 重新 圖片 pre tail 資源加載 dma 移動位置

-1: error: No rule to make target ‘../InteractivePlayer/style.qss‘, needed by ‘debug/qrc_res.cpp‘. Stop.

問題出現:

我把添加qss資源文件 重新刪除 移動位置。

再次添加新的資源文件,編譯的時候出錯。

解決:

1. .pro目錄下

RESOURCES += \
    res.qrc
是表示資源文件, 其會被生成一個qrc_res.cpp 文件。

2.清除編譯目錄(debug/release)下的make文件。

資源文件的加載路徑並不是真實路徑,需要添加增加的前綴。

技術分享圖片

樣式表添加: https://blog.csdn.net/qq_31073871/article/details/79943093

qss 文件高亮設置: https://blog.csdn.net/liang19890820/article/details/51699473

qt 文件目錄問題: https://blog.csdn.net/me_badman/article/details/54864100

qt資源加載出錯