mirror of
https://github.com/logos-blockchain/logos-blockchain-ui.git
synced 2026-07-08 08:49:35 +00:00
* Modify views * Use structure view for blocks events * Stability fixes * Add cryptarchia info block * Hide settings button on run * Pinnable accounts operation * Use stylish pin button * Show balance on transfer * Stop node on leave * Add info box with peer id * Add vouchers view to leader claim with pending counter * Add help buttons * Remove tx useless label * Update module
28 lines
734 B
CMake
28 lines
734 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
project(BlockchainUiPlugin LANGUAGES CXX)
|
|
|
|
if(DEFINED ENV{LOGOS_MODULE_BUILDER_ROOT})
|
|
include($ENV{LOGOS_MODULE_BUILDER_ROOT}/cmake/LogosModule.cmake)
|
|
else()
|
|
message(FATAL_ERROR "LogosModule.cmake not found. Set LOGOS_MODULE_BUILDER_ROOT.")
|
|
endif()
|
|
|
|
logos_module(
|
|
NAME blockchain_ui
|
|
REP_FILE src/BlockchainBackend.rep
|
|
SOURCES
|
|
src/BlockchainPluginInterface.h
|
|
src/BlockchainPlugin.h
|
|
src/BlockchainPlugin.cpp
|
|
src/BlockchainBackend.h
|
|
src/BlockchainBackend.cpp
|
|
src/AccountsModel.h
|
|
src/AccountsModel.cpp
|
|
src/BlockModel.h
|
|
src/BlockModel.cpp
|
|
FIND_PACKAGES
|
|
Qt6Gui
|
|
LINK_LIBRARIES
|
|
Qt6::Gui
|
|
)
|