]> git.proxmox.com Git - libgit2.git/blob - CMakeLists.txt
Merge pull request #1204 from arrbee/diff-blob-to-buffer
[libgit2.git] / CMakeLists.txt
1 # CMake build script for the libgit2 project
2 #
3 # Building (out of source build):
4 # > mkdir build && cd build
5 # > cmake .. [-DSETTINGS=VALUE]
6 # > cmake --build .
7 #
8 # Testing:
9 # > ctest -V
10 #
11 # Install:
12 # > cmake --build . --target install
13
14 PROJECT(libgit2 C)
15 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
16
17 # Build options
18 #
19 OPTION( BUILD_SHARED_LIBS "Build Shared Library (OFF for Static)" ON )
20 OPTION( THREADSAFE "Build libgit2 as threadsafe" OFF )
21 OPTION( BUILD_CLAR "Build Tests using the Clar suite" ON )
22 OPTION( BUILD_EXAMPLES "Build library usage example apps" OFF )
23 OPTION( TAGS "Generate tags" OFF )
24 OPTION( PROFILE "Generate profiling information" OFF )
25 IF(MSVC)
26 # This option is only availalbe when building with MSVC. By default, libgit2 is
27 # build using the stdcall calling convention, as that's what the CLR expects by
28 # default and how the Windows API is built.
29 #
30 # If you are writing a C or C++ program and want to link to libgit2, you have to
31 # either:
32 # - Add /Gz to the compiler options of _your_ program / library.
33 # - Turn this option off by invoking CMake with the "-DSTDCALL=Off" argument.
34 #
35 OPTION( STDCALL "Build libgit2 with the __stdcall convention" ON )
36 ENDIF()
37
38 # Installation paths
39 #
40 SET(BIN_INSTALL_DIR bin CACHE PATH "Where to install binaries to.")
41 SET(LIB_INSTALL_DIR lib CACHE PATH "Where to install libraries to.")
42 SET(INCLUDE_INSTALL_DIR include CACHE PATH "Where to install headers to.")
43
44 FUNCTION(TARGET_OS_LIBRARIES target)
45 IF(WIN32)
46 TARGET_LINK_LIBRARIES(${target} ws2_32)
47 ELSEIF(CMAKE_SYSTEM_NAME MATCHES "(Solaris|SunOS)")
48 TARGET_LINK_LIBRARIES(${target} socket nsl)
49 ENDIF ()
50 IF(THREADSAFE)
51 TARGET_LINK_LIBRARIES(${target} ${CMAKE_THREAD_LIBS_INIT})
52 ENDIF()
53 ENDFUNCTION()
54
55 # For the MSVC IDE, this function splits up the source files like windows explorer does.
56 # This is esp. useful with the libgit2_clar project, were usually 2 or more files share
57 # the same name.
58 # Sadly, this file grouping is a per-directory option in cmake and not per-target, resulting
59 # in empty virtual folders "tests-clar" for the git2.dll
60 FUNCTION(MSVC_SPLIT_SOURCES target)
61 IF(MSVC_IDE)
62 GET_TARGET_PROPERTY(sources ${target} SOURCES)
63 FOREACH(source ${sources})
64 IF(source MATCHES ".*/")
65 STRING(REPLACE ${CMAKE_CURRENT_SOURCE_DIR}/ "" rel ${source})
66 IF(rel)
67 STRING(REGEX REPLACE "/([^/]*)$" "" rel ${rel})
68 IF(rel)
69 STRING(REPLACE "/" "\\\\" rel ${rel})
70 SOURCE_GROUP(${rel} FILES ${source})
71 ENDIF()
72 ENDIF()
73 ENDIF()
74 ENDFOREACH()
75 ENDIF()
76 ENDFUNCTION()
77
78 FILE(STRINGS "include/git2/version.h" GIT2_HEADER REGEX "^#define LIBGIT2_VERSION \"[^\"]*\"$")
79
80 STRING(REGEX REPLACE "^.*LIBGIT2_VERSION \"([0-9]+).*$" "\\1" LIBGIT2_VERSION_MAJOR "${GIT2_HEADER}")
81 STRING(REGEX REPLACE "^.*LIBGIT2_VERSION \"[0-9]+\\.([0-9]+).*$" "\\1" LIBGIT2_VERSION_MINOR "${GIT2_HEADER}")
82 STRING(REGEX REPLACE "^.*LIBGIT2_VERSION \"[0-9]+\\.[0-9]+\\.([0-9]+).*$" "\\1" LIBGIT2_VERSION_REV "${GIT2_HEADER}")
83 SET(LIBGIT2_VERSION_STRING "${LIBGIT2_VERSION_MAJOR}.${LIBGIT2_VERSION_MINOR}.${LIBGIT2_VERSION_REV}")
84
85 IF (AMIGA)
86 # Default AmigaOS to use the PowerPC SHA1
87 SET(SHA1_TYPE "ppc")
88 ENDIF()
89
90 # Find required dependencies
91 INCLUDE_DIRECTORIES(src include)
92
93 IF (WIN32 AND NOT MINGW)
94 ADD_DEFINITIONS(-DGIT_WINHTTP)
95 ELSE ()
96 FIND_PACKAGE(OpenSSL)
97 FILE(GLOB SRC_HTTP deps/http-parser/*.c)
98 INCLUDE_DIRECTORIES(deps/http-parser)
99 ENDIF()
100
101 # Specify sha1 implementation
102 IF (SHA1_TYPE STREQUAL "ppc")
103 ADD_DEFINITIONS(-DPPC_SHA1)
104 FILE(GLOB SRC_SHA1 src/hash/hash_ppc.c src/hash/hash_ppc_core.S)
105 ELSEIF (WIN32 AND NOT MINGW AND NOT SHA1_TYPE STREQUAL "builtin")
106 ADD_DEFINITIONS(-DWIN32_SHA1)
107 FILE(GLOB SRC_SHA1 src/hash/hash_win32.c)
108 ELSEIF (OPENSSL_FOUND AND NOT SHA1_TYPE STREQUAL "builtin")
109 ADD_DEFINITIONS(-DOPENSSL_SHA1)
110 ELSE()
111 FILE(GLOB SRC_SHA1 src/hash/hash_generic.c)
112 ENDIF()
113
114 # Include POSIX regex when it is required
115 IF(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "AmigaOS")
116 INCLUDE_DIRECTORIES(deps/regex)
117 SET(SRC_REGEX deps/regex/regex.c)
118 ENDIF()
119
120 # Optional external dependency: zlib
121 IF(NOT ZLIB_LIBRARY)
122 # It's optional, but FIND_PACKAGE gives a warning that looks more like an error.
123 FIND_PACKAGE(ZLIB QUIET)
124 ENDIF()
125 IF (ZLIB_FOUND)
126 INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIRS})
127 LINK_LIBRARIES(${ZLIB_LIBRARIES})
128 ELSE()
129 MESSAGE( "zlib was not found; using bundled 3rd-party sources." )
130 INCLUDE_DIRECTORIES(deps/zlib)
131 ADD_DEFINITIONS(-DNO_VIZ -DSTDC -DNO_GZIP)
132 FILE(GLOB SRC_ZLIB deps/zlib/*.c)
133 ENDIF()
134
135 # Platform specific compilation flags
136 IF (MSVC)
137
138 STRING(REPLACE "/Zm1000" " " CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
139
140 SET(CMAKE_C_FLAGS "/MP /nologo /Zi ${CMAKE_C_FLAGS}")
141 IF (STDCALL)
142 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /Gz")
143 ENDIF ()
144 SET(CMAKE_C_FLAGS_DEBUG "/Od /DEBUG /MTd /RTC1 /RTCs /RTCu")
145 SET(CMAKE_C_FLAGS_RELEASE "/MT /O2")
146 SET(WIN_RC "src/win32/git2.rc")
147
148 # Precompiled headers
149
150 ELSE ()
151 SET(CMAKE_C_FLAGS "-D_GNU_SOURCE -Wall -Wextra -Wno-missing-field-initializers -Wstrict-aliasing=2 -Wstrict-prototypes ${CMAKE_C_FLAGS}")
152 IF (MINGW) # MinGW always does PIC and complains if we tell it to
153 STRING(REGEX REPLACE "-fPIC" "" CMAKE_SHARED_LIBRARY_C_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS}")
154 ELSE ()
155 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -fPIC")
156 ENDIF ()
157 IF (APPLE) # Apple deprecated OpenSSL
158 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")
159 ENDIF ()
160 IF (PROFILE)
161 SET(CMAKE_C_FLAGS "-pg ${CMAKE_C_FLAGS}")
162 SET(CMAKE_EXE_LINKER_FLAGS "-pg ${CMAKE_EXE_LINKER_FLAGS}")
163 ENDIF ()
164 ENDIF()
165
166 IF( NOT CMAKE_CONFIGURATION_TYPES )
167 # Build Debug by default
168 IF (NOT CMAKE_BUILD_TYPE)
169 SET(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
170 ENDIF ()
171 ELSE()
172 # Using a multi-configuration generator eg MSVC or Xcode
173 # that uses CMAKE_CONFIGURATION_TYPES and not CMAKE_BUILD_TYPE
174 ENDIF()
175
176 IF (OPENSSL_FOUND)
177 ADD_DEFINITIONS(-DGIT_SSL)
178 INCLUDE_DIRECTORIES(${OPENSSL_INCLUDE_DIR})
179 SET(SSL_LIBRARIES ${OPENSSL_LIBRARIES})
180 ENDIF()
181
182 IF (THREADSAFE)
183 IF (NOT WIN32)
184 find_package(Threads REQUIRED)
185 ENDIF()
186
187 ADD_DEFINITIONS(-DGIT_THREADS)
188 ENDIF()
189
190 ADD_DEFINITIONS(-D_FILE_OFFSET_BITS=64)
191
192 # Collect sourcefiles
193 FILE(GLOB SRC_H include/git2/*.h)
194
195 # On Windows use specific platform sources
196 IF (WIN32 AND NOT CYGWIN)
197 ADD_DEFINITIONS(-DWIN32 -D_DEBUG -D_WIN32_WINNT=0x0501)
198 FILE(GLOB SRC_OS src/win32/*.c)
199 ELSEIF (AMIGA)
200 ADD_DEFINITIONS(-DNO_ADDRINFO -DNO_READDIR_R)
201 FILE(GLOB SRC_OS src/amiga/*.c)
202 ELSE()
203 FILE(GLOB SRC_OS src/unix/*.c)
204 ENDIF()
205 FILE(GLOB SRC_GIT2 src/*.c src/transports/*.c src/xdiff/*.c)
206
207 # Compile and link libgit2
208 ADD_LIBRARY(git2 ${SRC_GIT2} ${SRC_OS} ${SRC_ZLIB} ${SRC_HTTP} ${SRC_REGEX} ${SRC_SHA1} ${WIN_RC})
209 TARGET_LINK_LIBRARIES(git2 ${SSL_LIBRARIES})
210 TARGET_OS_LIBRARIES(git2)
211
212 MSVC_SPLIT_SOURCES(git2)
213
214 SET_TARGET_PROPERTIES(git2 PROPERTIES VERSION ${LIBGIT2_VERSION_STRING})
215 SET_TARGET_PROPERTIES(git2 PROPERTIES SOVERSION ${LIBGIT2_VERSION_MAJOR})
216 CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/libgit2.pc.in ${CMAKE_CURRENT_BINARY_DIR}/libgit2.pc @ONLY)
217
218 IF (MSVC_IDE)
219 # Precompiled headers
220 SET_TARGET_PROPERTIES(git2 PROPERTIES COMPILE_FLAGS "/Yuprecompiled.h /FIprecompiled.h")
221 SET_SOURCE_FILES_PROPERTIES(src/win32/precompiled.c COMPILE_FLAGS "/Ycprecompiled.h")
222 ENDIF ()
223
224 # Install
225 INSTALL(TARGETS git2
226 RUNTIME DESTINATION ${BIN_INSTALL_DIR}
227 LIBRARY DESTINATION ${LIB_INSTALL_DIR}
228 ARCHIVE DESTINATION ${LIB_INSTALL_DIR}
229 )
230 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libgit2.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig )
231 INSTALL(DIRECTORY include/git2 DESTINATION ${INCLUDE_INSTALL_DIR} )
232 INSTALL(FILES include/git2.h DESTINATION ${INCLUDE_INSTALL_DIR} )
233
234 # Tests
235 IF (BUILD_CLAR)
236 FIND_PACKAGE(PythonInterp REQUIRED)
237
238 SET(CLAR_FIXTURES "${CMAKE_CURRENT_SOURCE_DIR}/tests-clar/resources/")
239 SET(CLAR_PATH "${CMAKE_CURRENT_SOURCE_DIR}/tests-clar")
240 SET(CLAR_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/tests-clar/resources" CACHE PATH "Path to test resources.")
241 ADD_DEFINITIONS(-DCLAR_FIXTURE_PATH=\"${CLAR_FIXTURES}\")
242 ADD_DEFINITIONS(-DCLAR_RESOURCES=\"${TEST_RESOURCES}\")
243
244 INCLUDE_DIRECTORIES(${CLAR_PATH})
245 FILE(GLOB_RECURSE SRC_TEST ${CLAR_PATH}/*/*.c)
246 SET(SRC_CLAR "${CLAR_PATH}/main.c" "${CLAR_PATH}/clar_libgit2.c" "${CLAR_PATH}/clar.c")
247
248 ADD_CUSTOM_COMMAND(
249 OUTPUT ${CLAR_PATH}/clar.suite
250 COMMAND ${PYTHON_EXECUTABLE} generate.py -xonline .
251 DEPENDS ${SRC_TEST}
252 WORKING_DIRECTORY ${CLAR_PATH}
253 )
254
255 SET_SOURCE_FILES_PROPERTIES(
256 ${CLAR_PATH}/clar.c
257 PROPERTIES OBJECT_DEPENDS ${CLAR_PATH}/clar.suite)
258
259 ADD_EXECUTABLE(libgit2_clar ${SRC_GIT2} ${SRC_OS} ${SRC_CLAR} ${SRC_TEST} ${SRC_ZLIB} ${SRC_HTTP} ${SRC_REGEX} ${SRC_SHA1})
260
261 TARGET_LINK_LIBRARIES(libgit2_clar ${SSL_LIBRARIES})
262 TARGET_OS_LIBRARIES(libgit2_clar)
263 MSVC_SPLIT_SOURCES(libgit2_clar)
264
265 IF (MSVC_IDE)
266 # Precompiled headers
267 SET_TARGET_PROPERTIES(libgit2_clar PROPERTIES COMPILE_FLAGS "/Yuprecompiled.h /FIprecompiled.h")
268 ENDIF ()
269
270 ENABLE_TESTING()
271 ADD_TEST(libgit2_clar libgit2_clar -ionline)
272 ENDIF ()
273
274 IF (TAGS)
275 FIND_PROGRAM(CTAGS ctags)
276 IF (NOT CTAGS)
277 message(FATAL_ERROR "Could not find ctags command")
278 ENDIF ()
279
280 FILE(GLOB_RECURSE SRC_ALL *.[ch])
281
282 ADD_CUSTOM_COMMAND(
283 OUTPUT tags
284 COMMAND ${CTAGS} -a ${SRC_ALL}
285 DEPENDS ${SRC_ALL}
286 )
287 ADD_CUSTOM_TARGET(
288 do_tags ALL
289 DEPENDS tags
290 )
291 ENDIF ()
292
293 IF (BUILD_EXAMPLES)
294 FILE(GLOB_RECURSE EXAMPLE_SRC examples/network/*.c)
295 ADD_EXECUTABLE(cgit2 ${EXAMPLE_SRC})
296 TARGET_LINK_LIBRARIES(cgit2 git2 pthread)
297
298 ADD_EXECUTABLE(git-diff examples/diff.c)
299 TARGET_LINK_LIBRARIES(git-diff git2)
300
301 ADD_EXECUTABLE(git-general examples/general.c)
302 TARGET_LINK_LIBRARIES(git-general git2)
303
304 ADD_EXECUTABLE(git-showindex examples/showindex.c)
305 TARGET_LINK_LIBRARIES(git-showindex git2)
306 ENDIF ()