diff --git a/CMakeLists.txt b/CMakeLists.txt index ea7827c6b7..925dcf8e3c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,7 +77,7 @@ set(VENDOR "EOSNetworkFoundation") set(PROJECT_NAME "cdt") set(DESC "Toolchain and supporting tools to facilitate C/C++ development of contracts for Antelope blockchains") set(URL "https://github.com/AntelopeIO/cdt") -set(EMAIL "bucky.kittinger@eosnetwork.com") +set(EMAIL "support@eosnetwork.com") configure_file(${CMAKE_SOURCE_DIR}/scripts/generate_package.sh.in ${CMAKE_BINARY_DIR}/packages/generate_package.sh @ONLY) configure_file(${CMAKE_SOURCE_DIR}/scripts/generate_deb.sh ${CMAKE_BINARY_DIR}/packages/generate_deb.sh COPYONLY) configure_file(${CMAKE_SOURCE_DIR}/scripts/generate_bottle.sh ${CMAKE_BINARY_DIR}/packages/generate_bottle.sh COPYONLY) diff --git a/examples/hello/README.txt b/examples/hello/README.txt index 62876f1852..56c1ae60bd 100644 --- a/examples/hello/README.txt +++ b/examples/hello/README.txt @@ -11,9 +11,9 @@ - Additions to cmake should be done to the CMakeLists.txt in the './src' directory and not in the top level CMakeLists.txt - -- How to build with eosio-cpp -- + -- How to build with cdt-cpp -- - cd into the 'build' directory - - run the command 'eosio-cpp -abigen ../src/hello.cpp -o hello.wasm -I ../include/' + - run the command 'cdt-cpp -abigen ../src/hello.cpp -o hello.wasm -I ../include/' - After build - - The built smart contract is in the 'build' directory diff --git a/examples/multi_index_example/README.txt b/examples/multi_index_example/README.txt index 6472e46aeb..578198ef48 100644 --- a/examples/multi_index_example/README.txt +++ b/examples/multi_index_example/README.txt @@ -11,9 +11,9 @@ - Additions to CMake should be done to the CMakeLists.txt in the './src' directory and not in the top level CMakeLists.txt - -- How to build with eosio-cpp -- + -- How to build with cdt-cpp -- - cd into the 'build' directory - - run the command 'eosio-cpp -abigen ../src/multi_index_example.cpp -o multi_index_example.wasm -I ../include/' + - run the command 'cdt-cpp -abigen ../src/multi_index_example.cpp -o multi_index_example.wasm -I ../include/' - After build - - The built smart contract is in the 'build' directory diff --git a/examples/multi_index_large/README.txt b/examples/multi_index_large/README.txt index 770e7371d4..5797be87ef 100644 --- a/examples/multi_index_large/README.txt +++ b/examples/multi_index_large/README.txt @@ -11,9 +11,9 @@ - Additions to CMake should be done to the CMakeLists.txt in the './src' directory and not in the top level CMakeLists.txt - -- How to build with eosio-cpp -- + -- How to build with cdt-cpp -- - cd into the 'build' directory - - run the command 'eosio-cpp -abigen ../src/multi_index_large.cpp -o multi_index_large.wasm -I ../include/' + - run the command 'cdt-cpp -abigen ../src/multi_index_large.cpp -o multi_index_large.wasm -I ../include/' - After build - - The built smart contract is in the 'build' directory diff --git a/examples/send_inline/README.txt b/examples/send_inline/README.txt index cc86cbc385..6c5d75d641 100644 --- a/examples/send_inline/README.txt +++ b/examples/send_inline/README.txt @@ -11,9 +11,9 @@ - Additions to CMake should be done to the CMakeLists.txt in the './src' directory and not in the top level CMakeLists.txt - -- How to build with eosio-cpp -- + -- How to build with cdt-cpp -- - cd into the 'build' directory - - run the command 'eosio-cpp -abigen ../src/send_inline.cpp -o send_inline.wasm -I ../include/ -I ../../hello/include/' + - run the command 'cdt-cpp -abigen ../src/send_inline.cpp -o send_inline.wasm -I ../include/ -I ../../hello/include/' - After build - - The built smart contract is in the 'build' directory diff --git a/examples/singleton_example/README.txt b/examples/singleton_example/README.txt index 8d948e46a0..06b7c198bd 100644 --- a/examples/singleton_example/README.txt +++ b/examples/singleton_example/README.txt @@ -11,9 +11,9 @@ - Additions to CMake should be done to the CMakeLists.txt in the './src' directory and not in the top level CMakeLists.txt - -- How to build with eosio-cpp -- + -- How to build with cdt-cpp -- - cd into the 'build' directory - - run the command 'eosio-cpp -abigen ../src/singleton_example.cpp -o singleton_example.wasm -I ../include/' + - run the command 'cdt-cpp -abigen ../src/singleton_example.cpp -o singleton_example.wasm -I ../include/' - After build - - The built smart contract is in the 'build' directory diff --git a/tests/unit/version_tests.sh b/tests/unit/version_tests.sh index 419010f76e..b08d9ccc0f 100755 --- a/tests/unit/version_tests.sh +++ b/tests/unit/version_tests.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail # The purpose of this test is to ensure that the output of the "cdt-cpp --version" command matches the version string defined by our CMake files -echo '##### Eosio-cpp Version Label Test #####' +echo '##### cdt-cpp Version Label Test #####' # orient ourselves [[ -z "$BUILD_ROOT" ]] && export BUILD_ROOT="$(pwd)" echo "Using BUILD_ROOT=\"$BUILD_ROOT\"." @@ -24,7 +24,7 @@ ACTUAL=$($BUILD_ROOT/bin/cdt-cpp --version) EXIT_CODE=$? # verify 0 exit code explicitly if [[ $EXIT_CODE -ne 0 ]]; then - echo "Eosio-cpp produced non-zero exit code \"$EXIT_CODE\"." + echo "cdt-cpp produced non-zero exit code \"$EXIT_CODE\"." exit $EXIT_CODE fi # test version