-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: add libsodium #28
Conversation
|
||
add_library(src database.cpp password.cpp server.cpp) | ||
target_link_libraries(src Crow::Crow) | ||
|
||
add_executable(server main.cpp) | ||
target_link_libraries(server Crow::Crow SQLite::SQLite3 src) | ||
target_link_libraries(server Crow::Crow SQLite::SQLite3 libsodium::libsodium src) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
praise: You're so good with CMakeLists!
Hi Nini, it looks great! Thank you for implementing the hash function and working through the correct implementation of libsodium for our project. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
No description provided.