mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-28 14:23:18 +00:00
fix: move trophy pngs to src/images (#2519)
* fix: move trophy pngs to src/images * Fix pointers to trophy files --------- Co-authored-by: rainmakerv2 <30595646+jpau02@users.noreply.github.com>
This commit is contained in:
parent
eac1daa5f7
commit
15d10e47ea
8 changed files with 13 additions and 18 deletions
|
@ -954,12 +954,6 @@ set(QT_GUI src/qt_gui/about_dialog.cpp
|
|||
)
|
||||
endif()
|
||||
|
||||
set(RESOURCEFOLDER Resources/bronze.png
|
||||
Resources/gold.png
|
||||
Resources/platinum.png
|
||||
Resources/silver.png
|
||||
)
|
||||
|
||||
if (ENABLE_QT_GUI)
|
||||
qt_add_executable(shadps4
|
||||
${AUDIO_CORE}
|
||||
|
@ -971,7 +965,6 @@ if (ENABLE_QT_GUI)
|
|||
${SHADER_RECOMPILER}
|
||||
${VIDEO_CORE}
|
||||
${EMULATOR}
|
||||
${RESOURCEFOLDER}
|
||||
src/images/shadPS4.icns
|
||||
)
|
||||
else()
|
||||
|
@ -984,7 +977,6 @@ else()
|
|||
${SHADER_RECOMPILER}
|
||||
${VIDEO_CORE}
|
||||
${EMULATOR}
|
||||
${RESOURCEFOLDER}
|
||||
src/main.cpp
|
||||
src/emulator.cpp
|
||||
src/emulator.h
|
||||
|
@ -1117,7 +1109,10 @@ include(CMakeRC)
|
|||
cmrc_add_resource_library(embedded-resources
|
||||
ALIAS res::embedded
|
||||
NAMESPACE res
|
||||
${RESOURCEFOLDER})
|
||||
src/images/bronze.png
|
||||
src/images/gold.png
|
||||
src/images/platinum.png
|
||||
src/images/silver.png)
|
||||
|
||||
target_link_libraries(shadps4 PRIVATE res::embedded)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue