Move the transports to their own directory

This commit is contained in:
Carlos Martín Nieto 2011-10-07 00:44:41 +02:00 committed by Vicent Marti
parent 8c2528748d
commit dfafb03bdc
4 changed files with 2 additions and 2 deletions

View File

@ -91,9 +91,9 @@ FILE(GLOB SRC_H include/git2/*.h)
# On Windows use specific platform sources # On Windows use specific platform sources
IF (WIN32 AND NOT CYGWIN) IF (WIN32 AND NOT CYGWIN)
ADD_DEFINITIONS(-DWIN32 -D_DEBUG) 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() ELSE()
FILE(GLOB SRC src/*.c src/unix/*.c) FILE(GLOB SRC src/*.c src/transports/*.c src/unix/*.c)
ENDIF () ENDIF ()
# Compile and link libgit2 # Compile and link libgit2