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
stellar-stellar/src/packet/CMakeLists.txt

10 lines
406 B
CMake
Raw Normal View History

2023-12-15 18:57:13 +08:00
###############################################################################
# packet
###############################################################################
2024-01-03 09:57:06 +08:00
add_library(packet packet.cpp)
target_include_directories(packet PUBLIC ${CMAKE_CURRENT_LIST_DIR})
2023-12-15 18:57:13 +08:00
target_include_directories(packet PUBLIC ${CMAKE_SOURCE_DIR}/deps/uthash)
2024-01-26 14:41:40 +08:00
target_link_libraries(packet tuple log)
2023-12-15 18:57:13 +08:00
2023-12-22 14:54:25 +08:00
add_subdirectory(test)