summaryrefslogtreecommitdiff
path: root/next/expression-test/CMakeLists.txt
blob: f7d694b0546040d0572884f343e5f294ea462558 (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
add_executable(
    mbgl-expression-test
    ${MBGL_ROOT}/expression-test/expression_test_logger.cpp
    ${MBGL_ROOT}/expression-test/expression_test_logger.hpp
    ${MBGL_ROOT}/expression-test/expression_test_parser.cpp
    ${MBGL_ROOT}/expression-test/expression_test_parser.hpp
    ${MBGL_ROOT}/expression-test/expression_test_runner.cpp
    ${MBGL_ROOT}/expression-test/expression_test_runner.hpp
    ${MBGL_ROOT}/expression-test/test_runner_common.cpp
    ${MBGL_ROOT}/expression-test/test_runner_common.hpp
    ${MBGL_ROOT}/expression-test/main.cpp
)

target_compile_definitions(
    mbgl-expression-test
    PRIVATE TEST_RUNNER_ROOT_PATH="${MBGL_ROOT}"
)

# FIXME: Should not use core private interface
target_include_directories(
    mbgl-expression-test
    PRIVATE ${MBGL_ROOT}/src
)

target_link_libraries(
    mbgl-expression-test
    PRIVATE
        Mapbox::Base::Extras::args
        Mapbox::Base::Extras::filesystem
        Mapbox::Base::io
        mbgl-core
)

set_property(TARGET mbgl-expression-test PROPERTY FOLDER Executables)

string(RANDOM LENGTH 5 ALPHABET 0123456789 MBGL_EXPRESSION_TEST_SEED)

add_test(NAME mbgl-expression-test COMMAND mbgl-expression-test -s --seed=${MBGL_EXPRESSION_TEST_SEED} WORKING_DIRECTORY ${MBGL_ROOT})