You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously the code for parsing the server responses were part of the
core library. Move this code to the previously added ResponseParser
class. This makes it possible to in the future give the user of the
library an easy way to change which third party libraries are used
for parsing server responses.
Copy file name to clipboardExpand all lines: CMakeLists.txt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ project (cryptolens)
4
4
set (CRYPTOLENS_BUILD_TESTS OFFCACHEBOOL"build tests?")
5
5
set (CRYPTOLENS_CURL_EMBED_CACERTS OFFCACHEBOOL"embed the ca certs in the library instead of using system default files?")
6
6
7
-
set (SRC "src/ActivateError.cpp""src/DataObject.cpp""src/LicenseKey.cpp""src/LicenseKeyChecker.cpp""src/LicenseKeyInformation.cpp""src/MachineCodeComputer_static.cpp""src/basic_Cryptolens.cpp""src/basic_SKM.cpp""third_party/base64_OpenBSD/base64.cpp")
8
-
set (LIBS "")
7
+
set (SRC "src/ActivateError.cpp""src/DataObject.cpp""src/LicenseKey.cpp""src/LicenseKeyChecker.cpp""src/LicenseKeyInformation.cpp""src/MachineCodeComputer_static.cpp""src/RawLicenseKey.cpp""src/ResponseParser_ArduinoJson5.cpp""src/basic_SKM.cpp""src/cryptolens_internals.cpp""third_party/base64_OpenBSD/base64.cpp")
0 commit comments