-
Notifications
You must be signed in to change notification settings - Fork 16.6k
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
53 lines (50 loc) · 1.2 KB
/
CMakeLists.txt
File metadata and controls
53 lines (50 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#===-- unittests/Runtime/CMakeLists.txt ------------------------------------===#
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
#===------------------------------------------------------------------------===#
add_flangrt_unittest(RuntimeTests
AccessTest.cpp
Allocatable.cpp
ArrayConstructor.cpp
Assign.cpp
BufferTest.cpp
CharacterTest.cpp
CommandTest.cpp
Complex.cpp
CrashHandlerFixture.cpp
Derived.cpp
Descriptor.cpp
ExternalIOTest.cpp
Format.cpp
InputExtensions.cpp
Inquiry.cpp
LeadingZeroTest.cpp
ListInputTest.cpp
LogicalFormatTest.cpp
Matmul.cpp
MatmulTranspose.cpp
MiscIntrinsic.cpp
Namelist.cpp
Numeric.cpp
NumericalFormatTest.cpp
Pointer.cpp
Ragged.cpp
Random.cpp
Reduction.cpp
RuntimeCrashTest.cpp
Stop.cpp
Support.cpp
Time.cpp
TemporaryStack.cpp
Transformational.cpp
TypeCode.cpp
LINK_LIBS
flang_rt.runtime.unittest
)
target_compile_definitions(RuntimeTests PRIVATE NOT_EXE="${LLVM_TOOLS_DIR}/not${CMAKE_EXECUTABLE_SUFFIX}")
if (FLANG_RT_INCLUDE_CUF)
add_subdirectory(CUDA)
endif ()