mirror of https://github.com/PCSX2/pcsx2.git
28 lines
879 B
CMake
28 lines
879 B
CMake
enable_testing()
|
|
add_custom_target(unittests)
|
|
add_custom_command(TARGET unittests POST_BUILD COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure)
|
|
|
|
macro(add_pcsx2_test target)
|
|
add_executable(${target} EXCLUDE_FROM_ALL ${ARGN})
|
|
target_link_libraries(${target} PRIVATE gtest gtest_main)
|
|
if(APPLE)
|
|
# For some reason this doesn't get pulled in implicitly...
|
|
target_link_libraries(${target} PRIVATE
|
|
"-framework Foundation"
|
|
"-framework Cocoa"
|
|
)
|
|
endif()
|
|
|
|
add_dependencies(unittests ${target})
|
|
add_test(NAME ${target} COMMAND ${target})
|
|
|
|
if(MSVC AND NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
# For some reason, the stack refuses to grow with the latest MSVC updates.
|
|
# Just force the commit size to 1MB for now.
|
|
set_target_properties(${target} PROPERTIES LINK_FLAGS "/STACK:1048576,1048576")
|
|
endif()
|
|
endmacro()
|
|
|
|
add_subdirectory(common)
|
|
add_subdirectory(core)
|