2017-02-21 17:38:18 +00:00
|
|
|
# Copyright (c) 2014-2017, The Monero Project
|
2014-10-21 15:13:59 +00: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.
|
|
|
|
|
2016-06-24 11:49:23 +00:00
|
|
|
# include (${PROJECT_SOURCE_DIR}/cmake/libutils.cmake)
|
2016-02-15 18:04:00 +00:00
|
|
|
|
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
|
|
|
|
|
2014-10-21 15:13:59 +00:00
|
|
|
set(wallet_sources
|
|
|
|
wallet2.cpp
|
2016-11-09 03:55:41 +00:00
|
|
|
wallet_args.cpp
|
2017-01-07 19:23:57 +00:00
|
|
|
node_rpc_proxy.cpp
|
2016-04-20 10:01:00 +00:00
|
|
|
api/wallet.cpp
|
|
|
|
api/wallet_manager.cpp
|
|
|
|
api/transaction_info.cpp
|
|
|
|
api/transaction_history.cpp
|
2016-04-26 10:46:20 +00:00
|
|
|
api/pending_transaction.cpp
|
2016-12-11 23:42:46 +00:00
|
|
|
api/utils.cpp
|
2017-01-08 12:17:09 +00:00
|
|
|
api/address_book.cpp
|
|
|
|
api/unsigned_transaction.cpp)
|
2014-10-21 15:13:59 +00:00
|
|
|
|
2016-05-27 07:58:07 +00:00
|
|
|
set(wallet_api_headers
|
2016-05-27 07:00:01 +00:00
|
|
|
wallet2_api.h)
|
|
|
|
|
2014-10-21 16:38:00 +00:00
|
|
|
|
|
|
|
set(wallet_private_headers
|
2014-10-21 15:13:59 +00:00
|
|
|
wallet2.h
|
2016-11-09 03:55:41 +00:00
|
|
|
wallet_args.h
|
2014-10-21 15:13:59 +00:00
|
|
|
wallet_errors.h
|
|
|
|
wallet_rpc_server.h
|
|
|
|
wallet_rpc_server_commands_defs.h
|
2016-02-15 18:04:00 +00:00
|
|
|
wallet_rpc_server_error_codes.h
|
2017-01-07 19:23:57 +00:00
|
|
|
node_rpc_proxy.h
|
2016-04-20 10:01:00 +00:00
|
|
|
api/wallet.h
|
|
|
|
api/wallet_manager.h
|
|
|
|
api/transaction_info.h
|
|
|
|
api/transaction_history.h
|
|
|
|
api/pending_transaction.h
|
2016-12-11 23:42:46 +00:00
|
|
|
api/common_defines.h
|
2017-01-08 12:17:09 +00:00
|
|
|
api/address_book.h
|
|
|
|
api/unsigned_transaction.h)
|
2014-10-21 15:13:59 +00:00
|
|
|
|
2016-09-26 14:42:29 +00:00
|
|
|
monero_private_headers(wallet
|
2014-10-21 16:38:00 +00:00
|
|
|
${wallet_private_headers})
|
2016-09-26 14:42:29 +00:00
|
|
|
monero_add_library(wallet
|
2014-10-21 15:13:59 +00:00
|
|
|
${wallet_sources}
|
2016-05-27 07:58:07 +00:00
|
|
|
${wallet_api_headers}
|
2014-10-21 16:38:00 +00:00
|
|
|
${wallet_private_headers})
|
2014-10-21 15:13:59 +00:00
|
|
|
target_link_libraries(wallet
|
2016-09-17 17:59:29 +00:00
|
|
|
PUBLIC
|
2017-02-05 22:48:03 +00:00
|
|
|
common
|
2014-10-21 15:13:59 +00:00
|
|
|
cryptonote_core
|
|
|
|
mnemonics
|
2016-09-17 17:59:29 +00:00
|
|
|
p2p
|
|
|
|
${Boost_CHRONO_LIBRARY}
|
2014-10-21 15:13:59 +00:00
|
|
|
${Boost_SERIALIZATION_LIBRARY}
|
2016-09-17 17:59:29 +00:00
|
|
|
${Boost_FILESYSTEM_LIBRARY}
|
2014-10-21 15:13:59 +00:00
|
|
|
${Boost_SYSTEM_LIBRARY}
|
|
|
|
${Boost_THREAD_LIBRARY}
|
2016-02-20 16:04:56 +00:00
|
|
|
${Boost_REGEX_LIBRARY}
|
2016-09-17 17:59:29 +00:00
|
|
|
PRIVATE
|
2014-10-21 15:13:59 +00:00
|
|
|
${EXTRA_LIBRARIES})
|
2016-11-12 12:55:19 +00:00
|
|
|
add_dependencies(wallet version)
|
2016-02-15 18:04:00 +00:00
|
|
|
|
2016-11-12 18:22:19 +00:00
|
|
|
if (NOT BUILD_GUI_DEPS)
|
|
|
|
set(wallet_rpc_sources
|
|
|
|
wallet_rpc_server.cpp)
|
2016-11-09 03:55:41 +00:00
|
|
|
|
2016-11-12 18:22:19 +00:00
|
|
|
set(wallet_rpc_headers)
|
2016-11-09 03:55:41 +00:00
|
|
|
|
2016-11-12 18:22:19 +00:00
|
|
|
set(wallet_rpc_private_headers
|
|
|
|
wallet_rpc_server.h)
|
2016-11-09 03:55:41 +00:00
|
|
|
|
2016-11-12 18:22:19 +00:00
|
|
|
monero_private_headers(wallet_rpc_server
|
|
|
|
${wallet_rpc_private_headers})
|
|
|
|
monero_add_executable(wallet_rpc_server
|
|
|
|
${wallet_rpc_sources}
|
|
|
|
${wallet_rpc_headers}
|
|
|
|
${wallet_rpc_private_headers})
|
2016-11-09 03:55:41 +00:00
|
|
|
|
2016-11-12 18:22:19 +00:00
|
|
|
target_link_libraries(wallet_rpc_server
|
|
|
|
PRIVATE
|
|
|
|
wallet
|
2016-12-09 01:28:28 +00:00
|
|
|
epee
|
2016-11-12 18:22:19 +00:00
|
|
|
rpc
|
|
|
|
cryptonote_core
|
2017-05-21 06:21:17 +00:00
|
|
|
cncrypto
|
2016-11-12 18:22:19 +00:00
|
|
|
common
|
|
|
|
${Boost_CHRONO_LIBRARY}
|
|
|
|
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
|
|
|
${Boost_FILESYSTEM_LIBRARY}
|
|
|
|
${Boost_THREAD_LIBRARY}
|
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
|
|
${EXTRA_LIBRARIES})
|
|
|
|
add_dependencies(wallet_rpc_server version)
|
|
|
|
set_property(TARGET wallet_rpc_server
|
|
|
|
PROPERTY
|
|
|
|
OUTPUT_NAME "monero-wallet-rpc")
|
|
|
|
install(TARGETS wallet_rpc_server DESTINATION bin)
|
|
|
|
endif()
|
2016-11-09 03:55:41 +00:00
|
|
|
|
|
|
|
|
2016-09-03 10:32:06 +00:00
|
|
|
# build and install libwallet_merged only if we building for GUI
|
|
|
|
if (BUILD_GUI_DEPS)
|
2017-05-21 06:21:17 +00:00
|
|
|
set(libs_to_merge wallet cryptonote_core cryptonote_basic mnemonics common cncrypto ringct)
|
2016-05-27 07:00:01 +00:00
|
|
|
|
2016-09-03 10:32:06 +00:00
|
|
|
foreach(lib ${libs_to_merge})
|
|
|
|
list(APPEND objlibs $<TARGET_OBJECTS:obj_${lib}>) # matches naming convention in src/CMakeLists.txt
|
|
|
|
endforeach()
|
|
|
|
add_library(wallet_merged STATIC ${objlibs})
|
2017-04-02 10:19:25 +00:00
|
|
|
if(IOS)
|
|
|
|
set(lib_folder lib-${ARCH})
|
|
|
|
else()
|
|
|
|
set(lib_folder lib)
|
|
|
|
endif()
|
2016-09-03 10:32:06 +00:00
|
|
|
install(TARGETS wallet_merged
|
2017-04-02 10:19:25 +00:00
|
|
|
ARCHIVE DESTINATION ${lib_folder})
|
2016-09-03 10:32:06 +00:00
|
|
|
|
|
|
|
install(FILES ${wallet_api_headers}
|
|
|
|
DESTINATION include/wallet)
|
|
|
|
endif()
|