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