mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 16:06:41 +00:00

The non-GTest library will be shared by unittests of Flang and Flang-RT. Promote it as a regular library for use by both projects. In the long term, we may want to convert these to regular GTest checks to avoid having multiple testing frameworks.
15 lines
306 B
CMake
15 lines
306 B
CMake
add_subdirectory(Evaluate)
|
|
add_subdirectory(Decimal)
|
|
add_subdirectory(Lower)
|
|
add_subdirectory(Parser)
|
|
add_subdirectory(Semantics)
|
|
add_subdirectory(Support)
|
|
add_subdirectory(Frontend)
|
|
add_subdirectory(FrontendTool)
|
|
|
|
add_subdirectory(Optimizer)
|
|
|
|
if (FLANG_INCLUDE_TESTS)
|
|
add_subdirectory(Testing)
|
|
endif ()
|