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