2018-01-17 18:37:34 -06: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 09:58:24 -05:00
|
|
|
|
2018-01-17 18:37:34 -06:00
|
|
|
create_target_directory_groups(tests)
|
2016-03-20 09:58:24 -05:00
|
|
|
|
2017-05-27 20:26:55 -05:00
|
|
|
target_link_libraries(tests PRIVATE common core)
|
|
|
|
target_link_libraries(tests PRIVATE glad) # To support linker work-around
|
2017-05-28 00:46:59 -05:00
|
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads)
|
2016-05-19 12:54:50 -05:00
|
|
|
|
2017-05-28 00:46:59 -05:00
|
|
|
add_test(NAME tests COMMAND tests)
|