File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
- add_executable (eosio.assert.wasm
1
+ add_executable (eosio.assert.wasm
2
2
${CMAKE_CURRENT_SOURCE_DIR} /src/eosio.assert.cpp
3
3
)
4
4
@@ -10,6 +10,6 @@ target_include_directories(eosio.assert.wasm
10
10
11
11
set_target_properties (eosio.assert.wasm
12
12
PROPERTIES
13
- RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR} /bin/eosio.assert " )
13
+ RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR} " )
14
14
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 )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
namespace eosio { namespace testing {
5
5
6
6
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"); }
9
9
};
10
10
}} //ns eosio::testing
You can’t perform that action at this time.
0 commit comments