2014-08-02 06:23:52 +00:00
|
|
|
macro(add_dolphin_test target srcs)
|
|
|
|
# Since this is a Core dependency, it can't be linked as a library and has
|
|
|
|
# to be linked as an object file. Otherwise CMake inserts the library after
|
|
|
|
# core, but before other core dependencies like videocommon which also use
|
|
|
|
# Host_ functions.
|
|
|
|
set(srcs2 ${srcs} ${CMAKE_SOURCE_DIR}/Source/UnitTests/TestUtils/StubHost.cpp)
|
2014-10-27 19:37:40 +00:00
|
|
|
add_executable(Test_${target} EXCLUDE_FROM_ALL ${srcs2})
|
|
|
|
set_target_properties(Test_${target} PROPERTIES OUTPUT_NAME Tests/${target})
|
|
|
|
add_custom_command(TARGET Test_${target}
|
2014-03-03 03:03:42 +00:00
|
|
|
PRE_LINK
|
|
|
|
COMMAND mkdir -p ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests)
|
2014-10-27 19:37:40 +00:00
|
|
|
target_link_libraries(Test_${target} core gtest)
|
|
|
|
add_dependencies(unittests Test_${target})
|
2014-03-02 03:44:56 +00:00
|
|
|
add_test(NAME ${target} COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests/${target})
|
|
|
|
endmacro(add_dolphin_test)
|
|
|
|
|
2014-08-02 06:23:52 +00:00
|
|
|
add_subdirectory(TestUtils)
|
|
|
|
|
2014-03-09 13:27:04 +00:00
|
|
|
add_subdirectory(Common)
|
2014-03-02 03:44:56 +00:00
|
|
|
add_subdirectory(Core)
|
2014-08-02 06:42:36 +00:00
|
|
|
add_subdirectory(VideoCommon)
|