llvm/flang/tools/f18/CMakeLists.txt
Stephane Chauveau 20ac31fa9f [flang] Very early semantic analysis.
Original-commit: flang-compiler/f18@862eca9c5b
Reviewed-on: https://github.com/flang-compiler/f18/pull/24
Tree-same-pre-rewrite: false
2018-03-26 16:35:34 +02:00

33 lines
412 B
CMake

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