-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Update AWS SDK version * Disabling S3 * Revert it back * Update version 'nlohmann-json' * Revert "Update version 'nlohmann-json'" This reverts commit 1d84f4c. * Ignore Azure deprecated warning * Fix up * Set higher version for 'nlohmann-json' * Change version to nlohmann-json * Eanble CXX STD 17 to fix absl linking * Apply same CXX_STANDARD for related third party library (#33) --------- Co-authored-by: GuanLuo <[email protected]> Co-authored-by: GuanLuo <[email protected]>
- Loading branch information
1 parent
42ddcda
commit d9a74ab
Showing
2 changed files
with
26 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index dfb441e..af3dd36 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -173,7 +173,7 @@ target_link_libraries(azure-storage-lite Threads::Threads ${CURL_LIBRARIES} ${EX | ||
if(MSVC) | ||
target_compile_options(azure-storage-lite PRIVATE /W4 /WX /MP) | ||
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "GNU") | ||
- target_compile_options(azure-storage-lite PRIVATE -Wall -Wextra -Werror -pedantic) | ||
+ target_compile_options(azure-storage-lite PRIVATE -Wall -Wextra -Werror -pedantic -Wno-deprecated-declarations) | ||
endif() | ||
|
||
if(BUILD_ADLS) |