mirror of
https://github.com/logos-blockchain/logos-execution-zone-module.git
synced 2026-05-21 12:09:26 +00:00
Merge pull request #17 from logos-blockchain/chore/renameModule
chore: make module name small due to the macos limit of 104 characters
This commit is contained in:
commit
e13c262dc0
@ -152,7 +152,7 @@ add_library(logos_cpp_sdk INTERFACE)
|
|||||||
target_include_directories(logos_cpp_sdk INTERFACE "${SDK_INC}")
|
target_include_directories(logos_cpp_sdk INTERFACE "${SDK_INC}")
|
||||||
|
|
||||||
# ---- Plugin ----
|
# ---- Plugin ----
|
||||||
set(PLUGIN_TARGET logos_execution_zone_wallet_module)
|
set(PLUGIN_TARGET lez_wallet_module_plugin)
|
||||||
|
|
||||||
qt_add_plugin(${PLUGIN_TARGET} CLASS_NAME LogosExecutionZoneWalletModule)
|
qt_add_plugin(${PLUGIN_TARGET} CLASS_NAME LogosExecutionZoneWalletModule)
|
||||||
|
|
||||||
@ -182,6 +182,11 @@ target_compile_definitions(${PLUGIN_TARGET} PRIVATE
|
|||||||
|
|
||||||
add_dependencies(${PLUGIN_TARGET} logos_execution_zone_libs)
|
add_dependencies(${PLUGIN_TARGET} logos_execution_zone_libs)
|
||||||
|
|
||||||
|
set_target_properties(${PLUGIN_TARGET} PROPERTIES
|
||||||
|
PREFIX ""
|
||||||
|
OUTPUT_NAME "lez_wallet_module_plugin"
|
||||||
|
)
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
set_target_properties(${PLUGIN_TARGET} PROPERTIES
|
set_target_properties(${PLUGIN_TARGET} PROPERTIES
|
||||||
BUILD_RPATH "@loader_path"
|
BUILD_RPATH "@loader_path"
|
||||||
|
|||||||
@ -101,7 +101,7 @@
|
|||||||
program =
|
program =
|
||||||
"${pkgs.writeShellScriptBin "inspect-module" ''
|
"${pkgs.writeShellScriptBin "inspect-module" ''
|
||||||
exec ${logosModuleViewerPackage}/bin/logos-module-viewer \
|
exec ${logosModuleViewerPackage}/bin/logos-module-viewer \
|
||||||
--module ${logosExecutionZoneWalletModuleLib}/lib/liblogos_execution_zone_wallet_module.${extension}
|
--module ${logosExecutionZoneWalletModuleLib}/lib/lez_wallet_module_plugin.${extension}
|
||||||
''}/bin/inspect-module";
|
''}/bin/inspect-module";
|
||||||
};
|
};
|
||||||
in
|
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"}
|
${LOGOS_EXECUTION_ZONE_WALLET_INCLUDE:+-DLOGOS_EXECUTION_ZONE_WALLET_INCLUDE="$LOGOS_EXECUTION_ZONE_WALLET_INCLUDE"}
|
||||||
|
|
||||||
build: configure
|
build: configure
|
||||||
cmake --build build --parallel --target logos_execution_zone_wallet_module
|
cmake --build build --parallel --target lez_wallet_module_plugin
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf build result
|
rm -rf build result
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "liblogos_execution_zone_wallet_module",
|
"name": "lez_wallet_module",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "Logos Execution Zone Wallet Module for Logos Core",
|
"description": "Logos Execution Zone Wallet Module for Logos Core",
|
||||||
"author": "Logos Blockchain Team",
|
"author": "Logos Blockchain Team",
|
||||||
"type": "core",
|
"type": "core",
|
||||||
"category": "blockchain",
|
"category": "blockchain",
|
||||||
"main": "liblogos_execution_zone_wallet_module",
|
"main": "lez_wallet_module_plugin",
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"capabilities": [],
|
"capabilities": [],
|
||||||
"include": ["libnomos.dylib"]
|
"include": ["libnomos.dylib"]
|
||||||
|
|||||||
@ -189,7 +189,7 @@ LogosExecutionZoneWalletModule::~LogosExecutionZoneWalletModule() {
|
|||||||
// === Plugin Interface ===
|
// === Plugin Interface ===
|
||||||
|
|
||||||
QString LogosExecutionZoneWalletModule::name() const {
|
QString LogosExecutionZoneWalletModule::name() const {
|
||||||
return "liblogos_execution_zone_wallet_module";
|
return "lez_wallet_module";
|
||||||
}
|
}
|
||||||
|
|
||||||
QString LogosExecutionZoneWalletModule::version() const {
|
QString LogosExecutionZoneWalletModule::version() const {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user