Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2021-10-30 13:02:28 +0300
committerSimon Tatham <anakin@pobox.com>2021-10-30 19:29:24 +0300
commit971c70e6031f3fcfd043c59a75ed886b1b1df905 (patch)
tree50462e371b34b5bbe06fcff040793ecfbd1c1ff6 /CMakeLists.txt
parent76dc28552c401a4cd77d2bdd8b2a756c52334c06 (diff)
Move proxy-related source files into a subdirectory.
There are quite a few of them already, and I'm about to make another one, so let's start with a bit of tidying up. The CMake build organisation is unchanged: I haven't put the proxy object files into a separate library, just moved the locations of the source files. (Organising proxying as a library would be tricky anyway, because of the various overrides for tools that want to avoid cryptography.)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 16a0bc96..15670d69 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -29,11 +29,11 @@ add_library(settings STATIC
cmdline.c settings.c)
add_library(crypto STATIC
- cproxy.c sshproxy.c)
+ proxy/cproxy.c proxy/sshproxy.c)
add_subdirectory(crypto)
add_library(network STATIC
- be_misc.c nullplug.c errsock.c proxy.c logging.c x11disp.c)
+ be_misc.c nullplug.c errsock.c proxy/proxy.c logging.c x11disp.c)
add_library(keygen STATIC
import.c)
@@ -119,8 +119,8 @@ add_executable(psocks
${platform}/psocks.c
psocks.c
norand.c
- nocproxy.c
- nosshproxy.c
+ proxy/nocproxy.c
+ proxy/nosshproxy.c
ssh/portfwd.c)
target_link_libraries(psocks
eventloop console network utils