Add subdirectory for cryptography examples

+ Add example using columnar transposition for encrypting / decrypting messages
+ Fix cmake build error from duplicate lib-bst when building from project root
This commit is contained in:
2021-07-20 11:21:59 -04:00
parent 23c4f0e491
commit c8683680dd
7 changed files with 304 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ project (
LANGUAGES CXX
)
add_library(lib-bst "bst.cpp")
add_library(lib-bst-algo "bst.cpp")
add_executable(test-bst "driver.cpp")
target_link_libraries(test-bst lib-bst)
add_executable(test-bst-algo "driver.cpp")
target_link_libraries(test-bst-algo lib-bst)