1# Copyright © 2020 Arm Ltd and Contributors. All rights reserved. 2# SPDX-License-Identifier: MIT 3 4#Test TPIP 5set(TEST_TPIP ${DEPENDENCIES_DIR}/test) 6file(MAKE_DIRECTORY ${TEST_TPIP}) 7set(TEST_TPIP_INCLUDE ${TEST_TPIP}/include) 8file(MAKE_DIRECTORY ${TEST_TPIP_INCLUDE}) 9 10ExternalProject_Add(catch2-headers 11 URL https://github.com/catchorg/Catch2/releases/download/v2.13.5/catch.hpp 12 URL_HASH MD5=b43c586fe617aefdee3e480e9fa8f370 13 DOWNLOAD_NO_EXTRACT 1 14 CONFIGURE_COMMAND "" 15 BUILD_COMMAND ${CMAKE_COMMAND} -E copy <DOWNLOAD_DIR>/catch.hpp ${TEST_TPIP_INCLUDE} 16 INSTALL_COMMAND "" 17 ) 18