brintos

brintos / llvm-project-archived public Read only

0
0
Text · 569 B · ccc3924 Raw
18 lines · plain
1#===-- examples/ExternalHelloWorld/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 9# This test is not run by default as it requires input.10add_llvm_example(external-hello-world11  external-hello.cpp12)13 14target_link_libraries(external-hello-world15  PRIVATE16    flang_rt.runtime.default17  )18