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-tsg-service-chaining-…/platform/CMakeLists.txt

11 lines
455 B
CMake
Raw Normal View History

2023-02-03 18:52:56 +08:00
add_executable(sce src/main.cpp src/policy.cpp)
2023-01-10 09:57:29 +08:00
2023-02-03 18:52:56 +08:00
target_include_directories(sce PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include/)
target_link_libraries(sce PUBLIC common)
target_link_libraries(sce PUBLIC pthread)
target_link_libraries(sce PUBLIC MESA_handle_logger)
target_link_libraries(sce PUBLIC MESA_prof_load)
target_link_libraries(sce PUBLIC maatframe)
target_link_libraries(sce PUBLIC cjson)
2023-01-10 09:57:29 +08:00
2023-02-03 18:52:56 +08:00
install(TARGETS sce RUNTIME DESTINATION bin COMPONENT Program)