mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-18 18:15:50 +00:00
- Copies the recipe for Snappy from Conan Center, but removes three lines that explicitly link the standard library, which prevents builders from statically linking it. - Removes the recipe for RocksDB now that an official recipe for version 6.27.3 is in Conan Center. Developers will likely need to remove cached versions of both RocksDB and Snappy: ``` conan remove -f rocksdb conan remove -f snappy ``` --------- Co-authored-by: John Freeman <jfreeman08@gmail.com>
13 lines
354 B
Diff
13 lines
354 B
Diff
--- CMakeLists.txt
|
|
+++ CMakeLists.txt
|
|
@@ -69,7 +69,7 @@
|
|
- # Use -Werror for clang only.
|
|
+if(0)
|
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
if(NOT CMAKE_CXX_FLAGS MATCHES "-Werror")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
|
|
endif(NOT CMAKE_CXX_FLAGS MATCHES "-Werror")
|
|
endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
-
|
|
+endif()
|