2019-03-05 22:05:34 +01:00
|
|
|
# Copyright (c) 2014-2019, The Monero Project
|
2014-10-21 17:13:59 +02:00
|
|
|
#
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
# conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
# of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
# materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software without specific
|
|
|
|
# prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
# THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
set(daemon_sources
|
2015-01-29 23:10:53 +01:00
|
|
|
command_parser_executor.cpp
|
|
|
|
command_server.cpp
|
|
|
|
daemon.cpp
|
|
|
|
executor.cpp
|
|
|
|
main.cpp
|
|
|
|
rpc_command_executor.cpp
|
|
|
|
)
|
2014-10-21 17:13:59 +02:00
|
|
|
|
2014-10-21 18:38:00 +02:00
|
|
|
set(daemon_headers)
|
|
|
|
|
|
|
|
set(daemon_private_headers
|
2015-01-29 23:10:53 +01:00
|
|
|
command_parser_executor.h
|
|
|
|
command_server.h
|
|
|
|
core.h
|
|
|
|
daemon.h
|
|
|
|
executor.h
|
|
|
|
p2p.h
|
|
|
|
protocol.h
|
|
|
|
rpc.h
|
|
|
|
rpc_command_executor.h
|
2014-10-21 17:13:59 +02:00
|
|
|
|
|
|
|
# cryptonote_protocol
|
|
|
|
../cryptonote_protocol/cryptonote_protocol_defs.h
|
|
|
|
../cryptonote_protocol/cryptonote_protocol_handler.h
|
|
|
|
../cryptonote_protocol/cryptonote_protocol_handler.inl
|
|
|
|
../cryptonote_protocol/cryptonote_protocol_handler_common.h
|
|
|
|
|
|
|
|
# p2p
|
|
|
|
../p2p/net_node.h
|
|
|
|
../p2p/net_node_common.h
|
|
|
|
../p2p/net_peerlist.h
|
|
|
|
../p2p/net_peerlist_boost_serialization.h
|
|
|
|
../p2p/p2p_protocol_defs.h
|
|
|
|
../p2p/stdafx.h)
|
|
|
|
|
2016-09-26 16:42:29 +02:00
|
|
|
monero_private_headers(daemon
|
2014-10-21 18:38:00 +02:00
|
|
|
${daemon_private_headers})
|
2016-09-26 16:42:29 +02:00
|
|
|
monero_add_executable(daemon
|
2014-10-21 17:13:59 +02:00
|
|
|
${daemon_sources}
|
2014-10-21 18:38:00 +02:00
|
|
|
${daemon_headers}
|
2018-10-09 14:33:39 +02:00
|
|
|
${daemon_private_headers})
|
2014-10-21 17:13:59 +02:00
|
|
|
target_link_libraries(daemon
|
2016-09-17 19:59:29 +02:00
|
|
|
PRIVATE
|
2014-10-21 17:13:59 +02:00
|
|
|
rpc
|
2015-03-06 21:20:45 +01:00
|
|
|
blockchain_db
|
2014-10-21 17:13:59 +02:00
|
|
|
cryptonote_core
|
2017-05-21 08:21:17 +02:00
|
|
|
cncrypto
|
2014-10-21 17:13:59 +02:00
|
|
|
common
|
2015-04-01 19:00:45 +02:00
|
|
|
p2p
|
|
|
|
cryptonote_protocol
|
2015-01-29 23:10:53 +01:00
|
|
|
daemonizer
|
2017-09-05 18:20:27 +02:00
|
|
|
serialization
|
|
|
|
daemon_rpc_server
|
2017-10-29 15:51:51 +01:00
|
|
|
${EPEE_READLINE}
|
2017-09-14 01:28:23 +02:00
|
|
|
version
|
2014-10-21 17:13:59 +02:00
|
|
|
${Boost_CHRONO_LIBRARY}
|
|
|
|
${Boost_FILESYSTEM_LIBRARY}
|
|
|
|
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
|
|
|
${Boost_REGEX_LIBRARY}
|
|
|
|
${Boost_SYSTEM_LIBRARY}
|
2014-10-24 21:30:57 +02:00
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
2017-09-05 18:20:27 +02:00
|
|
|
${ZMQ_LIB}
|
2018-01-11 06:50:41 +01:00
|
|
|
${GNU_READLINE_LIBRARY}
|
2018-10-09 14:33:39 +02:00
|
|
|
${EXTRA_LIBRARIES}
|
|
|
|
${Blocks})
|
2014-10-21 17:13:59 +02:00
|
|
|
set_property(TARGET daemon
|
|
|
|
PROPERTY
|
2016-09-03 13:46:41 +02:00
|
|
|
OUTPUT_NAME "monerod")
|
2016-09-01 21:23:36 +02:00
|
|
|
install(TARGETS daemon DESTINATION bin)
|