CMakeLists.txt 344 字节
Newer Older
1
file(GLOB HEADERS "include/eosio/wallet_plugin/*.hpp")
2
add_library( wallet_plugin
3
             wallet.cpp
4
             wallet_plugin.cpp
5
             wallet_manager.cpp
6 7
             ${HEADERS} )

D
Daniel Larimer 已提交
8
target_link_libraries( wallet_plugin eosio_chain appbase )
9
target_include_directories( wallet_plugin PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )