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:
Pokechu22 2022-01-16 13:29:51 -08:00
parent e8bbfc26fe
commit 7935e614d1
2 changed files with 1 additions and 2 deletions

View File

@ -66,7 +66,7 @@ add_library(discio
target_link_libraries(discio
PUBLIC
common
core
BZip2::BZip2
lzma
zstd

View File

@ -14,7 +14,6 @@ target_link_libraries(dolphin-tool
PRIVATE
discio
uicommon
videocommon
cpp-optparse
)