mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 01:24:41 -06:00
link SDL3 earlier
This commit is contained in:
parent
aa7c82dda3
commit
7a63ea3c32
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user