2017-01-26 03:59:44 +02:00
|
|
|
set(LIBS core gtest_main)
|
2015-01-03 14:17:57 +02:00
|
|
|
if(APPLE)
|
2014-10-29 06:01:41 +02:00
|
|
|
list(APPEND LIBS ${FOUNDATION_LIBRARY} ${CORESERV_LIBRARY})
|
|
|
|
endif()
|
2015-02-19 00:24:30 +02:00
|
|
|
if(ANDROID)
|
|
|
|
set(LIBS ${LIBS} android log)
|
|
|
|
endif()
|
2016-06-08 20:49:46 +03:00
|
|
|
file(MAKE_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests)
|
2014-08-02 09:23:52 +03: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 21:37:40 +02:00
|
|
|
add_executable(Test_${target} EXCLUDE_FROM_ALL ${srcs2})
|
2017-02-03 05:19:23 +02:00
|
|
|
set_target_properties(Test_${target} PROPERTIES
|
|
|
|
OUTPUT_NAME Tests/${target}
|
|
|
|
FOLDER Tests
|
|
|
|
)
|
2014-10-29 06:01:41 +02:00
|
|
|
target_link_libraries(Test_${target} ${LIBS})
|
2014-10-27 21:37:40 +02:00
|
|
|
add_dependencies(unittests Test_${target})
|
2014-03-02 05:44:56 +02:00
|
|
|
add_test(NAME ${target} COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests/${target})
|
2017-01-25 07:29:30 +02:00
|
|
|
endmacro()
|
2014-03-02 05:44:56 +02:00
|
|
|
|
2014-08-02 09:23:52 +03:00
|
|
|
add_subdirectory(TestUtils)
|
|
|
|
|
2014-03-09 15:27:04 +02:00
|
|
|
add_subdirectory(Common)
|
2014-03-02 05:44:56 +02:00
|
|
|
add_subdirectory(Core)
|
2014-08-02 09:42:36 +03:00
|
|
|
add_subdirectory(VideoCommon)
|