blob: 21da59f3afcbf651a3bff38c341c4c3c7adf6370 [file] [log] [blame]
sameeran joshi93f602b2020-06-02 17:15:441add_custom_target(FlangUnitTests)
2set_target_properties(FlangUnitTests PROPERTIES FOLDER "Flang Unit Tests")
3
4function(add_flang_unittest test_dirname)
5 add_unittest(FlangUnitTests ${test_dirname} ${ARGN})
6endfunction()
7
Logan Smith77e0e9e2020-07-23 00:44:528if (CXX_SUPPORTS_SUGGEST_OVERRIDE_FLAG)
9 add_compile_options("-Wno-suggest-override")
10endif()
11
sameeran joshi93f602b2020-06-02 17:15:4412add_subdirectory(Optimizer)
CarolineConcatto64ab3302020-02-25 15:11:5213add_subdirectory(Decimal)
14add_subdirectory(Evaluate)
15add_subdirectory(Runtime)
Sourabh Singh Tomar3d0b7602020-07-13 07:01:5216add_subdirectory(Lower)