diff --git a/PowerEditor/src/CMakeLists.txt b/PowerEditor/src/CMakeLists.txt index 111b4d20f..02365bd51 100644 --- a/PowerEditor/src/CMakeLists.txt +++ b/PowerEditor/src/CMakeLists.txt @@ -57,7 +57,9 @@ SET(projIncludDir ../../scintilla/include/ ./WinControls/FileBrowser/ ./WinControls/ReadDirectoryChanges/ ./MISC/md5/ + ./MISC/sha1/ ./MISC/sha2/ + ./MISC/sha512/ ./WinControls/PluginsAdmin/ ./json/) @@ -67,7 +69,10 @@ SET(src_files ./DarkMode/DarkMode.cpp ./MISC/Common/verifySignedfile.cpp ./MISC/md5/md5Dlgs.cpp + ./MISC/sha1/calc_sha1.cpp + ./MISC/sha1/sha1.cpp ./MISC/sha2/sha-256.cpp + ./MISC/sha512/sha512.cpp ./NppDarkMode.cpp ./MISC/Process/Processus.cpp ./WinControls/AboutDlg/AboutDlg.cpp @@ -205,7 +210,10 @@ SET(include_files ./MISC/md5/md5.h ./MISC/md5/md5Dlgs.h ./MISC/md5/md5Dlgs_rc.h + ./MISC/sha1/calc_sha1.h + ./MISC/sha1/sha1.h ./MISC/sha2/sha-256.h + ./MISC/sha512/sha512.h ./NppDarkMode.h ./ScintillaComponent/columnEditor_rc.h ./ScintillaComponent/FindReplaceDlg_rc.h diff --git a/PowerEditor/src/MISC/sha512/sha512.cpp b/PowerEditor/src/MISC/sha512/sha512.cpp index c280171d2..e3f2c225d 100644 --- a/PowerEditor/src/MISC/sha512/sha512.cpp +++ b/PowerEditor/src/MISC/sha512/sha512.cpp @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -#include +#include #include #include "sha512.h"