From f1be7cd4a0b1ba2b755182eb4e0f2fa0a8c418f0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 7 Apr 2018 19:53:19 -0400 Subject: 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. --- Source/UnitTests/Common/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Source/UnitTests/Common') diff --git a/Source/UnitTests/Common/CMakeLists.txt b/Source/UnitTests/Common/CMakeLists.txt index 6736348c8b..7154e86131 100644 --- a/Source/UnitTests/Common/CMakeLists.txt +++ b/Source/UnitTests/Common/CMakeLists.txt @@ -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) -- cgit v1.2.3