mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-27 03:48:33 +00:00
cde06f783c
Harmonize usage of LLVM components througout Flang. Explicit LLVM Libs where used across several CMakeFIles, which led to incompatibilities with LLVM shlibs. Fortunately, the LLVM component system can be relied on to harmoniously handle both cases. Differential Revision: https://reviews.llvm.org/D87893
11 lines
273 B
CMake
11 lines
273 B
CMake
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
|
add_flang_nongtest_unittest(quick-sanity-test
|
|
FortranDecimal
|
|
)
|
|
|
|
# This test is not run by default as it takes a long time to execute.
|
|
add_flang_nongtest_unittest(thorough-test
|
|
SLOW_TEST
|
|
FortranDecimal
|
|
)
|