实现登录接口。

This commit is contained in:
root
2025-03-01 09:09:30 +00:00
parent 63aa6a6270
commit d1b8bf6342
15 changed files with 608 additions and 8 deletions

12
Base/CMakeLists.txt Normal file
View File

@ -0,0 +1,12 @@
add_library(Base
DataStructure.h DataStructure.cpp
)
get_filename_component(PARENT_DIR ${CMAKE_CURRENT_SOURCE_DIR} DIRECTORY)
target_include_directories(Base
INTERFACE ${PARENT_DIR}
)
target_link_libraries(Base
PRIVATE OpenSSL::Crypto
)