2018-01-18 01:37:34 +01:00
|
|
|
add_executable(tests
|
|
|
|
common/param_package.cpp
|
|
|
|
core/arm/arm_test_common.cpp
|
|
|
|
core/arm/arm_test_common.h
|
|
|
|
core/core_timing.cpp
|
|
|
|
core/memory/memory.cpp
|
|
|
|
glad.cpp
|
|
|
|
tests.cpp
|
|
|
|
)
|
2016-03-20 15:58:24 +01:00
|
|
|
|
2018-01-18 01:37:34 +01:00
|
|
|
create_target_directory_groups(tests)
|
2016-03-20 15:58:24 +01:00
|
|
|
|
2017-05-28 03:26:55 +02:00
|
|
|
target_link_libraries(tests PRIVATE common core)
|
|
|
|
target_link_libraries(tests PRIVATE glad) # To support linker work-around
|
2017-05-28 07:46:59 +02:00
|
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads)
|
2016-05-19 19:54:50 +02:00
|
|
|
|
2017-05-28 07:46:59 +02:00
|
|
|
add_test(NAME tests COMMAND tests)
|