This commit is contained in:
Samuel 2026-07-07 21:47:18 +00:00 committed by GitHub
commit a4e4d518e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -211,6 +211,10 @@ set_target_properties(CemuBin PROPERTIES
OUTPUT_NAME "${OUTPUT_NAME}"
)
if(ENABLE_SDL)
target_link_libraries(CemuBin PRIVATE SDL3::SDL3)
endif()
target_link_libraries(CemuBin PRIVATE
CemuAudio
CemuCafe
@ -222,10 +226,6 @@ target_link_libraries(CemuBin PRIVATE
CemuUtil
)
if(ENABLE_SDL)
target_link_libraries(CemuBin PRIVATE SDL3::SDL3)
endif()
if(UNIX AND NOT APPLE)
# due to nasm output some linkers will make stack executable
# cemu does not require this so we explicity disable it