mirror of
https://github.com/logos-blockchain/logos-execution-zone-module.git
synced 2026-04-03 04:33:08 +00:00
Merge pull request #5 from logos-blockchain/chore/nameWithUnderscores
chore: rename generted lib with only _ no -
This commit is contained in:
commit
1291c40777
@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.20)
|
||||
project(logos-execution-zone-wallet-module LANGUAGES CXX)
|
||||
project(logos_execution_zone_wallet_module LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
@ -152,7 +152,7 @@ add_library(logos_cpp_sdk INTERFACE)
|
||||
target_include_directories(logos_cpp_sdk INTERFACE "${SDK_INC}")
|
||||
|
||||
# ---- Plugin ----
|
||||
set(PLUGIN_TARGET logos-execution-zone-wallet-module)
|
||||
set(PLUGIN_TARGET logos_execution_zone_wallet_module)
|
||||
|
||||
qt_add_plugin(${PLUGIN_TARGET} CLASS_NAME LogosExecutionZoneWalletModule)
|
||||
|
||||
|
||||
6
flake.lock
generated
6
flake.lock
generated
@ -350,11 +350,11 @@
|
||||
"rust-overlay": "rust-overlay"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1771403500,
|
||||
"narHash": "sha256-KnDqKhMjNjknUdtSupIhrTOR8CUCVHEi8ZEkEb/DUKU=",
|
||||
"lastModified": 1771420202,
|
||||
"narHash": "sha256-r3lO12wvYPm6Xe7YFGK40iYe+1OID5YlGlup6RGgvs8=",
|
||||
"owner": "logos-blockchain",
|
||||
"repo": "lssa",
|
||||
"rev": "27f31cf3d045506e3f0e887628057e15c7588463",
|
||||
"rev": "89ce9f322a1fc4214ec818e094e6efc97be02d9c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
||||
@ -101,7 +101,7 @@
|
||||
program =
|
||||
"${pkgs.writeShellScriptBin "inspect-module" ''
|
||||
exec ${logosModuleViewerPackage}/bin/logos-module-viewer \
|
||||
--module ${logosExecutionZoneWalletModuleLib}/lib/liblogos-execution-zone-wallet-module.${extension}
|
||||
--module ${logosExecutionZoneWalletModuleLib}/lib/liblogos_execution_zone_wallet_module.${extension}
|
||||
''}/bin/inspect-module";
|
||||
};
|
||||
in
|
||||
|
||||
2
justfile
2
justfile
@ -7,7 +7,7 @@ configure:
|
||||
${LOGOS_EXECUTION_ZONE_WALLET_INCLUDE:+-DLOGOS_EXECUTION_ZONE_WALLET_INCLUDE="$LOGOS_EXECUTION_ZONE_WALLET_INCLUDE"}
|
||||
|
||||
build: configure
|
||||
cmake --build build --parallel --target liblogos-execution-zone-wallet-module
|
||||
cmake --build build --parallel --target logos_execution_zone_wallet_module
|
||||
|
||||
clean:
|
||||
rm -rf build result
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "liblogos-execution-zone-wallet-module",
|
||||
"name": "liblogos_execution_zone_wallet_module",
|
||||
"version": "1.0.0",
|
||||
"description": "Logos Execution Zone Wallet Module for Logos Core",
|
||||
"author": "Logos Blockchain Team",
|
||||
|
||||
@ -137,7 +137,7 @@ LogosExecutionZoneWalletModule::~LogosExecutionZoneWalletModule() {
|
||||
// === Plugin Interface ===
|
||||
|
||||
QString LogosExecutionZoneWalletModule::name() const {
|
||||
return "liblogos-execution-zone-wallet-module";
|
||||
return "liblogos_execution_zone_wallet_module";
|
||||
}
|
||||
|
||||
QString LogosExecutionZoneWalletModule::version() const {
|
||||
@ -147,7 +147,7 @@ QString LogosExecutionZoneWalletModule::version() const {
|
||||
// === Logos Core ===
|
||||
|
||||
void LogosExecutionZoneWalletModule::initLogos(LogosAPI* logosApiInstance) {
|
||||
logosApi = logosApiInstance;
|
||||
logosAPI = logosApiInstance;
|
||||
}
|
||||
|
||||
// === Account Management ===
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user