memgraph/src/auth/CMakeLists.txt
Matej Ferencevic 2ecb660790 Initial implementation of authentication
Reviewers: teon.banek, buda

Reviewed By: teon.banek

Subscribers: mtomic, pullbot

Differential Revision: https://phabricator.memgraph.io/D1488
2018-07-27 13:08:17 +02:00

9 lines
196 B
CMake

set(auth_src_files
auth.cpp
crypto.cpp
models.cpp)
add_library(mg-auth STATIC ${auth_src_files})
target_link_libraries(mg-auth json libbcrypt)
target_link_libraries(mg-auth mg-utils)