11 lines
324 B
CMake
11 lines
324 B
CMake
softbus_package(softbus_registry)
|
|
|
|
add_library(softbus_registry STATIC
|
|
src/PointRegistry.cpp
|
|
src/PointTableEntry.cpp
|
|
src/BindingRegistry.cpp
|
|
)
|
|
|
|
softbus_export_include(softbus_registry "${CMAKE_CURRENT_SOURCE_DIR}/include")
|
|
target_link_libraries(softbus_registry PUBLIC softbus_core nlohmann_json::nlohmann_json)
|