llvm/flang/tools/f18/CMakeLists.txt
Tim Keith c9d838e8a7 [flang] Add -fdebug-dump-parse-tree and -fdebug-resolve-names
"f18 -fdebug-resolve-names -fparse-only ..." is equivalent to what
test-type used to do, so the test-type executable can be eliminated.

-fdebug-dump-parse-tree does the parse-tree dumping that test-sema
does, but test-sema does more so I have left it alone.

Original-commit: flang-compiler/f18@8b3816528e
Reviewed-on: https://github.com/flang-compiler/f18/pull/55
2018-04-12 20:01:40 -07:00

22 lines
266 B
CMake

######## f18 ##########
add_executable( f18
f18.cc
)
target_link_libraries( f18
FortranParser
FlangSemantics
)
######## test-sema ##########
add_executable( test-sema
test-sema.cc
)
target_link_libraries( test-sema
FortranParser
FlangSemantics
)