summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
-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