mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-13 23:30:02 -05:00
mingw: add required targets for linking
This commit is contained in:
parent
65b1337eba
commit
fb608c06e9
|
|
@ -400,3 +400,7 @@ if(MSVC)
|
|||
# Add precompiled header
|
||||
target_link_libraries(common PRIVATE use_pch)
|
||||
endif()
|
||||
|
||||
if(MINGW)
|
||||
target_link_libraries(common PRIVATE qwave setupapi cfgmgr32)
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -836,6 +836,14 @@ if(MSVC)
|
|||
target_link_libraries(core PRIVATE use_pch)
|
||||
endif()
|
||||
|
||||
if(MINGW)
|
||||
target_link_libraries(core
|
||||
PRIVATE
|
||||
bthprops
|
||||
hid
|
||||
)
|
||||
endif()
|
||||
|
||||
if(USE_RETRO_ACHIEVEMENTS)
|
||||
target_link_libraries(core PUBLIC rcheevos)
|
||||
target_compile_definitions(core PUBLIC -DUSE_RETRO_ACHIEVEMENTS)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user