2014-10-29 04:01:41 +00:00
|
|
|
set(LIBS core gtest)
|
2015-01-03 12:17:57 +00:00
|
|
|
if(APPLE)
|
2014-10-29 04:01:41 +00:00
|
|
|
list(APPEND LIBS ${FOUNDATION_LIBRARY} ${CORESERV_LIBRARY})
|
|
|
|
endif()
|
2015-02-18 22:24:30 +00:00
|
|
|
if(ANDROID)
|
|
|
|
set(LIBS ${LIBS} android log)
|
|
|
|
endif()
|
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-29 04:01:41 +00:00
|
|
|
target_link_libraries(Test_${target} ${LIBS})
|
2014-10-27 19:37:40 +00:00
|
|
|
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)
|