This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-maat/test/CMakeLists.txt

38 lines
1.6 KiB
CMake
Raw Normal View History

2023-04-21 09:41:31 +08:00
include_directories(/opt/MESA/include/MESA/)
include_directories(${PROJECT_SOURCE_DIR}/include)
2022-11-17 05:05:35 +08:00
include_directories(${PROJECT_SOURCE_DIR}/src/inc_internal)
include_directories(${PROJECT_SOURCE_DIR}/deps)
2022-11-25 16:32:29 +08:00
include_directories(${PROJECT_SOURCE_DIR}/scanner)
include_directories(${PROJECT_SOURCE_DIR}/scanner/adapter_hs)
include_directories(${PROJECT_SOURCE_DIR}/scanner/ip_matcher)
2022-11-17 05:05:35 +08:00
2022-10-27 17:58:52 +08:00
add_executable(maat_api_gtest maat_api_gtest.cpp)
target_link_libraries(maat_api_gtest maat_frame_shared gtest_static)
2022-11-17 05:05:35 +08:00
add_executable(rcu_hash_gtest rcu_hash_gtest.cpp)
2022-11-25 16:32:29 +08:00
target_link_libraries(rcu_hash_gtest maat_frame_static gtest_static)
2022-12-05 23:21:18 +08:00
add_executable(maat_input_mode_gtest maat_input_mode_gtest.cpp)
target_link_libraries(maat_input_mode_gtest maat_frame_static gtest_static)
2022-11-25 16:32:29 +08:00
add_executable(maat_framework_gtest maat_framework_gtest.cpp)
target_link_libraries(maat_framework_gtest maat_frame_static gtest_static)
add_executable(maat_framework_perf_gtest maat_framework_perf_gtest.cpp)
target_link_libraries(maat_framework_perf_gtest maat_frame_static gtest_static)
2023-02-09 22:13:15 +08:00
add_executable(adapter_hs_gtest adapter_hs_gtest.cpp)
target_link_libraries(adapter_hs_gtest maat_frame_static gtest_static)
add_executable(maat_ex_data_gtest maat_ex_data_gtest.cpp)
target_link_libraries(maat_ex_data_gtest maat_frame_static gtest_static)
2022-11-25 16:32:29 +08:00
file(COPY table_info.conf DESTINATION ./)
file(COPY file_test_tableinfo.conf DESTINATION ./)
file(COPY literal_expr.conf DESTINATION ./)
file(COPY regex_expr.conf DESTINATION ./)
file(COPY maat_json.json DESTINATION ./)
2023-04-10 13:40:21 +08:00
file(COPY maat_json.json DESTINATION ../tools/)
file(COPY ntcrule DESTINATION ./)
2023-03-30 15:22:33 +08:00
file(COPY testdata DESTINATION ./)
file(COPY test_streamfiles DESTINATION ./)