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