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

7 lines
345 B
CMake
Raw Normal View History

2023-01-10 09:57:29 +08:00
add_executable(traffic-steering-service src/main.cpp)
target_include_directories(traffic-steering-service PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include/)
target_link_libraries(traffic-steering-service common)
target_link_libraries(traffic-steering-service pthread)
install(TARGETS traffic-steering-service RUNTIME DESTINATION bin COMPONENT Program)