文章目录 方式一:方式二:qrc的使用 两种方式 方式一: 创建一个qrc文件,在qt_add_executable 中直接添加 qt_add_executable(helloworld main.cpp imageresources.qrc ) 方式二: 使用 qt_add_resources qt_add_resources(helloworld "app_images" PREFIX "/" FILES images/logo.png images/splashscreen.png ) qrc的使用