mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
942cbd3c8d
The current prefixing makes it harder to build test executables directly from the command line, since the target name breaks CMake convention and doesn't match the name passed to `add_dolphin_test`. They all have "Test" somewhere in the name anyways.
30 lines
1.0 KiB
CMake
30 lines
1.0 KiB
CMake
set(LIBS core gtest_main)
|
|
if(APPLE)
|
|
list(APPEND LIBS ${FOUNDATION_LIBRARY} ${CORESERV_LIBRARY})
|
|
endif()
|
|
if(ANDROID)
|
|
set(LIBS ${LIBS} android log)
|
|
endif()
|
|
file(MAKE_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests)
|
|
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 ${ARGN})
|
|
add_executable(${target} EXCLUDE_FROM_ALL ${srcs2})
|
|
set_target_properties(${target} PROPERTIES
|
|
OUTPUT_NAME Tests/${target}
|
|
FOLDER Tests
|
|
)
|
|
target_link_libraries(${target} ${LIBS})
|
|
add_dependencies(unittests ${target})
|
|
add_test(NAME ${target} COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests/${target})
|
|
endmacro()
|
|
|
|
add_subdirectory(TestUtils)
|
|
|
|
add_subdirectory(Common)
|
|
add_subdirectory(Core)
|
|
add_subdirectory(VideoCommon)
|