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

24 lines
1.0 KiB
CMake
Raw Normal View History

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)
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)
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)
2022-11-25 16:32:29 +08:00
file(COPY table_info.conf DESTINATION ./)
file(COPY literal_expr.conf DESTINATION ./)
file(COPY regex_expr.conf DESTINATION ./)
2022-12-03 22:23:41 +08:00
file(COPY maat_json.json DESTINATION ./)