CMakeLists.txt 1.2 KB
Newer Older
1 2 3 4 5
add_executable(tmq_demo tmqDemo.c)
add_dependencies(tmq_demo taos)
add_executable(tmq_sim tmqSim.c)
add_executable(create_table createTable.c)
add_executable(tmq_taosx_ci tmq_taosx_ci.c)
6
add_executable(write_raw_block_test write_raw_block_test.c)
7
add_executable(sml_test sml_test.c)
wmmhello's avatar
wmmhello 已提交
8
add_executable(get_db_name_test get_db_name_test.c)
wmmhello's avatar
wmmhello 已提交
9 10 11 12 13 14 15 16
add_executable(tmq_offset tmqOffset.c)
target_link_libraries(
    tmq_offset
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)
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
target_link_libraries(
    create_table
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)
target_link_libraries(
    tmq_demo
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)
target_link_libraries(
    tmq_sim
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)
target_link_libraries(
    tmq_taosx_ci
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)

46 47 48 49 50 51 52 53
target_link_libraries(
    write_raw_block_test
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)

54 55 56 57 58 59 60
target_link_libraries(
    sml_test
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)
wmmhello's avatar
wmmhello 已提交
61 62 63 64 65 66 67 68

target_link_libraries(
    get_db_name_test
    PUBLIC taos_static
    PUBLIC util
    PUBLIC common
    PUBLIC os
)