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-verify-policy/platform/CMakeLists.txt

12 lines
436 B
CMake
Raw Normal View History

if(COMMAND cmake_policy)
cmake_policy(SET CMP0003 NEW)
endif(COMMAND cmake_policy)
2023-03-30 19:50:00 +08:00
add_executable(verify-policy src/verify_policy.cpp src/verify_matcher.cpp)
2019-10-22 15:13:14 +08:00
#target_include_directories(verify-policy PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
2023-03-30 19:50:00 +08:00
target_link_libraries(verify-policy common cjson maatframe)
target_link_libraries(verify-policy pthread dl libevent-static MESA_prof_load breakpad-client-static cjson ${SYSTEMD_LIBRARIES})
2019-10-22 15:13:14 +08:00