diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-03-25 05:56:36 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2015-03-25 05:56:36 -0400 |
commit | 5c0bc0050ccfd579ed75be384e928e0165d6b2ce (patch) | |
tree | 7bce2200f19b05448cb719b54037a7c2c82d6bab /src/daemon/CMakeLists.txt | |
parent | Merges #36 (diff) | |
parent | Merge pull request #243 (diff) | |
download | monero-5c0bc0050ccfd579ed75be384e928e0165d6b2ce.tar.xz |
Merge upstream updates into blockchain branch
Diffstat (limited to 'src/daemon/CMakeLists.txt')
-rw-r--r-- | src/daemon/CMakeLists.txt | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/daemon/CMakeLists.txt b/src/daemon/CMakeLists.txt index 1ad1949d3..afb65b5f6 100644 --- a/src/daemon/CMakeLists.txt +++ b/src/daemon/CMakeLists.txt @@ -27,12 +27,27 @@ # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. set(daemon_sources - daemon.cpp) + command_parser_executor.cpp + command_server.cpp + daemon.cpp + executor.cpp + main.cpp + rpc_command_executor.cpp +) set(daemon_headers) set(daemon_private_headers + command_parser_executor.h + command_server.h + core.h + daemon.h daemon_commands_handler.h + executor.h + p2p.h + protocol.h + rpc.h + rpc_command_executor.h # cryptonote_protocol ../cryptonote_protocol/blobdatatype.h @@ -63,6 +78,7 @@ target_link_libraries(daemon cryptonote_core crypto common + daemonizer ${Boost_CHRONO_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY} |