mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
rpc: fix linking error of 6097472a
, get_output_distribution
Undefined symbols for architecture x86_64: "cryptonote::core::get_output_distribution(unsigned long long, unsigned long long, unsigned long long, unsigned long long&, std::__1::vector<unsigned long long, std::__1::allocator<unsigned long long> >&, unsigned long long&) const", referenced from: cryptonote::rpc::RpcHandler::get_output_distribution(cryptonote::core&, unsigned long long, unsigned long long, unsigned long long, bool) in rpc_handler.cpp.o
This commit is contained in:
parent
7e2483e1d5
commit
e178bf234a
1 changed files with 5 additions and 5 deletions
|
@ -27,11 +27,11 @@
|
||||||
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
set(rpc_base_sources
|
set(rpc_base_sources
|
||||||
rpc_args.cpp
|
rpc_args.cpp)
|
||||||
rpc_handler.cpp)
|
|
||||||
|
|
||||||
set(rpc_sources
|
set(rpc_sources
|
||||||
core_rpc_server.cpp
|
core_rpc_server.cpp
|
||||||
|
rpc_handler.cpp
|
||||||
instanciations)
|
instanciations)
|
||||||
|
|
||||||
set(daemon_messages_sources
|
set(daemon_messages_sources
|
||||||
|
@ -44,10 +44,10 @@ set(daemon_rpc_server_sources
|
||||||
|
|
||||||
|
|
||||||
set(rpc_base_headers
|
set(rpc_base_headers
|
||||||
rpc_args.h
|
rpc_args.h)
|
||||||
rpc_handler.h)
|
|
||||||
|
|
||||||
set(rpc_headers)
|
set(rpc_headers
|
||||||
|
rpc_handler.cpp)
|
||||||
|
|
||||||
set(daemon_rpc_server_headers)
|
set(daemon_rpc_server_headers)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue