xref: /llvm-project/flang/examples/ExternalHelloWorld/CMakeLists.txt (revision e63a600d147bb0065a2ce2b3d52c440d805a6c56)
1# This test is not run by default as it requires input.
2add_llvm_example(external-hello-world
3  external-hello.cpp
4)
5
6target_link_libraries(external-hello-world
7  PRIVATE
8  FortranRuntime
9  )
10