Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit 15f9771

Browse files
tomakaandresilva
authored andcommitted
Fix path to parity.h (#9274)
* Fix path to parity.h * Fix other paths as well
1 parent 4242b11 commit 15f9771

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.5)
22
include(ExternalProject)
33

4-
include_directories("${CMAKE_SOURCE_DIR}/../parity-clib")
4+
include_directories("${CMAKE_SOURCE_DIR}/../../parity-clib")
55

66
add_executable(parity-example main.cpp)
77

@@ -11,9 +11,9 @@ ExternalProject_Add(
1111
CONFIGURE_COMMAND ""
1212
BUILD_COMMAND ""
1313
COMMAND cargo build -p parity-clib # Note: use --release in a real project
14-
BINARY_DIR "${CMAKE_SOURCE_DIR}/../target"
14+
BINARY_DIR "${CMAKE_SOURCE_DIR}/../../target"
1515
INSTALL_COMMAND ""
1616
LOG_BUILD ON)
1717

1818
add_dependencies(parity-example libparity)
19-
target_link_libraries(parity-example "${CMAKE_SOURCE_DIR}/../target/debug/libparity.so")
19+
target_link_libraries(parity-example "${CMAKE_SOURCE_DIR}/../../target/debug/libparity.so")

0 commit comments

Comments
 (0)