Skip to content

Commit

Permalink
Fix compilation of AES implementation, document that is is not actual…
Browse files Browse the repository at this point in the history
…ly used
  • Loading branch information
Martchus committed Aug 21, 2021
1 parent d1b7187 commit 5ca4170
Show file tree
Hide file tree
Showing 3 changed files with 352 additions and 362 deletions.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ set(TEST_SRC_FILES tests/utils.h tests/passwordfiletests.cpp tests/entrytests.cp

set(DOC_FILES README.md)

option(COMPILE_AES_SOURCES "compile AES sources" OFF)
if (COMPILE_AES_SOURCES)
list(APPEND HEADER_FILES aes/aes.h)
list(APPEND SRC_FILES aes/aes.cpp)
endif ()

# find c++utilities
set(CONFIGURATION_PACKAGE_SUFFIX
""
Expand Down
Loading

0 comments on commit 5ca4170

Please sign in to comment.