diff --git a/src/thirdparty/jwt/CMakeLists.txt b/src/thirdparty/jwt/CMakeLists.txt index a4bde888..0477cbab 100644 --- a/src/thirdparty/jwt/CMakeLists.txt +++ b/src/thirdparty/jwt/CMakeLists.txt @@ -4,12 +4,12 @@ add_module( "lib" "libjwt" "" ${FOLDER_CONTEXT} TRUE TRUE ) start_sources() add_sources( SOURCE_GROUP "Source" - "base64.c" - "claim.c" - "decode.c" - "encode.c" - "util.c" - "version.c" + "base64.cpp" + "claim.cpp" + "decode.cpp" + "encode.cpp" + "util.cpp" + "version.cpp" ) add_sources( SOURCE_GROUP "Include" diff --git a/src/thirdparty/jwt/base64.c b/src/thirdparty/jwt/base64.cpp similarity index 100% rename from src/thirdparty/jwt/base64.c rename to src/thirdparty/jwt/base64.cpp diff --git a/src/thirdparty/jwt/claim.c b/src/thirdparty/jwt/claim.cpp similarity index 100% rename from src/thirdparty/jwt/claim.c rename to src/thirdparty/jwt/claim.cpp diff --git a/src/thirdparty/jwt/decode.c b/src/thirdparty/jwt/decode.cpp similarity index 100% rename from src/thirdparty/jwt/decode.c rename to src/thirdparty/jwt/decode.cpp diff --git a/src/thirdparty/jwt/encode.c b/src/thirdparty/jwt/encode.cpp similarity index 100% rename from src/thirdparty/jwt/encode.c rename to src/thirdparty/jwt/encode.cpp diff --git a/src/thirdparty/jwt/util.c b/src/thirdparty/jwt/util.cpp similarity index 100% rename from src/thirdparty/jwt/util.c rename to src/thirdparty/jwt/util.cpp diff --git a/src/thirdparty/jwt/version.c b/src/thirdparty/jwt/version.cpp similarity index 100% rename from src/thirdparty/jwt/version.c rename to src/thirdparty/jwt/version.cpp