summaryrefslogtreecommitdiff
path: root/utests/CMakeLists.txt
blob: e408507c8a79c212fd6450c867b2909ed51351c7 (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
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}
                    ${CMAKE_CURRENT_SOURCE_DIR}/../include)

ADD_LIBRARY(utests SHARED
            utest_error.c
            utest_helper.cpp
            utest_file_map.cpp
            utest_assert.cpp
            utest.cpp
            app_mandelbrot.cpp
            compiler_write_only.cpp
            compiler_copy_buffer.cpp
            compiler_copy_buffer_row.cpp
            compiler_byte_scatter.cpp
            compiler_short_scatter.cpp
            compiler_if_else.cpp
            compiler_unstructured_branch0.cpp
            compiler_unstructured_branch1.cpp
            compiler_unstructured_branch2.cpp
            compiler_unstructured_branch3.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)