21 lines · plain
1#===-- lib/Testing/CMakeLists.txt ------------------------------------------===#2#3# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4# See https://llvm.org/LICENSE.txt for license information.5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6#7#===------------------------------------------------------------------------===#8 9set(public_headers "")10file(GLOB_RECURSE public_headers11 "${FLANG_SOURCE_DIR}/lib/Testing/*.h"12)13 14add_flangrt_library(NonGTestTesting EXCLUDE_FROM_ALL LINK_TO_LLVM15 ${FLANG_SOURCE_DIR}/lib/Testing/testing.cpp16 ${FLANG_SOURCE_DIR}/lib/Testing/fp-testing.cpp17 18 ADDITIONAL_HEADERS19 ${public_headers}20 )21