mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
CMake: Fix build errors exposed by making common dependent on fmt
This commit is contained in:
@ -8,6 +8,7 @@ add_library(androidcommon STATIC
|
||||
target_link_libraries(androidcommon
|
||||
PRIVATE
|
||||
android
|
||||
common
|
||||
log
|
||||
"-Wl,--no-warn-mismatch"
|
||||
"-Wl,--whole-archive"
|
||||
|
@ -10,6 +10,7 @@ add_library(main SHARED
|
||||
target_link_libraries(main
|
||||
PRIVATE
|
||||
androidcommon
|
||||
common
|
||||
core
|
||||
uicommon
|
||||
)
|
||||
|
@ -75,4 +75,11 @@ if(WIN32)
|
||||
)
|
||||
endif()
|
||||
|
||||
target_link_libraries(audiocommon PRIVATE cubeb SoundTouch FreeSurround)
|
||||
target_link_libraries(audiocommon
|
||||
PUBLIC
|
||||
common
|
||||
|
||||
PRIVATE
|
||||
cubeb
|
||||
SoundTouch
|
||||
FreeSurround)
|
||||
|
@ -58,6 +58,7 @@ add_library(discio
|
||||
|
||||
target_link_libraries(discio
|
||||
PUBLIC
|
||||
common
|
||||
BZip2::BZip2
|
||||
LibLZMA::LibLZMA
|
||||
zstd
|
||||
|
Reference in New Issue
Block a user