-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'deploy.py-boost-fix' into 'beos-initial-release'
[BW]: [Fix] -DBOOST_ROOT must be passed to the cmake spawn to use Boost library… See merge request blocktrades/beos-core!3
- Loading branch information
Showing
3 changed files
with
46 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,6 @@ | |
BEOS_REPOSITORY_PATH = "[email protected]:blocktrades/beos-core.git" | ||
BEOS_REPOSITORY_BRANCH = 'beos-initial-release ' | ||
# | ||
EOSIO_SRC_DIR = BEOS_DIR | ||
# eosio build directory - here will land final build | ||
EOSIO_BUILD_DIR = EOSIO_SRC_DIR + "/build" | ||
|
||
MAIN_LOG_PATH = os.path.dirname(os.path.abspath(__file__)) + "/beos_deploy_main.log" | ||
ERROR_LOG_PATH = os.path.dirname(os.path.abspath(__file__)) + "/beos_deploy_main.log" | ||
|
@@ -94,7 +91,7 @@ | |
BEOS_DISTRIB_PRIVATE_KEY = "" | ||
|
||
# path to keosd executable | ||
KEOSD_EXECUTABLE = EOSIO_BUILD_DIR + "/programs/keosd/keosd" | ||
KEOSD_EXECUTABLE = BEOS_BUILD_DIR + "/programs/keosd/keosd" | ||
# keosd ip address | ||
KEOSD_IP_ADDRESS = "127.0.0.1" | ||
# keosd port | ||
|
@@ -105,9 +102,9 @@ | |
KEOSD_PRIVATE_KEY_FILE = None | ||
|
||
# path to cleos executable | ||
CLEOS_EXECUTABLE = EOSIO_BUILD_DIR + "/programs/cleos/cleos" | ||
CLEOS_EXECUTABLE = BEOS_BUILD_DIR + "/programs/cleos/cleos" | ||
# path to nodeos executable | ||
NODEOS_EXECUTABLE = EOSIO_BUILD_DIR + "/programs/nodeos/nodeos" | ||
NODEOS_EXECUTABLE = BEOS_BUILD_DIR + "/programs/nodeos/nodeos" | ||
# nodeos ip address | ||
NODEOS_IP_ADDRESS = "127.0.0.1" | ||
# nodeos port | ||
|
@@ -123,7 +120,7 @@ | |
# name of the master wallet | ||
MASTER_WALLET_NAME = "beos_master_wallet" | ||
# directory with password file for master wallet | ||
WALLET_PASSWORD_DIR = EOSIO_BUILD_DIR + "/wallet/" | ||
WALLET_PASSWORD_DIR = BEOS_BUILD_DIR + "/wallet/" | ||
# password file for master wallet KEEP SECURE | ||
WALLET_PASSWORD_PATH = WALLET_PASSWORD_DIR + "wallet.dat" | ||
# KEEPING KEYS IN PUBLIC FILE IS NOT WISE! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters