diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-04-07 19:53:19 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-04-08 04:59:58 -0400 |
| commit | f1be7cd4a0b1ba2b755182eb4e0f2fa0a8c418f0 (patch) | |
| tree | 8ecf95a161198efcde2ad374b6af084639642a99 /Source/UnitTests/Common | |
| parent | 75574b7b97faf2500e33761d670c22e45b7b9fd7 (diff) | |
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.
Diffstat (limited to 'Source/UnitTests/Common')
| -rw-r--r-- | Source/UnitTests/Common/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
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) |
