CMakeLists: Change DiscIO dependency from common to core
DiscIO depends on some IOS functions and other functions, which are in Core and not Common. This results in link errors if using DiscIO on its own (which is why DolphinTool had a listed dependency on videocommon; videocommon has a dependency on core so adding that made things build).
This commit is contained in:
parent
e8bbfc26fe
commit
7935e614d1
|
@ -66,7 +66,7 @@ add_library(discio
|
|||
|
||||
target_link_libraries(discio
|
||||
PUBLIC
|
||||
common
|
||||
core
|
||||
BZip2::BZip2
|
||||
lzma
|
||||
zstd
|
||||
|
|
|
@ -14,7 +14,6 @@ target_link_libraries(dolphin-tool
|
|||
PRIVATE
|
||||
discio
|
||||
uicommon
|
||||
videocommon
|
||||
cpp-optparse
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue