Skip to content

Commit f114607

Browse files
committed
Regenerate updating CMakeLists.txt.
1 parent 4fe57a4 commit f114607

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

builds/cmake/CMakeLists.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ else ()
3030
set( libdir "\${exec_prefix}/lib" )
3131
set( includedir "\${exec_prefix}/include" )
3232

33-
set( PACKAGE_VERSION "4.0.0" )
33+
set( PACKAGE_VERSION "3.7.0" )
3434
set( VERSION "${PACKAGE_VERSION}" )
3535
endif ()
3636

@@ -60,6 +60,9 @@ add_compile_options( "-Wno-missing-braces" )
6060
# Ignore comments within comments or commenting of backslash extended lines.
6161
add_compile_options( "-Wno-comment" )
6262

63+
# Suppress warning for copy of implicitly generated copy constructor.
64+
add_compile_options( "-Wno-deprecated-copy" )
65+
6366
# Conflict in stdlib under clang.
6467
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
6568
add_compile_options( "-Wno-mismatched-tags" )
@@ -119,11 +122,11 @@ endif()
119122

120123
# Find bitcoin-blockchain
121124
#------------------------------------------------------------------------------
122-
find_package( Bitcoin-Blockchain 4.0.0 REQUIRED )
125+
find_package( Bitcoin-Blockchain 3.7.0 REQUIRED )
123126

124127
# Find bitcoin-network
125128
#------------------------------------------------------------------------------
126-
find_package( Bitcoin-Network 4.0.0 REQUIRED )
129+
find_package( Bitcoin-Network 3.7.0 REQUIRED )
127130

128131
# Define project common includes directories
129132
#------------------------------------------------------------------------------

0 commit comments

Comments
 (0)