CMakeLists.txt 527 字节
Newer Older
1 2
file(GLOB HEADERS "include/eos/wallet_plugin/*.hpp")
add_library( wallet_plugin
3
             wallet.cpp
4
             wallet_plugin.cpp
5
             wallet_manager.cpp
6 7 8 9 10 11 12 13 14 15 16 17 18
             ${HEADERS} )

target_link_libraries( wallet_plugin eos_chain appbase )
target_include_directories( wallet_plugin PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )

install( TARGETS
   wallet_plugin

   RUNTIME DESTINATION bin
   LIBRARY DESTINATION lib
   ARCHIVE DESTINATION lib
)
install( FILES ${HEADERS} DESTINATION "include/eos/wallet_plugin" )