Andrzej Warzynski e8356a79ff [flang][nfc] Add missing dependency in CMake
This missing dependency has been causing the Flang buildbots
(with BUILD_SHARED_LIBS set to ON) to fail:
  * http://lab.llvm.org:8011/#/builders/66/builds/542
  * http://lab.llvm.org:8011/#/builders/33/builds/764

This missing dependency was exposed by this change:
  * https://reviews.llvm.org/D91461
This change is fine - the root cause of the failing builds is the
missing dependency.
2020-11-17 14:32:39 +00:00

17 lines
232 B
CMake

set(LLVM_LINK_COMPONENTS
FrontendOpenACC
FrontendOpenMP
Support
)
add_flang_tool(f18-parse-demo
f18-parse-demo.cpp
stub-evaluate.cpp
)
target_link_libraries(f18-parse-demo
PRIVATE
FortranCommon
FortranParser
)