CMakeLists: Link bochs in privately where applicable

Everything that links in core doesn't need to see anything related to bochs, because it's only used internally.
Anything else that relies on bochs should be linking it in explicitly.
This commit is contained in:
Lioncash 2018-04-07 19:53:19 -04:00
commit f1be7cd4a0
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
5 changed files with 6 additions and 2 deletions

View file

@ -12,4 +12,6 @@ add_dolphin_test(NandPathsTest NandPathsTest.cpp)
add_dolphin_test(SPSCQueueTest SPSCQueueTest.cpp)
add_dolphin_test(StringUtilTest StringUtilTest.cpp)
add_dolphin_test(SwapTest SwapTest.cpp)
add_dolphin_test(x64EmitterTest x64EmitterTest.cpp)
target_link_libraries(x64EmitterTest PRIVATE bdisasm)