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 9add_library(NonGTestTesting EXCLUDE_FROM_ALL10 testing.cpp11 fp-testing.cpp12)13set_target_properties(NonGTestTesting PROPERTIES FOLDER "Flang/Tests")14 15if (LLVM_LINK_LLVM_DYLIB)16 set(llvm_libs LLVM)17else()18 llvm_map_components_to_libnames(llvm_libs Support)19endif()20target_link_libraries(NonGTestTesting ${llvm_libs})21