aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2020-07-28 13:10:59 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2020-07-28 13:11:11 +0200
commit6c5f779dfd4dd5a91678351127acde132f817faf (patch)
treeff0da4bd9ed8b2606caa0179492f41ce6a8742ed /CMakeLists.txt
parenta36392dd83def4397d100addf57870ebea5de0e9 (diff)
downloadlibnitrokey-6c5f779dfd4dd5a91678351127acde132f817faf.tar.gz
libnitrokey-6c5f779dfd4dd5a91678351127acde132f817faf.tar.bz2
Extract PWS features to separate unit
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6e0bcb1..c795e22 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -77,6 +77,8 @@ set(SOURCE_FILES
NitrokeyManagerStorage.h
NitrokeyManagerOTP.cc
NitrokeyManagerOTP.h
+ NitrokeyManagerPWS.h
+ NitrokeyManagerPWS.cc
NK_C_API.h
NK_C_API.cc
NK_C_API_helpers.h
@@ -86,6 +88,7 @@ set(SOURCE_FILES
set(SOURCE_FILES_storage
${COMMON_FILES}
+ NitrokeyManager.cc
NitrokeyManagerStorage.cpp
NitrokeyManagerStorage.h
NK_C_API_helpers.h
@@ -140,6 +143,7 @@ endif()
OPTION(NO_LOG "Compile without logging functionality and its strings (decreases size)" OFF)
IF (NO_LOG)
SET_TARGET_PROPERTIES(nitrokey PROPERTIES COMPILE_DEFINITIONS "NO_LOG")
+ SET_TARGET_PROPERTIES(nitrokey-storage PROPERTIES COMPILE_DEFINITIONS "NO_LOG")
ENDIF()
OPTION(LOG_VOLATILE_DATA "Log volatile data (debug)" OFF)