2014-04-09 12:14:35 +00:00
|
|
|
add_definitions(-DSTATICLIB)
|
|
|
|
|
2014-03-03 22:07:58 +00:00
|
|
|
file(GLOB_RECURSE COMMON common/*)
|
|
|
|
file(GLOB_RECURSE CRYPTO crypto/*)
|
|
|
|
file(GLOB_RECURSE CRYPTONOTE_CORE cryptonote_core/*)
|
|
|
|
file(GLOB_RECURSE CRYPTONOTE_PROTOCOL cryptonote_protocol/*)
|
|
|
|
file(GLOB_RECURSE DAEMON daemon/*)
|
|
|
|
file(GLOB_RECURSE P2P p2p/*)
|
|
|
|
file(GLOB_RECURSE RPC rpc/*)
|
|
|
|
file(GLOB_RECURSE SIMPLEWALLET simplewallet/*)
|
|
|
|
file(GLOB_RECURSE CONN_TOOL connectivity_tool/*)
|
|
|
|
file(GLOB_RECURSE WALLET wallet/*)
|
|
|
|
file(GLOB_RECURSE MINER miner/*)
|
|
|
|
|
|
|
|
source_group(common FILES ${COMMON})
|
|
|
|
source_group(crypto FILES ${CRYPTO})
|
|
|
|
source_group(cryptonote_core FILES ${CRYPTONOTE_CORE})
|
|
|
|
source_group(cryptonote_protocol FILES ${CRYPTONOTE_PROTOCOL})
|
|
|
|
source_group(daemon FILES ${DAEMON})
|
|
|
|
source_group(p2p FILES ${P2P})
|
|
|
|
source_group(rpc FILES ${RPC})
|
|
|
|
source_group(simplewallet FILES ${SIMPLEWALLET})
|
|
|
|
source_group(connectivity-tool FILES ${CONN_TOOL})
|
|
|
|
source_group(wallet FILES ${WALLET})
|
|
|
|
source_group(simpleminer FILES ${MINER})
|
|
|
|
|
|
|
|
add_library(common ${COMMON})
|
|
|
|
add_library(crypto ${CRYPTO})
|
|
|
|
add_library(cryptonote_core ${CRYPTONOTE_CORE})
|
|
|
|
add_executable(daemon ${DAEMON} ${P2P} ${CRYPTONOTE_PROTOCOL})
|
|
|
|
add_executable(connectivity_tool ${CONN_TOOL})
|
|
|
|
add_executable(simpleminer ${MINER})
|
2014-06-11 17:15:23 +00:00
|
|
|
target_link_libraries(daemon rpc cryptonote_core crypto common upnpc-static ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
|
|
|
target_link_libraries(connectivity_tool cryptonote_core crypto common ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
|
|
|
target_link_libraries(simpleminer cryptonote_core crypto common ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
2014-03-03 22:07:58 +00:00
|
|
|
add_library(rpc ${RPC})
|
|
|
|
add_library(wallet ${WALLET})
|
|
|
|
add_executable(simplewallet ${SIMPLEWALLET} )
|
2014-06-11 17:15:23 +00:00
|
|
|
target_link_libraries(simplewallet wallet rpc cryptonote_core crypto common upnpc-static ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
2014-03-03 22:07:58 +00:00
|
|
|
add_dependencies(daemon version)
|
2014-04-09 12:14:35 +00:00
|
|
|
add_dependencies(rpc version)
|
|
|
|
add_dependencies(simplewallet version)
|
2014-03-03 22:07:58 +00:00
|
|
|
|
|
|
|
set_property(TARGET common crypto cryptonote_core rpc wallet PROPERTY FOLDER "libs")
|
|
|
|
set_property(TARGET daemon simplewallet connectivity_tool simpleminer PROPERTY FOLDER "prog")
|
2014-04-17 21:21:40 +00:00
|
|
|
set_property(TARGET daemon PROPERTY OUTPUT_NAME "bitmonerod")
|