Skip to content

Commit

Permalink
openSSL integration
Browse files Browse the repository at this point in the history
added openSSL library to the project (for now it uses openSSL installed locally by find_package())
  • Loading branch information
Kacperfis committed Feb 7, 2024
1 parent 3ff20d3 commit 91d0693
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project(PasswordManager)

find_package(OpenSSL REQUIRED)
include_directories(${OPENSSL_INCLUDE_DIR})

add_executable(passwordManager main.cpp PasswordManager.cpp)
add_subdirectory(test)

add_subdirectory(test)
target_link_libraries(passwordManager ${OPENSSL_LIBRARIES})

0 comments on commit 91d0693

Please sign in to comment.