-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #533 from evoskuil/master
Stub in chaser event handlers.
- Loading branch information
Showing
26 changed files
with
372 additions
and
135 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
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
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,60 @@ | ||
############################################################################### | ||
# Copyright (c) 2014-2023 libbitcoin-blockchain developers (see COPYING). | ||
# | ||
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY | ||
# | ||
############################################################################### | ||
# FindBitcoin-Consensus | ||
# | ||
# Use this module by invoking find_package with the form:: | ||
# | ||
# find_package( Bitcoin-Consensus | ||
# [version] # Minimum version | ||
# [REQUIRED] # Fail with error if bitcoin-consensus is not found | ||
# ) | ||
# | ||
# Defines the following for use: | ||
# | ||
# bitcoin_consensus_FOUND - true if headers and requested libraries were found | ||
# bitcoin_consensus_INCLUDE_DIRS - include directories for bitcoin-consensus libraries | ||
# bitcoin_consensus_LIBRARY_DIRS - link directories for bitcoin-consensus libraries | ||
# bitcoin_consensus_LIBRARIES - bitcoin-consensus libraries to be linked | ||
# bitcoin_consensus_PKG - bitcoin-consensus pkg-config package specification. | ||
# | ||
|
||
if (MSVC) | ||
if ( Bitcoin-Consensus_FIND_REQUIRED ) | ||
set( _bitcoin_consensus_MSG_STATUS "SEND_ERROR" ) | ||
else () | ||
set( _bitcoin_consensus_MSG_STATUS "STATUS" ) | ||
endif() | ||
|
||
set( bitcoin_consensus_FOUND false ) | ||
message( ${_bitcoin_consensus_MSG_STATUS} "MSVC environment detection for 'bitcoin-consensus' not currently supported." ) | ||
else () | ||
# required | ||
if ( Bitcoin-Consensus_FIND_REQUIRED ) | ||
set( _bitcoin_consensus_REQUIRED "REQUIRED" ) | ||
endif() | ||
|
||
# quiet | ||
if ( Bitcoin-Consensus_FIND_QUIETLY ) | ||
set( _bitcoin_consensus_QUIET "QUIET" ) | ||
endif() | ||
|
||
# modulespec | ||
if ( Bitcoin-Consensus_FIND_VERSION_COUNT EQUAL 0 ) | ||
set( _bitcoin_consensus_MODULE_SPEC "libbitcoin-consensus" ) | ||
else () | ||
if ( Bitcoin-Consensus_FIND_VERSION_EXACT ) | ||
set( _bitcoin_consensus_MODULE_SPEC_OP "=" ) | ||
else () | ||
set( _bitcoin_consensus_MODULE_SPEC_OP ">=" ) | ||
endif() | ||
|
||
set( _bitcoin_consensus_MODULE_SPEC "libbitcoin-consensus ${_bitcoin_consensus_MODULE_SPEC_OP} ${Bitcoin-Consensus_FIND_VERSION}" ) | ||
endif() | ||
|
||
pkg_check_modules( bitcoin_consensus ${_bitcoin_consensus_REQUIRED} ${_bitcoin_consensus_QUIET} "${_bitcoin_consensus_MODULE_SPEC}" ) | ||
set( bitcoin_consensus_PKG "${_bitcoin_consensus_MODULE_SPEC}" ) | ||
endif() |
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,60 @@ | ||
############################################################################### | ||
# Copyright (c) 2014-2023 libbitcoin-blockchain developers (see COPYING). | ||
# | ||
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY | ||
# | ||
############################################################################### | ||
# FindBitcoin-Database | ||
# | ||
# Use this module by invoking find_package with the form:: | ||
# | ||
# find_package( Bitcoin-Database | ||
# [version] # Minimum version | ||
# [REQUIRED] # Fail with error if bitcoin-database is not found | ||
# ) | ||
# | ||
# Defines the following for use: | ||
# | ||
# bitcoin_database_FOUND - true if headers and requested libraries were found | ||
# bitcoin_database_INCLUDE_DIRS - include directories for bitcoin-database libraries | ||
# bitcoin_database_LIBRARY_DIRS - link directories for bitcoin-database libraries | ||
# bitcoin_database_LIBRARIES - bitcoin-database libraries to be linked | ||
# bitcoin_database_PKG - bitcoin-database pkg-config package specification. | ||
# | ||
|
||
if (MSVC) | ||
if ( Bitcoin-Database_FIND_REQUIRED ) | ||
set( _bitcoin_database_MSG_STATUS "SEND_ERROR" ) | ||
else () | ||
set( _bitcoin_database_MSG_STATUS "STATUS" ) | ||
endif() | ||
|
||
set( bitcoin_database_FOUND false ) | ||
message( ${_bitcoin_database_MSG_STATUS} "MSVC environment detection for 'bitcoin-database' not currently supported." ) | ||
else () | ||
# required | ||
if ( Bitcoin-Database_FIND_REQUIRED ) | ||
set( _bitcoin_database_REQUIRED "REQUIRED" ) | ||
endif() | ||
|
||
# quiet | ||
if ( Bitcoin-Database_FIND_QUIETLY ) | ||
set( _bitcoin_database_QUIET "QUIET" ) | ||
endif() | ||
|
||
# modulespec | ||
if ( Bitcoin-Database_FIND_VERSION_COUNT EQUAL 0 ) | ||
set( _bitcoin_database_MODULE_SPEC "libbitcoin-database" ) | ||
else () | ||
if ( Bitcoin-Database_FIND_VERSION_EXACT ) | ||
set( _bitcoin_database_MODULE_SPEC_OP "=" ) | ||
else () | ||
set( _bitcoin_database_MODULE_SPEC_OP ">=" ) | ||
endif() | ||
|
||
set( _bitcoin_database_MODULE_SPEC "libbitcoin-database ${_bitcoin_database_MODULE_SPEC_OP} ${Bitcoin-Database_FIND_VERSION}" ) | ||
endif() | ||
|
||
pkg_check_modules( bitcoin_database ${_bitcoin_database_REQUIRED} ${_bitcoin_database_QUIET} "${_bitcoin_database_MODULE_SPEC}" ) | ||
set( bitcoin_database_PKG "${_bitcoin_database_MODULE_SPEC}" ) | ||
endif() |
Oops, something went wrong.