Skip to content

Commit d3d8e90

Browse files
Tor and I2P managers implementation
1 parent f834eec commit d3d8e90

7 files changed

Lines changed: 962 additions & 6 deletions

File tree

external/CMakeLists.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,3 @@ if(WIN32)
1515
else()
1616
set(I2PD_BINARY ${CMAKE_BINARY_DIR}/external/i2pd/build/i2pd)
1717
endif()
18-
19-
add_custom_target(copy_i2pd_binary ALL
20-
COMMAND ${CMAKE_COMMAND} -E copy
21-
${I2PD_BINARY}
22-
${CMAKE_BINARY_DIR}/bin/
23-
)

src/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ file(GLOB SOURCE_FILES
3636
"libwalletqt/UnsignedTransaction.h"
3737
"daemon/*.h"
3838
"daemon/*.cpp"
39+
"tor/*.h"
40+
"tor/*.cpp"
41+
"i2p/*.h"
42+
"i2p/*.cpp"
3943
"p2pool/*.h"
4044
"p2pool/*.cpp"
4145
"model/*.h"
@@ -100,6 +104,8 @@ target_include_directories(monero-wallet-gui PUBLIC
100104
${CMAKE_CURRENT_SOURCE_DIR}
101105
${CMAKE_CURRENT_SOURCE_DIR}/daemon
102106
${CMAKE_CURRENT_SOURCE_DIR}/p2pool
107+
${CMAKE_CURRENT_SOURCE_DIR}/tor
108+
${CMAKE_CURRENT_SOURCE_DIR}/i2p
103109
${CMAKE_CURRENT_SOURCE_DIR}/libwalletqt
104110
${CMAKE_CURRENT_SOURCE_DIR}/model
105111
${CMAKE_CURRENT_SOURCE_DIR}/QR-Code-scanner

0 commit comments

Comments
 (0)