diff options
author | Carlos MartÃn Nieto <carlos@cmartin.tk> | 2011-10-07 00:44:41 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-10-12 21:34:25 +0200 |
commit | dfafb03bdce0fd83e374a901ccbc43af02aec88b (patch) | |
tree | 7f89fe4cff448c719d3aa987f7d742e6e28cc5fe | |
parent | 8c2528748d6e0671a61ce729318a9f4e44f51111 (diff) | |
download | libgit2-dfafb03bdce0fd83e374a901ccbc43af02aec88b.tar.gz |
Move the transports to their own directory
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/transports/git.c (renamed from src/transport_git.c) | 0 | ||||
-rw-r--r-- | src/transports/http.c (renamed from src/transport-http.c) | 0 | ||||
-rw-r--r-- | src/transports/local.c (renamed from src/transport_local.c) | 0 |
4 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fff125df9..ba646b61f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,9 +91,9 @@ FILE(GLOB SRC_H include/git2/*.h) # On Windows use specific platform sources IF (WIN32 AND NOT CYGWIN) ADD_DEFINITIONS(-DWIN32 -D_DEBUG) - FILE(GLOB SRC src/*.c src/win32/*.c) + FILE(GLOB SRC src/*.c src/transports/*.c src/win32/*.c) ELSE() - FILE(GLOB SRC src/*.c src/unix/*.c) + FILE(GLOB SRC src/*.c src/transports/*.c src/unix/*.c) ENDIF () # Compile and link libgit2 diff --git a/src/transport_git.c b/src/transports/git.c index 489807851..489807851 100644 --- a/src/transport_git.c +++ b/src/transports/git.c diff --git a/src/transport-http.c b/src/transports/http.c index 3426b34e1..3426b34e1 100644 --- a/src/transport-http.c +++ b/src/transports/http.c diff --git a/src/transport_local.c b/src/transports/local.c index 3f47e9b89..3f47e9b89 100644 --- a/src/transport_local.c +++ b/src/transports/local.c |