blob: 5fe86ad525a8edee76b57bdcb56bc4bde125eda4 (
plain)
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
54
55
56
57
58
59
60
61
62
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/../include)
link_directories (${LLVM_LIBRARY_DIRS})
ADD_LIBRARY(utests SHARED
utest_error.c
app_mandelbrot.cpp
compiler_box_blur_float.cpp
compiler_box_blur.cpp
compiler_argument_structure.cpp
compiler_array0.cpp
compiler_array.cpp
compiler_array1.cpp
compiler_array2.cpp
compiler_array3.cpp
compiler_byte_scatter.cpp
compiler_copy_buffer.cpp
compiler_copy_buffer_row.cpp
compiler_function_argument0.cpp
compiler_function_argument1.cpp
compiler_function_argument.cpp
compiler_gather_register_file.cpp
compiler_gather_register_file0.cpp
compiler_gather_register_file1.cpp
compiler_if_else.cpp
compiler_lower_return0.cpp
compiler_lower_return1.cpp
compiler_lower_return2.cpp
compiler_obread.cpp
compiler_obwrite.cpp
compiler_region.cpp
compiler_region0.cpp
compiler_region1.cpp
compiler_short_scatter.cpp
compiler_sub_bytes.cpp
compiler_sub_shorts.cpp
compiler_uint2_copy.cpp
compiler_uint3_copy.cpp
compiler_uint3_unaligned_copy.cpp
compiler_unstructured_branch0.cpp
compiler_unstructured_branch1.cpp
compiler_unstructured_branch2.cpp
compiler_unstructured_branch3.cpp
compiler_vote_all.cpp
compiler_vote_any.cpp
compiler_write_only_bytes.cpp
compiler_write_only.cpp
compiler_write_only_shorts.cpp
compiler_switch.cpp
utest_assert.cpp
utest.cpp
utest_file_map.cpp
utest_helper.cpp)
TARGET_LINK_LIBRARIES(utests cl m)
ADD_EXECUTABLE(run utest_run.cpp)
TARGET_LINK_LIBRARIES(run utests)
ADD_EXECUTABLE(flat_address_space runtime_flat_address_space.cpp)
TARGET_LINK_LIBRARIES(flat_address_space utests)
|