Raw
1 #
2 # Copyright (c) 2020 Sibi Siddharthan
3 #
4
5 #[[
6
7 Instructions how to use this in Visual Studio:
8
9 Open the worktree as a folder. Visual Studio 2019 and later will detect
10 the CMake configuration automatically and set everything up for you,
11 ready to build. You can then run the tests in `t/` via a regular Git Bash.
12
13 Note: Visual Studio also has the option of opening `CMakeLists.txt`
14 directly; Using this option, Visual Studio will not find the source code,
15 though, therefore the `File>Open>Folder...` option is preferred.
16
17 Instructions to run CMake manually:
18
19 mkdir -p contrib/buildsystems/out
20 cd contrib/buildsystems/out
21 cmake ../ -DCMAKE_BUILD_TYPE=Release
22
23 This will build the git binaries in contrib/buildsystems/out
24 directory (our top-level .gitignore file knows to ignore contents of
25 this directory).
26
27 Possible build configurations(-DCMAKE_BUILD_TYPE) with corresponding
28 compiler flags
29 Debug : -g
30 Release: -O3
31 RelWithDebInfo : -O2 -g
32 MinSizeRel : -Os
33 empty(default) :
34
35 NOTE: -DCMAKE_BUILD_TYPE is optional. For multi-config generators like Visual Studio
36 this option is ignored
37
38 This process generates a Makefile(Linux/*BSD/MacOS) , Visual Studio solution(Windows) by default.
39 Run `make` to build Git on Linux/*BSD/MacOS.
40 Open git.sln on Windows and build Git.
41
42 NOTE: By default CMake uses Makefile as the build tool on Linux and Visual Studio in Windows,
43 to use another tool say `ninja` add this to the command line when configuring.
44 `-G Ninja`
45
46 NOTE: By default CMake will install vcpkg locally to your source tree on configuration,
47 to avoid this, add `-DNO_VCPKG=TRUE` to the command line when configuring.
48
49 ]]
50 cmake_minimum_required(VERSION 3.14)
51
52 #set the source directory to root of git
53 set(CMAKE_SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/../..)
54
55 option(USE_VCPKG "Whether or not to use vcpkg for obtaining dependencies. Only applicable to Windows platforms" ON)
56 if(NOT WIN32)
57 set(USE_VCPKG OFF CACHE BOOL "" FORCE)
58 endif()
59
60 if(NOT DEFINED CMAKE_EXPORT_COMPILE_COMMANDS)
61 set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
62 endif()
63
64 if(USE_VCPKG)
65 set(VCPKG_DIR "${CMAKE_SOURCE_DIR}/compat/vcbuild/vcpkg")
66 if(NOT EXISTS ${VCPKG_DIR})
67 message("Initializing vcpkg and building the Git's dependencies (this will take a while...)")
68 execute_process(COMMAND ${CMAKE_SOURCE_DIR}/compat/vcbuild/vcpkg_install.bat)
69 endif()
70 list(APPEND CMAKE_PREFIX_PATH "${VCPKG_DIR}/installed/x64-windows")
71
72 # In the vcpkg edition, we need this to be able to link to libcurl
73 set(CURL_NO_CURL_CMAKE ON)
74
75 # Copy the necessary vcpkg DLLs (like iconv) to the install dir
76 set(X_VCPKG_APPLOCAL_DEPS_INSTALL ON)
77 set(CMAKE_TOOLCHAIN_FILE ${VCPKG_DIR}/scripts/buildsystems/vcpkg.cmake CACHE STRING "Vcpkg toolchain file")
78 endif()
79
80 find_program(SH_EXE sh PATHS "C:/Program Files/Git/bin" "$ENV{LOCALAPPDATA}/Programs/Git/bin")
81 if(NOT SH_EXE)
82 message(FATAL_ERROR "sh: shell interpreter was not found in your path, please install one."
83 "On Windows, you can get it as part of 'Git for Windows' install at https://gitforwindows.org/")
84 endif()
85
86 message("Generating Git version")
87 execute_process(COMMAND ${SH_EXE} "${CMAKE_SOURCE_DIR}/GIT-VERSION-GEN"
88 "${CMAKE_SOURCE_DIR}"
89 "${CMAKE_SOURCE_DIR}/contrib/buildsystems/git-version.in"
90 "${CMAKE_BINARY_DIR}/git-version")
91 file(STRINGS "${CMAKE_BINARY_DIR}/git-version" git_version)
92
93 project(git
94 VERSION ${git_version}
95 LANGUAGES C)
96
97
98 #TODO gitk git-gui gitweb
99 #TODO Enable NLS on windows natively
100
101 #macros for parsing the Makefile for sources and scripts
102 macro(parse_makefile_for_sources list_var makefile regex)
103 file(STRINGS ${makefile} ${list_var} REGEX "^${regex} \\+=(.*)")
104 string(REPLACE "${regex} +=" "" ${list_var} ${${list_var}})
105 string(REPLACE "$(COMPAT_OBJS)" "" ${list_var} ${${list_var}}) #remove "$(COMPAT_OBJS)" This is only for libgit.
106 string(STRIP ${${list_var}} ${list_var}) #remove trailing/leading whitespaces
107 string(REPLACE ".o" ".c;" ${list_var} ${${list_var}}) #change .o to .c, ; is for converting the string into a list
108 list(TRANSFORM ${list_var} STRIP) #remove trailing/leading whitespaces for each element in list
109 list(REMOVE_ITEM ${list_var} "") #remove empty list elements
110 endmacro()
111
112 macro(parse_makefile_for_scripts list_var regex lang)
113 file(STRINGS ${CMAKE_SOURCE_DIR}/Makefile ${list_var} REGEX "^${regex} \\+=(.*)")
114 string(REPLACE "${regex} +=" "" ${list_var} ${${list_var}})
115 string(STRIP ${${list_var}} ${list_var}) #remove trailing/leading whitespaces
116 string(REPLACE " " ";" ${list_var} ${${list_var}}) #convert string to a list
117 if(NOT ${lang}) #exclude for SCRIPT_LIB
118 list(TRANSFORM ${list_var} REPLACE "${lang}" "") #do the replacement
119 endif()
120 endmacro()
121
122 macro(parse_makefile_for_executables list_var regex)
123 file(STRINGS ${CMAKE_SOURCE_DIR}/Makefile ${list_var} REGEX "^${regex} \\+= git-(.*)")
124 string(REPLACE "${regex} +=" "" ${list_var} ${${list_var}})
125 string(STRIP ${${list_var}} ${list_var}) #remove trailing/leading whitespaces
126 string(REPLACE "git-" "" ${list_var} ${${list_var}}) #strip `git-` prefix
127 string(REPLACE "\$X" ";" ${list_var} ${${list_var}}) #strip $X, ; is for converting the string into a list
128 list(TRANSFORM ${list_var} STRIP) #remove trailing/leading whitespaces for each element in list
129 list(REMOVE_ITEM ${list_var} "") #remove empty list elements
130 endmacro()
131
132 include(CheckTypeSize)
133 include(CheckCSourceRuns)
134 include(CheckCSourceCompiles)
135 include(CheckIncludeFile)
136 include(CheckFunctionExists)
137 include(CheckSymbolExists)
138 include(CheckStructHasMember)
139 include(CTest)
140
141 find_package(ZLIB REQUIRED)
142 find_package(CURL)
143 find_package(EXPAT)
144 find_package(Iconv)
145
146 #Don't use libintl on Windows Visual Studio and Clang builds
147 if(NOT (WIN32 AND (CMAKE_C_COMPILER_ID STREQUAL "MSVC" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")))
148 find_package(Intl)
149 endif()
150
151 find_package(PkgConfig)
152 if(PkgConfig_FOUND)
153 pkg_check_modules(PCRE2 libpcre2-8)
154 if(PCRE2_FOUND)
155 add_compile_definitions(USE_LIBPCRE2)
156 endif()
157 endif()
158
159 if(NOT Intl_FOUND)
160 add_compile_definitions(NO_GETTEXT)
161 if(NOT Iconv_FOUND)
162 add_compile_definitions(NO_ICONV)
163 endif()
164 endif()
165
166 include_directories(SYSTEM ${ZLIB_INCLUDE_DIRS})
167 if(CURL_FOUND)
168 include_directories(SYSTEM ${CURL_INCLUDE_DIRS})
169 endif()
170 if(EXPAT_FOUND)
171 include_directories(SYSTEM ${EXPAT_INCLUDE_DIRS})
172 endif()
173 if(Iconv_FOUND)
174 include_directories(SYSTEM ${Iconv_INCLUDE_DIRS})
175 endif()
176 if(Intl_FOUND)
177 include_directories(SYSTEM ${Intl_INCLUDE_DIRS})
178 endif()
179 if(PCRE2_FOUND)
180 include_directories(SYSTEM ${PCRE2_INCLUDE_DIRS})
181 endif()
182
183
184 if(WIN32 AND NOT MSVC)#not required for visual studio builds
185 find_program(WINDRES_EXE windres)
186 if(NOT WINDRES_EXE)
187 message(FATAL_ERROR "Install windres on Windows for resource files")
188 endif()
189 endif()
190
191 if(NO_GETTEXT)
192 message(STATUS "msgfmt not used under NO_GETTEXT")
193 else()
194 find_program(MSGFMT_EXE msgfmt)
195 if(NOT MSGFMT_EXE)
196 if(USE_VCPKG)
197 set(MSGFMT_EXE ${CMAKE_SOURCE_DIR}/compat/vcbuild/vcpkg/downloads/tools/msys2/msys64/usr/bin/msgfmt.exe)
198 endif()
199 if(NOT EXISTS ${MSGFMT_EXE})
200 message(WARNING "Text Translations won't be built")
201 unset(MSGFMT_EXE)
202 endif()
203 endif()
204 endif()
205
206 #Force all visual studio outputs to CMAKE_BINARY_DIR
207 if(CMAKE_C_COMPILER_ID STREQUAL "MSVC")
208 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR})
209 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR})
210 add_compile_options(/MP /std:c11)
211 endif()
212
213 #default behaviour
214 include_directories(${CMAKE_SOURCE_DIR})
215 add_compile_definitions(GIT_HOST_CPU="${CMAKE_SYSTEM_PROCESSOR}")
216 add_compile_definitions(SHA256_BLK INTERNAL_QSORT RUNTIME_PREFIX)
217 add_compile_definitions(NO_OPENSSL SHA1_DC SHA1DC_NO_STANDARD_INCLUDES
218 SHA1DC_INIT_SAFE_HASH_DEFAULT=0
219 SHA1DC_CUSTOM_INCLUDE_SHA1_C="git-compat-util.h"
220 SHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C="git-compat-util.h" )
221 list(APPEND compat_SOURCES sha1dc_git.c sha1dc/sha1.c sha1dc/ubc_check.c block-sha1/sha1.c sha256/block/sha256.c compat/qsort_s.c)
222
223
224 add_compile_definitions(PAGER_ENV="LESS=FRX LV=-c"
225 GIT_EXEC_PATH="libexec/git-core"
226 GIT_LOCALE_PATH="share/locale"
227 GIT_MAN_PATH="share/man"
228 GIT_INFO_PATH="share/info"
229 GIT_HTML_PATH="share/doc/git-doc"
230 DEFAULT_HELP_FORMAT="html"
231 DEFAULT_GIT_TEMPLATE_DIR="share/git-core/templates"
232 BINDIR="bin")
233
234 if(WIN32)
235 set(FALLBACK_RUNTIME_PREFIX /mingw64)
236 # Move system config into top-level /etc/
237 add_compile_definitions(FALLBACK_RUNTIME_PREFIX="${FALLBACK_RUNTIME_PREFIX}"
238 ETC_GITATTRIBUTES="../etc/gitattributes"
239 ETC_GITCONFIG="../etc/gitconfig")
240 else()
241 set(FALLBACK_RUNTIME_PREFIX /home/$ENV{USER})
242 add_compile_definitions(FALLBACK_RUNTIME_PREFIX="${FALLBACK_RUNTIME_PREFIX}"
243 ETC_GITATTRIBUTES="etc/gitattributes"
244 ETC_GITCONFIG="etc/gitconfig")
245 endif()
246
247
248 #Platform Specific
249 if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
250 if(CMAKE_C_COMPILER_ID STREQUAL "MSVC" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
251 include_directories(${CMAKE_SOURCE_DIR}/compat/vcbuild/include)
252 add_compile_definitions(_CRT_SECURE_NO_WARNINGS _CRT_NONSTDC_NO_DEPRECATE)
253 endif()
254 include_directories(${CMAKE_SOURCE_DIR}/compat/win32)
255 add_compile_definitions(HAVE_ALLOCA_H NO_POSIX_GOODIES NATIVE_CRLF NO_UNIX_SOCKETS WIN32
256 _CONSOLE DETECT_MSYS_TTY STRIP_EXTENSION=".exe" NO_SYMLINK_HEAD UNRELIABLE_FSTAT
257 NOGDI OBJECT_CREATION_MODE=1 __USE_MINGW_ANSI_STDIO=0
258 OVERRIDE_STRDUP MMAP_PREVENTS_DELETE USE_WIN32_MMAP
259 HAVE_WPGMPTR ENSURE_MSYSTEM_IS_SET HAVE_RTLGENRANDOM)
260 list(APPEND compat_SOURCES
261 compat/mingw.c
262 compat/winansi.c
263 compat/win32/flush.c
264 compat/win32/path-utils.c
265 compat/win32/pthread.c
266 compat/win32mmap.c
267 compat/win32/syslog.c
268 compat/win32/trace2_win32_process_info.c
269 compat/win32/dirent.c
270 compat/strdup.c)
271 set(NO_UNIX_SOCKETS 1)
272
273 elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux")
274 add_compile_definitions(PROCFS_EXECUTABLE_PATH="/proc/self/exe" HAVE_DEV_TTY )
275 list(APPEND compat_SOURCES unix-socket.c unix-stream-server.c compat/linux/procinfo.c)
276 elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
277 list(APPEND compat_SOURCES compat/darwin/procinfo.c)
278 endif()
279
280 if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
281 list(APPEND compat_SOURCES compat/simple-ipc/ipc-shared.c compat/simple-ipc/ipc-win32.c)
282 add_compile_definitions(SUPPORTS_SIMPLE_IPC)
283 set(SUPPORTS_SIMPLE_IPC 1)
284 else()
285 # Simple IPC requires both Unix sockets and pthreads on Unix-based systems.
286 if(NOT NO_UNIX_SOCKETS AND NOT NO_PTHREADS)
287 list(APPEND compat_SOURCES compat/simple-ipc/ipc-shared.c compat/simple-ipc/ipc-unix-socket.c)
288 add_compile_definitions(SUPPORTS_SIMPLE_IPC)
289 set(SUPPORTS_SIMPLE_IPC 1)
290 endif()
291 endif()
292
293 if(SUPPORTS_SIMPLE_IPC)
294 if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
295 set(FSMONITOR_DAEMON_BACKEND "win32")
296 set(FSMONITOR_OS_SETTINGS "win32")
297 elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
298 set(FSMONITOR_DAEMON_BACKEND "darwin")
299 set(FSMONITOR_OS_SETTINGS "unix")
300 elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux")
301 set(FSMONITOR_DAEMON_BACKEND "linux")
302 set(FSMONITOR_OS_SETTINGS "unix")
303 add_compile_definitions(HAVE_LINUX_MAGIC_H)
304 endif()
305
306 if(FSMONITOR_DAEMON_BACKEND)
307 add_compile_definitions(HAVE_FSMONITOR_DAEMON_BACKEND)
308 list(APPEND compat_SOURCES compat/fsmonitor/fsm-listen-${FSMONITOR_DAEMON_BACKEND}.c)
309 list(APPEND compat_SOURCES compat/fsmonitor/fsm-health-${FSMONITOR_DAEMON_BACKEND}.c)
310 list(APPEND compat_SOURCES compat/fsmonitor/fsm-ipc-${FSMONITOR_OS_SETTINGS}.c)
311 list(APPEND compat_SOURCES compat/fsmonitor/fsm-path-utils-${FSMONITOR_DAEMON_BACKEND}.c)
312
313 add_compile_definitions(HAVE_FSMONITOR_OS_SETTINGS)
314 list(APPEND compat_SOURCES compat/fsmonitor/fsm-settings-${FSMONITOR_OS_SETTINGS}.c)
315 endif()
316 endif()
317
318 set(EXE_EXTENSION ${CMAKE_EXECUTABLE_SUFFIX})
319
320 #header checks
321 check_include_file(libgen.h HAVE_LIBGEN_H)
322 if(NOT HAVE_LIBGEN_H)
323 add_compile_definitions(NO_LIBGEN_H)
324 list(APPEND compat_SOURCES compat/basename.c)
325 endif()
326
327 check_include_file(sys/sysinfo.h HAVE_SYSINFO)
328 if(HAVE_SYSINFO)
329 add_compile_definitions(HAVE_SYSINFO)
330 endif()
331
332 check_c_source_compiles("
333 #include <alloca.h>
334
335 int main(void)
336 {
337 char *p = (char *) alloca(2 * sizeof(int));
338
339 if (p)
340 return 0;
341 return 0;
342 }"
343 HAVE_ALLOCA_H)
344 if(HAVE_ALLOCA_H)
345 add_compile_definitions(HAVE_ALLOCA_H)
346 endif()
347
348 check_include_file(strings.h HAVE_STRINGS_H)
349 if(HAVE_STRINGS_H)
350 add_compile_definitions(HAVE_STRINGS_H)
351 endif()
352
353 check_include_file(sys/select.h HAVE_SYS_SELECT_H)
354 if(NOT HAVE_SYS_SELECT_H)
355 add_compile_definitions(NO_SYS_SELECT_H)
356 endif()
357
358 check_include_file(sys/poll.h HAVE_SYS_POLL_H)
359 if(NOT HAVE_SYS_POLL_H)
360 add_compile_definitions(NO_SYS_POLL_H)
361 endif()
362
363 check_include_file(poll.h HAVE_POLL_H)
364 if(NOT HAVE_POLL_H)
365 add_compile_definitions(NO_POLL_H)
366 endif()
367
368 check_include_file(inttypes.h HAVE_INTTYPES_H)
369 if(NOT HAVE_INTTYPES_H)
370 add_compile_definitions(NO_INTTYPES_H)
371 endif()
372
373 check_include_file(paths.h HAVE_PATHS_H)
374 if(HAVE_PATHS_H)
375 add_compile_definitions(HAVE_PATHS_H)
376 endif()
377
378 #function checks
379 set(function_checks
380 strcasestr memmem strlcpy strtoimax strtoumax strtoull
381 setenv mkdtemp poll pread memmem writev)
382
383 #unsetenv,hstrerror are incompatible with windows build
384 if(NOT WIN32)
385 list(APPEND function_checks unsetenv hstrerror)
386 endif()
387
388 foreach(f ${function_checks})
389 string(TOUPPER ${f} uf)
390 check_function_exists(${f} HAVE_${uf})
391 if(NOT HAVE_${uf})
392 add_compile_definitions(NO_${uf})
393 endif()
394 endforeach()
395
396 if(NOT HAVE_POLL_H OR NOT HAVE_SYS_POLL_H OR NOT HAVE_POLL)
397 include_directories(${CMAKE_SOURCE_DIR}/compat/poll)
398 add_compile_definitions(NO_POLL)
399 list(APPEND compat_SOURCES compat/poll/poll.c)
400 endif()
401
402 if(NOT HAVE_STRCASESTR)
403 list(APPEND compat_SOURCES compat/strcasestr.c)
404 endif()
405
406 if(NOT HAVE_STRLCPY)
407 list(APPEND compat_SOURCES compat/strlcpy.c)
408 endif()
409
410 if(NOT HAVE_STRTOUMAX)
411 list(APPEND compat_SOURCES compat/strtoumax.c compat/strtoimax.c)
412 endif()
413
414 if(NOT HAVE_SETENV)
415 list(APPEND compat_SOURCES compat/setenv.c)
416 endif()
417
418 if(NOT HAVE_PREAD)
419 list(APPEND compat_SOURCES compat/pread.c)
420 endif()
421
422 if(NOT HAVE_MEMMEM)
423 list(APPEND compat_SOURCES compat/memmem.c)
424 endif()
425
426 if(NOT HAVE_WRITEV)
427 list(APPEND compat_SOURCES compat/writev.c)
428 endif()
429
430 if(NOT WIN32)
431 if(NOT HAVE_UNSETENV)
432 list(APPEND compat_SOURCES compat/unsetenv.c)
433 endif()
434
435 if(NOT HAVE_HSTRERROR)
436 list(APPEND compat_SOURCES compat/hstrerror.c)
437 endif()
438 endif()
439
440 check_function_exists(getdelim HAVE_GETDELIM)
441 if(HAVE_GETDELIM)
442 add_compile_definitions(HAVE_GETDELIM)
443 endif()
444
445 check_function_exists(clock_gettime HAVE_CLOCK_GETTIME)
446 check_symbol_exists(CLOCK_MONOTONIC "time.h" HAVE_CLOCK_MONOTONIC)
447 if(HAVE_CLOCK_GETTIME)
448 add_compile_definitions(HAVE_CLOCK_GETTIME)
449 endif()
450 if(HAVE_CLOCK_MONOTONIC)
451 add_compile_definitions(HAVE_CLOCK_MONOTONIC)
452 endif()
453
454 #check for st_blocks in struct stat
455 check_struct_has_member("struct stat" st_blocks "sys/stat.h" STRUCT_STAT_HAS_ST_BLOCKS)
456 if(NOT STRUCT_STAT_HAS_ST_BLOCKS)
457 add_compile_definitions(NO_ST_BLOCKS_IN_STRUCT_STAT)
458 endif()
459
460 #compile checks
461 check_c_source_runs("
462 #include<stdio.h>
463 #include<stdarg.h>
464 #include<string.h>
465 #include<stdlib.h>
466
467 int test_vsnprintf(char *str, size_t maxsize, const char *format, ...)
468 {
469 int ret;
470 va_list ap;
471
472 va_start(ap, format);
473 ret = vsnprintf(str, maxsize, format, ap);
474 va_end(ap);
475 return ret;
476 }
477
478 int main(void)
479 {
480 char buf[6];
481
482 if (test_vsnprintf(buf, 3, \"%s\", \"12345\") != 5
483 || strcmp(buf, \"12\"))
484 return 1;
485 if (snprintf(buf, 3, \"%s\", \"12345\") != 5
486 || strcmp(buf, \"12\"))
487 return 1;
488 return 0;
489 }"
490 SNPRINTF_OK)
491 if(NOT SNPRINTF_OK)
492 add_compile_definitions(SNPRINTF_RETURNS_BOGUS)
493 list(APPEND compat_SOURCES compat/snprintf.c)
494 endif()
495
496 check_c_source_runs("
497 #include<stdio.h>
498
499 int main(void)
500 {
501 FILE *f = fopen(\".\", \"r\");
502
503 return f != NULL;
504 }"
505 FREAD_READS_DIRECTORIES_NO)
506 if(NOT FREAD_READS_DIRECTORIES_NO)
507 add_compile_definitions(FREAD_READS_DIRECTORIES)
508 list(APPEND compat_SOURCES compat/fopen.c)
509 endif()
510
511 check_c_source_compiles("
512 #include <regex.h>
513 #ifndef REG_STARTEND
514 #error oops we dont have it
515 #endif
516
517 int main(void)
518 {
519 return 0;
520 }"
521 HAVE_REGEX)
522 if(NOT HAVE_REGEX)
523 include_directories(${CMAKE_SOURCE_DIR}/compat/regex)
524 list(APPEND compat_SOURCES compat/regex/regex.c )
525 add_compile_definitions(NO_REGEX NO_MBSUPPORT GAWK)
526 elseif(APPLE)
527 list(APPEND compat_SOURCES compat/darwin/regexec.c)
528 add_compile_definitions(DARWIN_REGEXEC)
529 endif()
530
531
532 check_c_source_compiles("
533 #include <stddef.h>
534 #include <sys/types.h>
535 #include <sys/sysctl.h>
536
537 int main(void)
538 {
539 int val, mib[2];
540 size_t len;
541
542 mib[0] = CTL_HW;
543 mib[1] = 1;
544 len = sizeof(val);
545 return sysctl(mib, 2, &val, &len, NULL, 0) ? 1 : 0;
546 }"
547 HAVE_BSD_SYSCTL)
548 if(HAVE_BSD_SYSCTL)
549 add_compile_definitions(HAVE_BSD_SYSCTL)
550 endif()
551
552 set(CMAKE_REQUIRED_LIBRARIES ${Iconv_LIBRARIES})
553 set(CMAKE_REQUIRED_INCLUDES ${Iconv_INCLUDE_DIRS})
554
555 check_c_source_compiles("
556 #include <iconv.h>
557
558 extern size_t iconv(iconv_t cd,
559 char **inbuf, size_t *inbytesleft,
560 char **outbuf, size_t *outbytesleft);
561
562 int main(void)
563 {
564 return 0;
565 }"
566 HAVE_NEW_ICONV)
567 if(HAVE_NEW_ICONV)
568 set(HAVE_OLD_ICONV 0)
569 else()
570 set(HAVE_OLD_ICONV 1)
571 endif()
572
573 check_c_source_runs("
574 #include <iconv.h>
575 #if ${HAVE_OLD_ICONV}
576 typedef const char *iconv_ibp;
577 #else
578 typedef char *iconv_ibp;
579 #endif
580
581 int main(void)
582 {
583 int v;
584 iconv_t conv;
585 char in[] = \"a\";
586 iconv_ibp pin = in;
587 char out[20] = \"\";
588 char *pout = out;
589 size_t isz = sizeof(in);
590 size_t osz = sizeof(out);
591
592 conv = iconv_open(\"UTF-16\", \"UTF-8\");
593 iconv(conv, &pin, &isz, &pout, &osz);
594 iconv_close(conv);
595 v = (unsigned char)(out[0]) + (unsigned char)(out[1]);
596 return v != 0xfe + 0xff;
597 }"
598 ICONV_DOESNOT_OMIT_BOM)
599 if(NOT ICONV_DOESNOT_OMIT_BOM)
600 add_compile_definitions(ICONV_OMITS_BOM)
601 endif()
602
603 unset(CMAKE_REQUIRED_LIBRARIES)
604 unset(CMAKE_REQUIRED_INCLUDES)
605
606
607 #programs
608 set(PROGRAMS_BUILT
609 git git-daemon git-http-backend git-sh-i18n--envsubst
610 git-shell scalar)
611
612 if(NOT CURL_FOUND)
613 list(APPEND excluded_progs git-http-fetch git-http-push)
614 add_compile_definitions(NO_CURL)
615 message(WARNING "git-http-push and git-http-fetch will not be built")
616 else()
617 list(APPEND PROGRAMS_BUILT git-http-fetch git-http-push git-imap-send git-remote-http)
618 if(CURL_VERSION_STRING VERSION_GREATER_EQUAL 7.34.0)
619 add_compile_definitions(USE_CURL_FOR_IMAP_SEND)
620 endif()
621 endif()
622
623 if(NOT EXPAT_FOUND)
624 list(APPEND excluded_progs git-http-push)
625 add_compile_definitions(NO_EXPAT)
626 else()
627 list(APPEND PROGRAMS_BUILT git-http-push)
628 if(EXPAT_VERSION_STRING VERSION_LESS_EQUAL 1.2)
629 add_compile_definitions(EXPAT_NEEDS_XMLPARSE_H)
630 endif()
631 endif()
632
633 list(REMOVE_DUPLICATES excluded_progs)
634 list(REMOVE_DUPLICATES PROGRAMS_BUILT)
635
636
637 foreach(p ${excluded_progs})
638 list(APPEND EXCLUSION_PROGS --exclude-program ${p} )
639 endforeach()
640
641 #for comparing null values
642 list(APPEND EXCLUSION_PROGS empty)
643 set(EXCLUSION_PROGS_CACHE ${EXCLUSION_PROGS} CACHE STRING "Programs not built" FORCE)
644
645 if(NOT EXISTS ${CMAKE_BINARY_DIR}/command-list.h OR NOT EXCLUSION_PROGS_CACHE STREQUAL EXCLUSION_PROGS)
646 list(REMOVE_ITEM EXCLUSION_PROGS empty)
647 message("Generating command-list.h")
648 execute_process(COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/tools/generate-cmdlist.sh"
649 ${EXCLUSION_PROGS}
650 "${CMAKE_SOURCE_DIR}"
651 "${CMAKE_BINARY_DIR}/command-list.h")
652 endif()
653
654 if(NOT EXISTS ${CMAKE_BINARY_DIR}/config-list.h)
655 message("Generating config-list.h")
656 execute_process(COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/tools/generate-configlist.sh"
657 "${CMAKE_SOURCE_DIR}"
658 "${CMAKE_BINARY_DIR}/config-list.h")
659 endif()
660
661 if(NOT EXISTS ${CMAKE_BINARY_DIR}/hook-list.h)
662 message("Generating hook-list.h")
663 execute_process(COMMAND "${SH_EXE}" ${CMAKE_SOURCE_DIR}/tools/generate-hooklist.sh
664 "${CMAKE_SOURCE_DIR}"
665 "${CMAKE_BINARY_DIR}/hook-list.h")
666 endif()
667
668 include_directories(${CMAKE_BINARY_DIR})
669
670 #build
671 #libgit
672 parse_makefile_for_sources(libgit_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "LIB_OBJS")
673
674 list(TRANSFORM libgit_SOURCES PREPEND "${CMAKE_SOURCE_DIR}/")
675 list(TRANSFORM compat_SOURCES PREPEND "${CMAKE_SOURCE_DIR}/")
676
677 add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/version-def.h"
678 COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/GIT-VERSION-GEN"
679 "${CMAKE_SOURCE_DIR}"
680 "${CMAKE_SOURCE_DIR}/version-def.h.in"
681 "${CMAKE_BINARY_DIR}/version-def.h"
682 DEPENDS "${SH_EXE}" "${CMAKE_SOURCE_DIR}/GIT-VERSION-GEN"
683 "${CMAKE_SOURCE_DIR}/version-def.h.in"
684 VERBATIM)
685 list(APPEND libgit_SOURCES "${CMAKE_BINARY_DIR}/version-def.h")
686
687 add_library(libgit ${libgit_SOURCES} ${compat_SOURCES})
688
689 if(WIN32)
690 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/git.rc
691 COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/GIT-VERSION-GEN"
692 "${CMAKE_SOURCE_DIR}"
693 "${CMAKE_SOURCE_DIR}/git.rc.in"
694 "${CMAKE_BINARY_DIR}/git.rc"
695 DEPENDS "${CMAKE_SOURCE_DIR}/GIT-VERSION-GEN"
696 "${CMAKE_SOURCE_DIR}/git.rc.in"
697 VERBATIM)
698
699 if(NOT MSVC)#use windres when compiling with gcc and clang
700 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/git.res
701 COMMAND ${WINDRES_EXE} -O coff -i ${CMAKE_BINARY_DIR}/git.rc -o ${CMAKE_BINARY_DIR}/git.res
702 DEPENDS "${CMAKE_BINARY_DIR}/git.rc"
703 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
704 VERBATIM)
705 else()#MSVC use rc
706 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/git.res
707 COMMAND ${CMAKE_RC_COMPILER} /fo ${CMAKE_BINARY_DIR}/git.res ${CMAKE_BINARY_DIR}/git.rc
708 DEPENDS "${CMAKE_BINARY_DIR}/git.rc"
709 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
710 VERBATIM)
711 endif()
712 add_custom_target(git-rc DEPENDS ${CMAKE_BINARY_DIR}/git.res)
713 endif()
714
715 #link all required libraries to common-main
716 add_library(common-main OBJECT ${CMAKE_SOURCE_DIR}/common-main.c)
717
718 target_link_libraries(common-main libgit ${ZLIB_LIBRARIES})
719 if(Intl_FOUND)
720 target_link_libraries(common-main ${Intl_LIBRARIES})
721 endif()
722 if(Iconv_FOUND)
723 target_link_libraries(common-main ${Iconv_LIBRARIES})
724 endif()
725 if(PCRE2_FOUND)
726 target_link_libraries(common-main ${PCRE2_LIBRARIES})
727 target_link_directories(common-main PUBLIC ${PCRE2_LIBRARY_DIRS})
728 endif()
729 if(WIN32)
730 target_link_libraries(common-main ws2_32 ntdll ${CMAKE_BINARY_DIR}/git.res)
731 add_dependencies(common-main git-rc)
732 if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
733 target_link_options(common-main PUBLIC -municode -Wl,--nxcompat -Wl,--dynamicbase -Wl,--pic-executable,-e,mainCRTStartup)
734 elseif(CMAKE_C_COMPILER_ID STREQUAL "Clang")
735 target_link_options(common-main PUBLIC -municode -Wl,-nxcompat -Wl,-dynamicbase -Wl,-entry:wmainCRTStartup -Wl,invalidcontinue.obj)
736 elseif(CMAKE_C_COMPILER_ID STREQUAL "MSVC")
737 target_link_options(common-main PUBLIC /IGNORE:4217 /IGNORE:4049 /NOLOGO /ENTRY:wmainCRTStartup /SUBSYSTEM:CONSOLE invalidcontinue.obj)
738 else()
739 message(FATAL_ERROR "Unhandled compiler: ${CMAKE_C_COMPILER_ID}")
740 endif()
741
742 add_executable(headless-git ${CMAKE_SOURCE_DIR}/compat/win32/headless.c)
743 if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
744 target_link_options(headless-git PUBLIC -municode -Wl,-subsystem,windows)
745 elseif(CMAKE_C_COMPILER_ID STREQUAL "MSVC")
746 target_link_options(headless-git PUBLIC /NOLOGO /ENTRY:wWinMainCRTStartup /SUBSYSTEM:WINDOWS)
747 else()
748 message(FATAL_ERROR "Unhandled compiler: ${CMAKE_C_COMPILER_ID}")
749 endif()
750 elseif(UNIX)
751 target_link_libraries(common-main pthread rt)
752 endif()
753
754 #git
755 parse_makefile_for_sources(git_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "BUILTIN_OBJS")
756
757 list(TRANSFORM git_SOURCES PREPEND "${CMAKE_SOURCE_DIR}/")
758 add_executable(git ${CMAKE_SOURCE_DIR}/git.c ${git_SOURCES})
759 target_link_libraries(git common-main)
760
761 add_executable(git-daemon ${CMAKE_SOURCE_DIR}/daemon.c)
762 target_link_libraries(git-daemon common-main)
763
764 add_executable(git-http-backend ${CMAKE_SOURCE_DIR}/http-backend.c)
765 target_link_libraries(git-http-backend common-main)
766
767 add_executable(git-sh-i18n--envsubst ${CMAKE_SOURCE_DIR}/sh-i18n--envsubst.c)
768 target_link_libraries(git-sh-i18n--envsubst common-main)
769
770 add_executable(git-shell ${CMAKE_SOURCE_DIR}/shell.c)
771 target_link_libraries(git-shell common-main)
772
773 add_executable(scalar ${CMAKE_SOURCE_DIR}/scalar.c)
774 target_link_libraries(scalar common-main)
775
776 if(CURL_FOUND)
777 add_library(http_obj OBJECT ${CMAKE_SOURCE_DIR}/http.c)
778
779 add_executable(git-imap-send ${CMAKE_SOURCE_DIR}/imap-send.c)
780 target_link_libraries(git-imap-send http_obj common-main ${CURL_LIBRARIES})
781
782 add_executable(git-http-fetch ${CMAKE_SOURCE_DIR}/http-walker.c ${CMAKE_SOURCE_DIR}/http-fetch.c)
783 target_link_libraries(git-http-fetch http_obj common-main ${CURL_LIBRARIES})
784
785 add_executable(git-remote-http ${CMAKE_SOURCE_DIR}/http-walker.c ${CMAKE_SOURCE_DIR}/remote-curl.c)
786 target_link_libraries(git-remote-http http_obj common-main ${CURL_LIBRARIES} )
787
788 if(EXPAT_FOUND)
789 add_executable(git-http-push ${CMAKE_SOURCE_DIR}/http-push.c)
790 target_link_libraries(git-http-push http_obj common-main ${CURL_LIBRARIES} ${EXPAT_LIBRARIES})
791 endif()
792 endif()
793
794 parse_makefile_for_executables(git_builtin_extra "BUILT_INS")
795
796 option(SKIP_DASHED_BUILT_INS "Skip hardlinking the dashed versions of the built-ins")
797
798 #Creating hardlinks
799 if(NOT SKIP_DASHED_BUILT_INS)
800 foreach(s ${git_SOURCES} ${git_builtin_extra})
801 string(REPLACE "${CMAKE_SOURCE_DIR}/builtin/" "" s ${s})
802 string(REPLACE ".c" "" s ${s})
803 file(APPEND ${CMAKE_BINARY_DIR}/CreateLinks.cmake "file(CREATE_LINK git${EXE_EXTENSION} git-${s}${EXE_EXTENSION})\n")
804 list(APPEND git_links ${CMAKE_BINARY_DIR}/git-${s}${EXE_EXTENSION})
805 endforeach()
806 endif()
807
808 if(CURL_FOUND)
809 set(remote_exes
810 git-remote-https git-remote-ftp git-remote-ftps)
811 foreach(s ${remote_exes})
812 file(APPEND ${CMAKE_BINARY_DIR}/CreateLinks.cmake "file(CREATE_LINK git-remote-http${EXE_EXTENSION} ${s}${EXE_EXTENSION})\n")
813 list(APPEND git_http_links ${CMAKE_BINARY_DIR}/${s}${EXE_EXTENSION})
814 endforeach()
815 endif()
816
817 add_custom_command(OUTPUT ${git_links} ${git_http_links}
818 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_BINARY_DIR}/CreateLinks.cmake
819 DEPENDS git git-remote-http)
820 add_custom_target(git-links ALL DEPENDS ${git_links} ${git_http_links})
821
822
823 #creating required scripts
824 set(SHELL_PATH /bin/sh)
825 set(PERL_PATH /usr/bin/perl)
826 set(LOCALEDIR ${FALLBACK_RUNTIME_PREFIX}/share/locale)
827 set(GITWEBDIR ${FALLBACK_RUNTIME_PREFIX}/share/locale)
828 set(INSTLIBDIR ${FALLBACK_RUNTIME_PREFIX}/share/perl5)
829
830 #shell scripts
831 parse_makefile_for_scripts(git_sh_scripts "SCRIPT_SH" ".sh")
832 parse_makefile_for_scripts(git_shlib_scripts "SCRIPT_LIB" "")
833 set(git_shell_scripts
834 ${git_sh_scripts} ${git_shlib_scripts} git-instaweb)
835
836 foreach(script ${git_shell_scripts})
837 if ("${script}" IN_LIST git_sh_scripts)
838 string(REPLACE ".sh" "" shell_gen_path "${script}")
839 else()
840 set(shell_gen_path "${script}")
841 endif()
842
843 add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/${shell_gen_path}"
844 COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/tools/generate-script.sh"
845 "${CMAKE_SOURCE_DIR}/${script}.sh"
846 "${CMAKE_BINARY_DIR}/${shell_gen_path}"
847 "${CMAKE_BINARY_DIR}/GIT-BUILD-OPTIONS"
848 DEPENDS "${CMAKE_SOURCE_DIR}/tools/generate-script.sh"
849 "${CMAKE_SOURCE_DIR}/${script}.sh"
850 VERBATIM)
851 list(APPEND shell_gen ${CMAKE_BINARY_DIR}/${shell_gen_path})
852 endforeach()
853 add_custom_target(shell-gen ALL DEPENDS ${shell_gen})
854
855 #perl scripts
856 parse_makefile_for_scripts(git_perl_scripts "SCRIPT_PERL" "")
857 #perl modules
858 file(GLOB_RECURSE perl_modules "${CMAKE_SOURCE_DIR}/perl/*.pm")
859 list(TRANSFORM perl_modules REPLACE "${CMAKE_SOURCE_DIR}/" "")
860
861 #create perl header
862 file(STRINGS ${CMAKE_SOURCE_DIR}/perl/header_templates/fixed_prefix.template.pl perl_header )
863 string(REPLACE "@PATHSEP@" ":" perl_header "${perl_header}")
864 string(REPLACE "@INSTLIBDIR@" "${INSTLIBDIR}" perl_header "${perl_header}")
865 file(WRITE ${CMAKE_BINARY_DIR}/GIT-PERL-HEADER ${perl_header})
866
867 add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/GIT-VERSION-FILE"
868 COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/GIT-VERSION-GEN"
869 "${CMAKE_SOURCE_DIR}"
870 "${CMAKE_SOURCE_DIR}/GIT-VERSION-FILE.in"
871 "${CMAKE_BINARY_DIR}/GIT-VERSION-FILE"
872 DEPENDS ${SH_EXE} "${CMAKE_SOURCE_DIR}/GIT-VERSION-GEN"
873 "${CMAKE_SOURCE_DIR}/GIT-VERSION-FILE.in"
874 VERBATIM)
875
876 foreach(script ${git_perl_scripts} ${perl_modules})
877 string(REPLACE ".perl" "" perl_gen_path "${script}")
878
879 get_filename_component(perl_gen_dir "${perl_gen_path}" DIRECTORY)
880 if(script MATCHES "\.pm$")
881 string(REGEX REPLACE "^perl" "perl/build/lib" perl_gen_dir "${perl_gen_dir}")
882 string(REGEX REPLACE "^perl" "perl/build/lib" perl_gen_path "${perl_gen_path}")
883 endif()
884 file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/${perl_gen_dir}")
885
886 add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/${perl_gen_path}"
887 COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/tools/generate-perl.sh"
888 "${CMAKE_BINARY_DIR}/GIT-BUILD-OPTIONS"
889 "${CMAKE_BINARY_DIR}/GIT-VERSION-FILE"
890 "${CMAKE_BINARY_DIR}/GIT-PERL-HEADER"
891 "${CMAKE_SOURCE_DIR}/${script}"
892 "${CMAKE_BINARY_DIR}/${perl_gen_path}"
893 DEPENDS "${CMAKE_SOURCE_DIR}/tools/generate-perl.sh"
894 "${CMAKE_SOURCE_DIR}/${script}"
895 "${CMAKE_BINARY_DIR}/GIT-BUILD-OPTIONS"
896 "${CMAKE_BINARY_DIR}/GIT-VERSION-FILE"
897 VERBATIM)
898 list(APPEND perl_gen ${CMAKE_BINARY_DIR}/${perl_gen_path})
899 endforeach()
900 add_custom_target(perl-gen ALL DEPENDS ${perl_gen})
901
902 # Python script
903 add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/git-p4"
904 COMMAND "${SH_EXE}" "${CMAKE_SOURCE_DIR}/tools/generate-python.sh"
905 "${CMAKE_BINARY_DIR}/GIT-BUILD-OPTIONS"
906 "${CMAKE_SOURCE_DIR}/git-p4.py"
907 "${CMAKE_BINARY_DIR}/git-p4"
908 DEPENDS "${CMAKE_SOURCE_DIR}/tools/generate-python.sh"
909 "${CMAKE_SOURCE_DIR}/git-p4.py"
910 "${CMAKE_BINARY_DIR}/GIT-BUILD-OPTIONS"
911 VERBATIM)
912 add_custom_target(python-gen ALL DEPENDS "${CMAKE_BINARY_DIR}/git-p4")
913
914 #${CMAKE_SOURCE_DIR}/Makefile templates
915 parse_makefile_for_sources(templates ${CMAKE_SOURCE_DIR}/templates/Makefile "TEMPLATES")
916 string(REPLACE " " ";" templates ${templates})
917 #templates have @.*@ replacement so use configure_file instead
918 foreach(tm ${templates})
919 configure_file(${CMAKE_SOURCE_DIR}/templates/${tm} ${CMAKE_BINARY_DIR}/templates/blt/${tm} @ONLY)
920 endforeach()
921
922 #translations
923 if(MSGFMT_EXE)
924 file(GLOB po_files "${CMAKE_SOURCE_DIR}/po/*.po")
925 list(TRANSFORM po_files REPLACE "${CMAKE_SOURCE_DIR}/po/" "")
926 list(TRANSFORM po_files REPLACE ".po" "")
927 foreach(po ${po_files})
928 file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/po/build/locale/${po}/LC_MESSAGES)
929 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/po/build/locale/${po}/LC_MESSAGES/git.mo
930 COMMAND ${MSGFMT_EXE} --check --statistics -o ${CMAKE_BINARY_DIR}/po/build/locale/${po}/LC_MESSAGES/git.mo ${CMAKE_SOURCE_DIR}/po/${po}.po)
931 list(APPEND po_gen ${CMAKE_BINARY_DIR}/po/build/locale/${po}/LC_MESSAGES/git.mo)
932 endforeach()
933 add_custom_target(po-gen ALL DEPENDS ${po_gen})
934 endif()
935
936
937 #to help with the install
938 list(TRANSFORM git_shell_scripts PREPEND "${CMAKE_BINARY_DIR}/")
939 list(TRANSFORM git_perl_scripts PREPEND "${CMAKE_BINARY_DIR}/")
940
941 #install
942 foreach(program ${PROGRAMS_BUILT})
943 if(program MATCHES "^(git|git-shell|scalar)$")
944 install(TARGETS ${program}
945 RUNTIME DESTINATION bin)
946 else()
947 install(TARGETS ${program}
948 RUNTIME DESTINATION libexec/git-core)
949 endif()
950 endforeach()
951
952 install(PROGRAMS ${CMAKE_BINARY_DIR}/git-cvsserver
953 DESTINATION bin)
954
955 set(bin_links
956 git-receive-pack git-upload-archive git-upload-pack)
957
958 foreach(b ${bin_links})
959 install(CODE "file(CREATE_LINK ${CMAKE_INSTALL_PREFIX}/bin/git${EXE_EXTENSION} ${CMAKE_INSTALL_PREFIX}/bin/${b}${EXE_EXTENSION})")
960 endforeach()
961
962 install(CODE "file(CREATE_LINK ${CMAKE_INSTALL_PREFIX}/bin/git${EXE_EXTENSION} ${CMAKE_INSTALL_PREFIX}/libexec/git-core/git${EXE_EXTENSION})")
963 install(CODE "file(CREATE_LINK ${CMAKE_INSTALL_PREFIX}/bin/git-shell${EXE_EXTENSION} ${CMAKE_INSTALL_PREFIX}/libexec/git-core/git-shell${EXE_EXTENSION})")
964
965 foreach(b ${git_links})
966 string(REPLACE "${CMAKE_BINARY_DIR}" "" b ${b})
967 install(CODE "file(CREATE_LINK ${CMAKE_INSTALL_PREFIX}/bin/git${EXE_EXTENSION} ${CMAKE_INSTALL_PREFIX}/libexec/git-core/${b})")
968 endforeach()
969
970 foreach(b ${git_http_links})
971 string(REPLACE "${CMAKE_BINARY_DIR}" "" b ${b})
972 install(CODE "file(CREATE_LINK ${CMAKE_INSTALL_PREFIX}/libexec/git-core/git-remote-http${EXE_EXTENSION} ${CMAKE_INSTALL_PREFIX}/libexec/git-core/${b})")
973 endforeach()
974
975 install(PROGRAMS ${git_shell_scripts} ${git_perl_scripts} ${CMAKE_BINARY_DIR}/git-p4
976 DESTINATION libexec/git-core)
977
978 install(DIRECTORY ${CMAKE_SOURCE_DIR}/mergetools DESTINATION libexec/git-core)
979 install(DIRECTORY ${CMAKE_BINARY_DIR}/perl/build/lib/ DESTINATION share/perl5
980 FILES_MATCHING PATTERN "*.pm")
981 install(DIRECTORY ${CMAKE_BINARY_DIR}/templates/blt/ DESTINATION share/git-core/templates)
982
983 if(MSGFMT_EXE)
984 install(DIRECTORY ${CMAKE_BINARY_DIR}/po/build/locale DESTINATION share)
985 endif()
986
987
988 if(BUILD_TESTING)
989
990 #tests-helpers
991 add_executable(test-fake-ssh ${CMAKE_SOURCE_DIR}/t/helper/test-fake-ssh.c)
992 target_link_libraries(test-fake-ssh common-main)
993
994 #unit-tests
995 parse_makefile_for_sources(unit-test_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "UNIT_TEST_OBJS")
996 list(TRANSFORM unit-test_SOURCES REPLACE "\\$\\(UNIT_TEST_DIR\\)/" "${CMAKE_SOURCE_DIR}/t/unit-tests/")
997 add_library(unit-test-lib STATIC ${unit-test_SOURCES})
998
999 parse_makefile_for_sources(clar-test_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "CLAR_TEST_OBJS")
1000 list(TRANSFORM clar-test_SOURCES REPLACE "\\$\\(UNIT_TEST_DIR\\)/" "${CMAKE_SOURCE_DIR}/t/unit-tests/")
1001 add_library(clar-test-lib STATIC ${clar-test_SOURCES})
1002
1003 file(GLOB unit_test_PROGRAMS "${CMAKE_SOURCE_DIR}/t/unit-tests/t-*.c")
1004 list(TRANSFORM unit_test_PROGRAMS REPLACE "${CMAKE_SOURCE_DIR}/" "")
1005 list(TRANSFORM unit_test_PROGRAMS REPLACE ".c" "")
1006 foreach(unit_test ${unit_test_PROGRAMS})
1007 add_executable("${unit_test}" "${CMAKE_SOURCE_DIR}/t/unit-tests/${unit_test}.c")
1008 target_link_libraries("${unit_test}" unit-test-lib clar-test-lib common-main)
1009 set_target_properties("${unit_test}"
1010 PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
1011 if(MSVC)
1012 set_target_properties("${unit_test}"
1013 PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
1014 set_target_properties("${unit_test}"
1015 PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
1016 endif()
1017 list(APPEND PROGRAMS_BUILT "${unit_test}")
1018
1019 # t-basic intentionally fails tests, to validate the unit-test infrastructure.
1020 # Therefore, it should only be run as part of t0080, which verifies that it
1021 # fails only in the expected ways.
1022 #
1023 # All other unit tests should be run.
1024 if(NOT ${unit_test} STREQUAL "t-basic")
1025 add_test(NAME "t.unit-tests.${unit_test}"
1026 COMMAND "./${unit_test}"
1027 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/t/unit-tests/bin)
1028 endif()
1029 endforeach()
1030
1031 parse_makefile_for_scripts(clar_test_SUITES "CLAR_TEST_SUITES" "")
1032 list(TRANSFORM clar_test_SUITES PREPEND "${CMAKE_SOURCE_DIR}/t/unit-tests/")
1033 list(TRANSFORM clar_test_SUITES APPEND ".c")
1034 add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/t/unit-tests/clar-decls.h"
1035 COMMAND ${SH_EXE} ${CMAKE_SOURCE_DIR}/t/unit-tests/generate-clar-decls.sh
1036 "${CMAKE_BINARY_DIR}/t/unit-tests/clar-decls.h"
1037 ${clar_test_SUITES}
1038 DEPENDS ${CMAKE_SOURCE_DIR}/t/unit-tests/generate-clar-decls.sh
1039 ${clar_test_SUITES}
1040 VERBATIM)
1041 add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/t/unit-tests/clar.suite"
1042 COMMAND ${SH_EXE} "${CMAKE_SOURCE_DIR}/t/unit-tests/generate-clar-suites.sh"
1043 "${CMAKE_BINARY_DIR}/t/unit-tests/clar-decls.h"
1044 "${CMAKE_BINARY_DIR}/t/unit-tests/clar.suite"
1045 DEPENDS "${CMAKE_SOURCE_DIR}/t/unit-tests/generate-clar-suites.sh"
1046 "${CMAKE_BINARY_DIR}/t/unit-tests/clar-decls.h"
1047 VERBATIM)
1048
1049 add_library(unit-tests-lib ${clar_test_SUITES}
1050 "${CMAKE_BINARY_DIR}/t/unit-tests/clar-decls.h"
1051 "${CMAKE_BINARY_DIR}/t/unit-tests/clar.suite"
1052 )
1053 target_include_directories(clar-test-lib PUBLIC "${CMAKE_BINARY_DIR}/t/unit-tests")
1054 target_include_directories(unit-tests-lib PUBLIC "${CMAKE_BINARY_DIR}/t/unit-tests")
1055 add_executable(unit-tests)
1056 target_link_libraries(unit-tests unit-tests-lib clar-test-lib common-main)
1057 set_target_properties(unit-tests
1058 PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
1059 if(MSVC)
1060 set_target_properties(unit-tests
1061 PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
1062 set_target_properties(unit-tests
1063 PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
1064 endif()
1065
1066 #test-tool
1067 parse_makefile_for_sources(test-tool_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "TEST_BUILTINS_OBJS")
1068 add_library(test-lib OBJECT ${CMAKE_SOURCE_DIR}/t/unit-tests/test-lib.c)
1069
1070 list(TRANSFORM test-tool_SOURCES PREPEND "${CMAKE_SOURCE_DIR}/t/helper/")
1071 add_executable(test-tool ${CMAKE_SOURCE_DIR}/t/helper/test-tool.c ${test-tool_SOURCES})
1072 target_link_libraries(test-tool test-lib common-main)
1073
1074 set_target_properties(test-fake-ssh test-tool
1075 PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/t/helper)
1076
1077 if(MSVC)
1078 set_target_properties(test-fake-ssh test-tool
1079 PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/t/helper)
1080 set_target_properties(test-fake-ssh test-tool
1081 PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/t/helper)
1082 endif()
1083
1084 #wrapper scripts
1085 set(wrapper_scripts
1086 git git-upload-pack git-receive-pack git-upload-archive git-shell scalar)
1087
1088 set(wrapper_test_scripts
1089 test-fake-ssh test-tool)
1090
1091
1092 foreach(script ${wrapper_scripts})
1093 file(STRINGS ${CMAKE_SOURCE_DIR}/bin-wrappers/wrap-for-bin.sh content NEWLINE_CONSUME)
1094 string(REPLACE "@BUILD_DIR@" "${CMAKE_BINARY_DIR}" content "${content}")
1095 string(REPLACE "@TEMPLATE_DIR@" "'${CMAKE_BINARY_DIR}/templates/blt'" content "${content}")
1096 string(REPLACE "@PROG@" "${CMAKE_BINARY_DIR}/${script}${EXE_EXTENSION}" content "${content}")
1097 file(WRITE ${CMAKE_BINARY_DIR}/bin-wrappers/${script} ${content})
1098 endforeach()
1099
1100 foreach(script ${wrapper_test_scripts})
1101 file(STRINGS ${CMAKE_SOURCE_DIR}/bin-wrappers/wrap-for-bin.sh content NEWLINE_CONSUME)
1102 string(REPLACE "@BUILD_DIR@" "${CMAKE_BINARY_DIR}" content "${content}")
1103 string(REPLACE "@TEMPLATE_DIR@" "'${CMAKE_BINARY_DIR}/templates/blt'" content "${content}")
1104 string(REPLACE "@PROG@" "${CMAKE_BINARY_DIR}/t/helper/${script}${EXE_EXTENSION}" content "${content}")
1105 file(WRITE ${CMAKE_BINARY_DIR}/bin-wrappers/${script} ${content})
1106 endforeach()
1107
1108 file(STRINGS ${CMAKE_SOURCE_DIR}/bin-wrappers/wrap-for-bin.sh content NEWLINE_CONSUME)
1109 string(REPLACE "@BUILD_DIR@" "${CMAKE_BINARY_DIR}" content "${content}")
1110 string(REPLACE "@TEMPLATE_DIR@" "'${CMAKE_BINARY_DIR}/templates/blt'" content "${content}")
1111 string(REPLACE "@GIT_TEXTDOMAINDIR@" "${CMAKE_BINARY_DIR}/po/build/locale" content "${content}")
1112 string(REPLACE "@GITPERLLIB@" "${CMAKE_BINARY_DIR}/perl/build/lib" content "${content}")
1113 string(REPLACE "@MERGE_TOOLS_DIR@" "${CMAKE_SOURCE_DIR}/mergetools" content "${content}")
1114 string(REPLACE "@PROG@" "${CMAKE_BINARY_DIR}/git-cvsserver" content "${content}")
1115 file(WRITE ${CMAKE_BINARY_DIR}/bin-wrappers/git-cvsserver ${content})
1116
1117 #options for configuring test options
1118 option(PERL_TESTS "Perform tests that use perl" ON)
1119 option(PYTHON_TESTS "Perform tests that use python" ON)
1120
1121 #GIT-BUILD-OPTIONS
1122 set(TEST_SHELL_PATH ${SHELL_PATH})
1123 set(DIFF diff)
1124 set(PYTHON_PATH /usr/bin/python)
1125 set(TAR tar)
1126 set(NO_CURL )
1127 set(NO_ICONV )
1128 set(NO_EXPAT )
1129 set(USE_LIBPCRE2 )
1130 set(NO_PERL )
1131 set(NO_PTHREADS )
1132 set(NO_PYTHON )
1133 set(PAGER_ENV "LESS=FRX LV=-c")
1134 set(RUNTIME_PREFIX true)
1135 set(NO_GETTEXT )
1136
1137 if(NOT CURL_FOUND)
1138 set(NO_CURL 1)
1139 endif()
1140
1141 if(NOT Iconv_FOUND)
1142 SET(NO_ICONV 1)
1143 endif()
1144
1145 if(NOT EXPAT_FOUND)
1146 set(NO_EXPAT 1)
1147 endif()
1148
1149 if(NOT Intl_FOUND)
1150 set(NO_GETTEXT 1)
1151 endif()
1152
1153 if(NOT PERL_TESTS)
1154 set(NO_PERL 1)
1155 endif()
1156
1157 if(NOT PYTHON_TESTS)
1158 set(NO_PYTHON 1)
1159 endif()
1160
1161 file(STRINGS ${CMAKE_SOURCE_DIR}/GIT-BUILD-OPTIONS.in git_build_options NEWLINE_CONSUME)
1162 string(REPLACE "@BROKEN_PATH_FIX@" "" git_build_options "${git_build_options}")
1163 string(REPLACE "@DIFF@" "'${DIFF}'" git_build_options "${git_build_options}")
1164 string(REPLACE "@FSMONITOR_DAEMON_BACKEND@" "${FSMONITOR_DAEMON_BACKEND}" git_build_options "${git_build_options}")
1165 string(REPLACE "@FSMONITOR_OS_SETTINGS@" "${FSMONITOR_OS_SETTINGS}" git_build_options "${git_build_options}")
1166 string(REPLACE "@GITWEBDIR@" "'${GITWEBDIR}'" git_build_options "${git_build_options}")
1167 string(REPLACE "@GIT_INTEROP_MAKE_OPTS@" "" git_build_options "${git_build_options}")
1168 string(REPLACE "@GIT_PERF_LARGE_REPO@" "" git_build_options "${git_build_options}")
1169 string(REPLACE "@GIT_PERF_MAKE_COMMAND@" "" git_build_options "${git_build_options}")
1170 string(REPLACE "@GIT_PERF_MAKE_OPTS@" "" git_build_options "${git_build_options}")
1171 string(REPLACE "@GIT_PERF_REPEAT_COUNT@" "" git_build_options "${git_build_options}")
1172 string(REPLACE "@GIT_PERF_REPO@" "" git_build_options "${git_build_options}")
1173 string(REPLACE "@GIT_SOURCE_DIR@" "${CMAKE_SOURCE_DIR}" git_build_options "${git_build_options}")
1174 string(REPLACE "@GIT_TEST_CMP@" "" git_build_options "${git_build_options}")
1175 string(REPLACE "@GIT_TEST_CMP_USE_COPIED_CONTEXT@" "" git_build_options "${git_build_options}")
1176 string(REPLACE "@GIT_TEST_GITPERLLIB@" "'${CMAKE_BINARY_DIR}/perl/build/lib'" git_build_options "${git_build_options}")
1177 string(REPLACE "@GIT_TEST_INDEX_VERSION@" "" git_build_options "${git_build_options}")
1178 string(REPLACE "@GIT_TEST_OPTS@" "" git_build_options "${git_build_options}")
1179 string(REPLACE "@GIT_TEST_PERL_FATAL_WARNINGS@" "" git_build_options "${git_build_options}")
1180 string(REPLACE "@GIT_TEST_TEMPLATE_DIR@" "'${CMAKE_BINARY_DIR}/templates/blt'" git_build_options "${git_build_options}")
1181 string(REPLACE "@GIT_TEST_TEXTDOMAINDIR@" "'${CMAKE_BINARY_DIR}/po/build/locale'" git_build_options "${git_build_options}")
1182 string(REPLACE "@GIT_TEST_UTF8_LOCALE@" "" git_build_options "${git_build_options}")
1183 string(REPLACE "@LOCALEDIR@" "'${LOCALEDIR}'" git_build_options "${git_build_options}")
1184 string(REPLACE "@NO_CURL@" "${NO_CURL}" git_build_options "${git_build_options}")
1185 string(REPLACE "@NO_EXPAT@" "${NO_EXPAT}" git_build_options "${git_build_options}")
1186 string(REPLACE "@NO_GETTEXT@" "${NO_GETTEXT}" git_build_options "${git_build_options}")
1187 string(REPLACE "@NO_GITWEB@" "1" git_build_options "${git_build_options}")
1188 string(REPLACE "@NO_ICONV@" "${NO_ICONV}" git_build_options "${git_build_options}")
1189 string(REPLACE "@NO_PERL@" "${NO_PERL}" git_build_options "${git_build_options}")
1190 string(REPLACE "@NO_PERL_CPAN_FALLBACKS@" "" git_build_options "${git_build_options}")
1191 string(REPLACE "@NO_PTHREADS@" "${NO_PTHREADS}" git_build_options "${git_build_options}")
1192 string(REPLACE "@NO_PYTHON@" "${NO_PYTHON}" git_build_options "${git_build_options}")
1193 string(REPLACE "@NO_REGEX@" "" git_build_options "${git_build_options}")
1194 string(REPLACE "@NO_UNIX_SOCKETS@" "${NO_UNIX_SOCKETS}" git_build_options "${git_build_options}")
1195 string(REPLACE "@PAGER_ENV@" "'${PAGER_ENV}'" git_build_options "${git_build_options}")
1196 string(REPLACE "@PERL_LOCALEDIR@" "'${LOCALEDIR}'" git_build_options "${git_build_options}")
1197 string(REPLACE "@PERL_PATH@" "'${PERL_PATH}'" git_build_options "${git_build_options}")
1198 string(REPLACE "@PYTHON_PATH@" "'${PYTHON_PATH}'" git_build_options "${git_build_options}")
1199 string(REPLACE "@RUNTIME_PREFIX@" "'${RUNTIME_PREFIX}'" git_build_options "${git_build_options}")
1200 string(REPLACE "@SANITIZE_ADDRESS@" "" git_build_options "${git_build_options}")
1201 string(REPLACE "@SANITIZE_LEAK@" "" git_build_options "${git_build_options}")
1202 string(REPLACE "@SHELL_PATH@" "'${SHELL_PATH}'" git_build_options "${git_build_options}")
1203 string(REPLACE "@TAR@" "'${TAR}'" git_build_options "${git_build_options}")
1204 string(REPLACE "@TEST_OUTPUT_DIRECTORY@" "" git_build_options "${git_build_options}")
1205 string(REPLACE "@TEST_SHELL_PATH@" "'${TEST_SHELL_PATH}'" git_build_options "${git_build_options}")
1206 string(REPLACE "@USE_GETTEXT_SCHEME@" "" git_build_options "${git_build_options}")
1207 string(REPLACE "@USE_LIBPCRE2@" "" git_build_options "${git_build_options}")
1208 string(REPLACE "@WITH_BREAKING_CHANGES@" "" git_build_options "${git_build_options}")
1209 string(REPLACE "@X@" "${EXE_EXTENSION}" git_build_options "${git_build_options}")
1210 if(USE_VCPKG)
1211 string(APPEND git_build_options "PATH=\"$PATH:$TEST_DIRECTORY/../compat/vcbuild/vcpkg/installed/x64-windows/bin\"\n")
1212 endif()
1213 file(WRITE ${CMAKE_BINARY_DIR}/GIT-BUILD-OPTIONS ${git_build_options})
1214
1215 #Make the tests work when building out of the source tree
1216 get_filename_component(CACHE_PATH ${CMAKE_CURRENT_LIST_DIR}/../../CMakeCache.txt ABSOLUTE)
1217 if(NOT ${CMAKE_BINARY_DIR}/CMakeCache.txt STREQUAL ${CACHE_PATH})
1218 #Setting the build directory in test-lib.sh before running tests
1219 file(WRITE ${CMAKE_BINARY_DIR}/CTestCustom.cmake
1220 "file(WRITE ${CMAKE_SOURCE_DIR}/GIT-BUILD-DIR \"${CMAKE_BINARY_DIR}\")")
1221 #misc copies
1222 file(COPY ${CMAKE_SOURCE_DIR}/t/chainlint.pl DESTINATION ${CMAKE_BINARY_DIR}/t/)
1223 file(COPY ${CMAKE_SOURCE_DIR}/po/is.po DESTINATION ${CMAKE_BINARY_DIR}/po/)
1224 file(GLOB mergetools "${CMAKE_SOURCE_DIR}/mergetools/*")
1225 file(COPY ${mergetools} DESTINATION ${CMAKE_BINARY_DIR}/mergetools/)
1226 file(COPY ${CMAKE_SOURCE_DIR}/contrib/completion/git-prompt.sh DESTINATION ${CMAKE_BINARY_DIR}/contrib/completion/)
1227 file(COPY ${CMAKE_SOURCE_DIR}/contrib/completion/git-completion.bash DESTINATION ${CMAKE_BINARY_DIR}/contrib/completion/)
1228 endif()
1229
1230 file(GLOB test_scripts "${CMAKE_SOURCE_DIR}/t/t[0-9]*.sh")
1231
1232 #test
1233 foreach(tsh ${test_scripts})
1234 string(REGEX REPLACE ".*/(.*)\\.sh" "\\1" test_name ${tsh})
1235 add_test(NAME "t.suite.${test_name}"
1236 COMMAND ${SH_EXE} ${tsh} --no-bin-wrappers --no-chain-lint -vx
1237 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/t)
1238 endforeach()
1239
1240 # This test script takes an extremely long time and is known to time out even
1241 # on fast machines because it requires in excess of one hour to run
1242 set_tests_properties("t.suite.t7112-reset-submodule" PROPERTIES TIMEOUT 4000)
1243
1244 endif()#BUILD_TESTING