19 lines · plain
1#===-- unittests/Runtime/CUDA/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_flangrt_unittest(FlangCufRuntimeTests10 Allocatable.cpp11 AllocatorCUF.cpp12 Memory.cpp13)14 15target_link_libraries(FlangCufRuntimeTests16 PRIVATE17 flang_rt.cuda.default18)19