CMake: remove extraneous TestUtils directory

This commit is contained in:
Michael Maltese
2017-05-20 16:08:50 -07:00
parent 87d64afe19
commit 41fb6db6e3
4 changed files with 3 additions and 13 deletions

View File

@ -11,7 +11,7 @@ file(MAKE_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests)
# Otherwise CMake inserts the library after core, but before other core
# dependencies like videocommon which also use Host_ functions, which makes the
# GNU linker complain.
add_library(unittests_stubhost OBJECT TestUtils/StubHost.cpp)
add_library(unittests_stubhost OBJECT StubHost.cpp)
macro(add_dolphin_test target)
add_executable(${target} EXCLUDE_FROM_ALL
@ -27,8 +27,6 @@ macro(add_dolphin_test target)
add_test(NAME ${target} COMMAND ${target})
endmacro()
add_subdirectory(TestUtils)
add_subdirectory(Common)
add_subdirectory(Core)
add_subdirectory(VideoCommon)