Skip to content

Commit 53f830d

Browse files
committed
move build dir
1 parent 154f4e4 commit 53f830d

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

eosio.assert/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
add_executable(eosio.assert.wasm
1+
add_executable(eosio.assert.wasm
22
${CMAKE_CURRENT_SOURCE_DIR}/src/eosio.assert.cpp
33
)
44

@@ -10,6 +10,6 @@ target_include_directories(eosio.assert.wasm
1010

1111
set_target_properties(eosio.assert.wasm
1212
PROPERTIES
13-
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bin/eosio.assert")
13+
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
1414

15-
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/abi/eosio.assert.abi" "${CMAKE_CURRENT_SOURCE_DIR}/bin/eosio.assert" COPYONLY)
15+
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/abi/eosio.assert.abi" "${CMAKE_CURRENT_BINARY_DIR}" COPYONLY)

eosio.assert/bin/eosio.assert/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

tests/contracts.hpp.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace eosio { namespace testing {
55

66
struct contracts {
7-
static std::vector<uint8_t> eosio_assert_wasm() { return read_wasm("${CMAKE_BINARY_DIR}/../../eosio.assert/bin/eosio.assert/eosio.assert.wasm"); }
8-
static std::vector<char> eosio_assert_abi() { return read_abi("${CMAKE_BINARY_DIR}/../../eosio.assert/bin/eosio.assert/eosio.assert.abi"); }
7+
static std::vector<uint8_t> eosio_assert_wasm() { return read_wasm("${CMAKE_BINARY_DIR}/../eosio.assert/eosio.assert.wasm"); }
8+
static std::vector<char> eosio_assert_abi() { return read_abi("${CMAKE_BINARY_DIR}/../eosio.assert/eosio.assert.abi"); }
99
};
1010
}} //ns eosio::testing

0 commit comments

Comments
 (0)