-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
763 lines (653 loc) · 24.4 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
# CMake build script for the GNU Scientific Library.
# Examples:
# 1. VS 2015, 32-bit static libs (run cmake from the $build_dir)
# cmake -G"Visual Studio 14 2015" -DGSL_INSTALL_MULTI_CONFIG=ON \
# [-DCMAKE_INSTALL_PREFIX=<path>] <path to gsl sources>
# cmake --build . --config Release [--target gsl|install] [-j 8]
# ctest [-j <N>] [-VV]
# 2. VS 2017, 64-bit shared libs and dynamic runtime
# cmake -G"Visual Studio 15 2017 Win64" -DGSL_INSTALL_MULTI_CONFIG=ON \
# -DBUILD_SHARED_LIBS=ON -DMSVC_RUNTIME_DYNAMIC=ON \
# <path to gsl sources>
# cmake --build . --config Release [--target gsl|install] [-j 8]
# ctest [-j <N>] [-VV]
# 3. Linux (run cmake from $build_dir)
# cmake <path to gsl sources>
# make [-j] [gsl|install]
# ctest [-j <N>] [-VV]
# Use CMake 3.4 for target property WINDOWS_EXPORT_ALL_SYMBOLS.
# Ref: https://blog.kitware.com/create-dlls-on-windows-without-declspec-using-new-cmake-export-all-feature/
cmake_minimum_required(VERSION 3.4)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
include(init)
project(GSL)
if (POLICY CMP0054)
# Only interpret `if` arguments as variables or keywords when unquoted.
cmake_policy(SET CMP0054 NEW)
endif ()
if (POLICY CMP0053)
cmake_policy(SET CMP0053 NEW)
endif( )
# Advertise user-settable parameters (and defaults) in cmake-gui
option(BUILD_SHARED_LIBS "Export symbols to library." OFF)
option(GSL_DISABLE_WARNINGS "disable warnings." ON)
option(MSVC_RUNTIME_DYNAMIC "Use dynamically-linked runtime: /MD(d)" OFF)
option(GSL_INSTALL_MULTI_CONFIG "Install libraries in lib/<config> directory" OFF)
set(PACKAGE "gsl")
set(PACKAGE_NAME ${PACKAGE})
set(PACKAGE_TARNAME ${PACKAGE})
set(PACKAGE_BUGREPORT "")
set(PACKAGE_URL "")
set(LT_OBJDIR ".libs/")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
# The following part of config.h is hard to derive from configure.ac.
string(REGEX MATCHALL "[^\n]*\n" CONFIG
"/* Define if you have inline with C99 behavior */
#undef HAVE_C99_INLINE
/* Define to 1 if you have the declaration of `acosh', and to 0 if you don't.
*/
#undef HAVE_DECL_ACOSH
/* Define to 1 if you have the declaration of `asinh', and to 0 if you don't.
*/
#undef HAVE_DECL_ASINH
/* Define to 1 if you have the declaration of `atanh', and to 0 if you don't.
*/
#undef HAVE_DECL_ATANH
/* Define to 1 if you have the declaration of `expm1', and to 0 if you don't.
*/
#undef HAVE_DECL_EXPM1
/* Define to 1 if you have the declaration of `feenableexcept', and to 0 if
you don't. */
#undef HAVE_DECL_FEENABLEEXCEPT
/* Define to 1 if you have the declaration of `fesettrapenable', and to 0 if
you don't. */
#undef HAVE_DECL_FESETTRAPENABLE
/* Define to 1 if you have the declaration of `finite', and to 0 if you don't.
*/
#undef HAVE_DECL_FINITE
/* Define to 1 if you have the declaration of `fprnd_t', and to 0 if you
don't. */
#undef HAVE_DECL_FPRND_T
/* Define to 1 if you have the declaration of `frexp', and to 0 if you don't.
*/
#undef HAVE_DECL_FREXP
/* Define to 1 if you have the declaration of `hypot', and to 0 if you don't.
*/
#undef HAVE_DECL_HYPOT
/* Define to 1 if you have the declaration of `isfinite', and to 0 if you
don't. */
#undef HAVE_DECL_ISFINITE
/* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
*/
#undef HAVE_DECL_ISINF
/* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
*/
#undef HAVE_DECL_ISNAN
/* Define to 1 if you have the declaration of `ldexp', and to 0 if you don't.
*/
#undef HAVE_DECL_LDEXP
/* Define to 1 if you have the declaration of `log1p', and to 0 if you don't.
*/
#undef HAVE_DECL_LOG1P
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
#undef HAVE_DOPRNT
/* Defined if you have ansi EXIT_SUCCESS and EXIT_FAILURE in stdlib.h */
#undef HAVE_EXIT_SUCCESS_AND_FAILURE
/* Defined on architectures with excess floating-point precision */
#undef HAVE_EXTENDED_PRECISION_REGISTERS
/* Define if x86 processor has sse extensions. */
#undef HAVE_FPU_X86_SSE
/* Define to 1 if you have the <ieeefp.h> header file. */
#undef HAVE_IEEEFP_H
/* Define this if IEEE comparisons work correctly (e.g. NaN != NaN) */
#undef HAVE_IEEE_COMPARISONS
/* Define this if IEEE denormalized numbers are available */
#undef HAVE_IEEE_DENORMALS
/* Define if you have inline */
#undef HAVE_INLINE
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the `m' library (-lm). */
#undef HAVE_LIBM
/* Define to 1 if you have the `memcpy' function. */
#undef HAVE_MEMCPY
/* Define to 1 if you have the `memmove' function. */
#undef HAVE_MEMMOVE
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define this if printf can handle %Lf for long double */
#undef HAVE_PRINTF_LONGDOUBLE
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the `strtol' function. */
#undef HAVE_STRTOL
/* Define to 1 if you have the `strtoul' function. */
#undef HAVE_STRTOUL
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if you have the `vprintf' function. */
#undef HAVE_VPRINTF
/* Define if you need to hide the static definitions of inline functions */
#undef HIDE_INLINE_STATIC
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#undef LT_OBJDIR
/* Name of package */
#undef PACKAGE
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the home page for this package. */
#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Defined if this is an official release */
#undef RELEASED
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Version number of package */
#undef VERSION
/* Define to 1 if type `char' is unsigned and you are not using gcc. */
#ifndef __CHAR_UNSIGNED__
# undef __CHAR_UNSIGNED__
#endif
/* Define to `__inline__' or `__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
#ifndef __cplusplus
#undef inline
#endif
/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t
/* Define to empty if the keyword `volatile' does not work. Warning: valid
code using `volatile' can become incorrect without. Disable with care. */
#undef volatile
")
# Get version numbers and parts of config.h from configure.ac.
file(READ configure.ac LINES)
# Replace semicolons with "<semi>" to avoid CMake messing with them.
string(REPLACE ";" "<semi>" LINES "${LINES}")
# Split into lines keeping newlines to avoid foreach skipping empty ones.
string(REGEX MATCHALL "[^\n]*\n" LINES "${LINES}")
set(ah_command FALSE)
foreach (line "${EXTRA_CONFIG}" ${LINES})
string(REPLACE ";" "" line "${line}")
if (ah_command)
# Do nothing.
elseif (line MATCHES "AC_INIT[^,]*,\\[(.*)\\].*")
set(VERSION ${CMAKE_MATCH_1})
message(STATUS "Got VERSION=${VERSION} from configure.ac")
elseif (line MATCHES "((GSL)_(CURRENT|REVISION|AGE))=(.*)\n")
set(${CMAKE_MATCH_1} ${CMAKE_MATCH_4})
message(STATUS "Got ${CMAKE_MATCH_1}=${CMAKE_MATCH_4} from configure.ac")
elseif (line MATCHES "AH_BOTTOM\\(\\[(.*)")
set(ah_command bottom)
set(line "${CMAKE_MATCH_1}")
elseif (line MATCHES "AH_VERBATIM[^,]+,(.*)")
set(ah_command verbatim)
set(line "${CMAKE_MATCH_1}")
endif ()
if (ah_command)
set(saved_ah_command ${ah_command})
if (line MATCHES "^\\[(.*)")
set(line "${CMAKE_MATCH_1}")
endif ()
if (line MATCHES "\\]\\)")
set(ah_command FALSE)
string(REPLACE "])" "" line "${line}")
endif ()
# For some reason CMake may bundle several lines together. Split them too.
string(REGEX MATCHALL "[^\n]*\n" sublines "${line}")
set(config_add "")
foreach (subline ${sublines})
set(config_add ${config_add} "${subline}")
endforeach ()
if (saved_ah_command STREQUAL "verbatim")
set(CONFIG ${config_add} ${CONFIG})
else ()
set(CONFIG ${CONFIG} "\n" ${config_add})
endif ()
endif ()
endforeach ()
set(PACKAGE_VERSION ${VERSION})
set(PACKAGE_STRING "${PACKAGE} ${VERSION}")
if (NOT (VERSION MATCHES "\\+"))
# Defined if this is an official release.
set(RELEASED /**/)
endif ()
include(CheckLibraryExists)
check_library_exists(m cos "" HAVE_LIBM)
if (HAVE_LIBM)
set(CMAKE_REQUIRED_LIBRARIES m)
endif ()
include(CheckCSourceCompiles)
# Check for inline. (also check for __forceinline?)
foreach (keyword inline __inline__ __inline)
check_c_source_compiles("
static ${keyword} void foo() { return 0; }
int main() {}" C_HAS_${keyword})
if (C_HAS_${keyword})
set(C_INLINE ${keyword})
break ()
endif ()
endforeach ()
if (C_INLINE)
# Check for GNU-style extern inline.
check_c_source_compiles("
extern ${C_INLINE} double foo(double x);
extern ${C_INLINE} double foo(double x) { return x + 1.0; }
double foo(double x) { return x + 1.0; }
int main() { foo(1.0); }" C_EXTERN_INLINE)
if (C_EXTERN_INLINE)
set(HAVE_INLINE 1)
else ()
# Check for C99-style inline.
check_c_source_compiles("
extern inline void* foo() { foo(); return &foo; }
int main() { return foo() != 0; }" C_C99INLINE)
if (C_C99INLINE)
set(HAVE_INLINE 1)
set(HAVE_C99_INLINE 1)
endif ()
endif ()
endif ()
if (C_INLINE AND NOT C_HAS_inline)
set(inline ${C_INLINE})
endif ()
# Checks for header files.
include(CheckIncludeFiles)
foreach (header ieeefp.h dlfcn.h inttypes.h memory.h stdint.h stdlib.h
strings.h string.h sys/stat.h sys/types.h unistd.h)
string(TOUPPER HAVE_${header} var)
string(REGEX REPLACE "\\.|/" "_" var ${var})
check_include_files(${header} ${var})
endforeach ()
check_include_files(stdio.h STDC_HEADERS)
# Check for IEEE arithmetic interface type.
if (CMAKE_SYSTEM_NAME MATCHES Linux)
if (CMAKE_SYSTEM_PROCESSOR MATCHES sparc)
set(HAVE_GNUSPARC_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES powerpc)
set(HAVE_GNUPPC_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES 86)
set(HAVE_GNUX86_IEEE_INTERFACE 1)
endif ()
elseif (CMAKE_SYSTEM_NAME MATCHES SunOS)
set(HAVE_SUNOS4_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_NAME MATCHES Solaris)
set(HAVE_SOLARIS_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_NAME MATCHES hpux)
set(HAVE_HPUX_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_NAME MATCHES Darwin)
if (CMAKE_SYSTEM_PROCESSOR MATCHES powerpc)
set(HAVE_DARWIN_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_PROCESSOR MATCHES 86)
set(HAVE_DARWIN86_IEEE_INTERFACE 1)
endif ()
elseif (CMAKE_SYSTEM_NAME MATCHES NetBSD)
set(HAVE_NETBSD_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_NAME MATCHES OpenBSD)
set(HAVE_OPENBSD_IEEE_INTERFACE 1)
elseif (CMAKE_SYSTEM_NAME MATCHES FreeBSD)
set(HAVE_FREEBSD_IEEE_INTERFACE 1)
endif ()
# Check for FPU_SETCW.
if (HAVE_GNUX86_IEEE_INTERFACE)
check_c_source_compiles("
#include <fpu_control.h>
#ifndef _FPU_SETCW
#include <i386/fpu_control.h>
#define _FPU_SETCW(cw) __setfpucw(cw)
#endif
int main() { unsigned short mode = 0 ; _FPU_SETCW(mode); }"
HAVE_FPU_SETCW)
if (NOT HAVE_FPU_SETCW)
set(HAVE_GNUX86_IEEE_INTERFACE 0)
endif ()
endif ()
# Check for SSE extensions.
if (HAVE_GNUX86_IEEE_INTERFACE)
check_c_source_compiles("
#include <stdlib.h>
#define _FPU_SETMXCSR(cw) asm volatile (\"ldmxcsr %0\" : : \"m\" (*&cw))
int main() { unsigned int mode = 0x1f80 ; _FPU_SETMXCSR(mode); exit(0); }"
HAVE_FPU_X86_SSE)
endif ()
# Compiles the source code, runs the program and sets ${VAR} to 1 if the
# return value is equal to ${RESULT}.
macro(check_run_result SRC RESULT VAR)
set(SRC_FILE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.c)
file(WRITE ${SRC_FILE} "${SRC}")
try_run(RUN_RESULT COMPILE_RESULT ${CMAKE_BINARY_DIR} ${SRC_FILE}
CMAKE_FLAGS -DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES})
if (RUN_RESULT EQUAL ${RESULT})
set(${VAR} 1)
endif ()
endmacro()
# Check IEEE comparisons, whether "x != x" is true for NaNs.
check_run_result("
#include <math.h>
int main (void)
{
int status; double inf, nan;
inf = exp(1.0e10);
nan = inf / inf ;
status = (nan == nan);
exit (status);
}" 0 HAVE_IEEE_COMPARISONS)
# Check for IEEE denormalized arithmetic.
check_run_result("
#include <math.h>
int main (void)
{
int i, status;
volatile double z = 1e-308;
for (i = 0; i < 5; i++) { z = z / 10.0 ; };
for (i = 0; i < 5; i++) { z = z * 10.0 ; };
status = (z == 0.0);
exit (status);
}" 0 HAVE_IEEE_DENORMALS)
# Check for long double stdio.
check_run_result("
#include <stdlib.h>
#include <stdio.h>
int main (void)
{
const char * s = \"5678.25\"; long double x = 1.234 ;
fprintf(stderr,\"%Lg\n\",x) ;
sscanf(s, \"%Lg\", &x);
if (x == 5678.25) {exit (0);} else {exit(1); }
}" 0 HAVE_PRINTF_LONGDOUBLE)
if (NOT CMAKE_COMPILER_IS_GNUCC)
check_run_result("
#include <limits.h>
int main (void) { return CHAR_MIN == 0; }" 1 __CHAR_UNSIGNED__)
endif ()
# Remember to put a definition in config.h.in for each of these.
include(CheckSymbolExists)
check_symbol_exists(EXIT_SUCCESS stdlib.h HAVE_EXIT_SUCCESS)
check_symbol_exists(EXIT_FAILURE stdlib.h HAVE_EXIT_FAILURE)
if (HAVE_EXIT_SUCCESS AND HAVE_EXIT_FAILURE)
set(HAVE_EXIT_SUCCESS_AND_FAILURE 1)
endif ()
set(CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE=1")
check_symbol_exists(feenableexcept fenv.h HAVE_DECL_FEENABLEEXCEPT)
check_symbol_exists(fesettrapenable fenv.h HAVE_DECL_FESETTRAPENABLE)
set(CMAKE_REQUIRED_DEFINITIONS "")
check_symbol_exists(hypot math.h HAVE_DECL_HYPOT)
check_symbol_exists(expm1 math.h HAVE_DECL_EXPM1)
check_symbol_exists(acosh math.h HAVE_DECL_ACOSH)
check_symbol_exists(asinh math.h HAVE_DECL_ASINH)
check_symbol_exists(atanh math.h HAVE_DECL_ATANH)
check_symbol_exists(ldexp math.h HAVE_DECL_LDEXP)
check_symbol_exists(frexp math.h HAVE_DECL_FREXP)
check_symbol_exists(fprnd_t float.h HAVE_DECL_FPRND_T)
check_symbol_exists(isinf math.h HAVE_DECL_ISINF)
check_symbol_exists(isfinite math.h HAVE_DECL_ISFINITE)
if (HAVE_IEEEFP_H)
set(IEEEFP_H ieeefp.h)
endif ()
check_symbol_exists(finite math.h;${IEEEFP_H} HAVE_DECL_FINITE)
check_symbol_exists(isnan math.h HAVE_DECL_ISNAN)
# OpenBSD has a broken implementation of log1p.
if (CMAKE_SYSTEM_NAME MATCHES OpenBSD)
message("avoiding OpenBSD system log1p - using gsl version")
else ()
check_symbol_exists(log1p math.h HAVE_DECL_LOG1P)
endif ()
# Check for extended floating point registers.
if (NOT (CMAKE_SYSTEM_PROCESSOR MATCHES "^(sparc|powerpc|hppa|alpha)"))
set(HAVE_EXTENDED_PRECISION_REGISTERS 1)
endif ()
check_symbol_exists(memcpy string.h HAVE_MEMCPY)
check_symbol_exists(memmove string.h HAVE_MEMMOVE)
check_symbol_exists(strdup string.h HAVE_STRDUP)
check_symbol_exists(strtol stdlib.h HAVE_STRTOL)
check_symbol_exists(strtoul stdlib.h HAVE_STRTOUL)
check_symbol_exists(vprintf stdio.h HAVE_VPRINTF)
# Process config.h using autoconf rules.
#file(STRINGS ${GSL_SOURCE_DIR}/config.h.in CONFIG)
list(LENGTH CONFIG length)
math(EXPR length "${length} - 1")
foreach (i RANGE ${length})
list(GET CONFIG ${i} line)
if (line MATCHES "^#( *)undef (.*)\n")
set(space "${CMAKE_MATCH_1}")
set(var ${CMAKE_MATCH_2})
if (NOT DEFINED ${var} OR (var MATCHES "HAVE_.*_H" AND NOT ${var}))
set(line "/* #${space}undef ${var} */\n")
else ()
if ("${${var}}" STREQUAL "/**/" OR "${var}" STREQUAL "inline")
set(value ${${var}})
elseif (NOT (var MATCHES ^HAVE OR ${var} EQUAL 0 OR ${var} EQUAL 1))
set(value \"${${var}}\")
elseif (${var})
set(value 1)
else ()
set(value 0)
endif ()
set(line "#${space}define ${var} ${value}\n")
endif ()
elseif (BUILD_SHARED_LIBS AND WIN32 AND line MATCHES "^#define GSL_DISABLE_DEPRECATED .*")
# Keep deprecated symbols when compiling a Windows DLL to prevent linkage errors.
set(line "/* #undef GSL_DISABLE_DEPRECATED */\n")
endif ()
string(REPLACE "<semi>" ";" line "${line}")
set(CONFIG_OUT "${CONFIG_OUT}${line}")
endforeach ()
# file(WRITE ${GSL_BINARY_DIR}/config.h
# "/* config.h. Generated from config.h.in by configure. */
# /* config.h.in. Generated from configure.ac by autoheader. */
# ${CONFIG_OUT}")
configure_file(config.h.cmake.in ${GSL_BINARY_DIR}/config.h)
add_definitions(-DHAVE_CONFIG_H)
if (GSL_DISABLE_WARNINGS)
# Disable additional warnings.
if (MSVC)
add_definitions(
-D_CRT_SECURE_NO_WARNINGS
/wd4018 /wd4028 /wd4056 /wd4101 /wd4244 /wd4267 /wd4334 /wd4477 /wd4700 /wd4723 /wd4756 /wd4996)
else ()
foreach (flag -Wall -Wextra -pedantic)
string(REPLACE ${flag} "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
endforeach ()
endif ()
endif ()
if (MSVC_RUNTIME_DYNAMIC)
set(CMAKE_COMPILER_FLAGS_VARIABLES
CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELWITHDEBINFO
)
foreach(variable ${CMAKE_COMPILER_FLAGS_VARIABLES})
string(REGEX REPLACE "/MT" "/MD" ${variable} "${${variable}}")
endforeach()
endif ()
# Append compiler flags provided via environment variables.
# E.g.: C_FLAGS="-Werror" cmake -G "Unix Makefiles" ../gsl
foreach( lang C CXX )
if( DEFINED ENV{${lang}_FLAGS} )
string( APPEND CMAKE_${lang}_FLAGS " $ENV{${lang}_FLAGS}" )
message( STATUS "CMAKE_${lang}_FLAGS = ${CMAKE_${lang}_FLAGS}" )
# set( CMAKE_${lang}_FLAGS ${CMAKE_${lang}_FLAGS} CACHE STRING "Compiler flags" FORCE )
endif()
endforeach()
set(CMAKE_DEBUG_POSTFIX d)
option(GSL_DISABLE_TESTS "Disable test cases" True)
find_package(MKL CONFIG REQUIRED)
#message(STATUS "${MKL_IMPORTED_TARGETS}")
enable_testing()
# Adds a GSL test. Usage:
# add_gsl_test(<exename> <source> ...)
function(add_gsl_test exename)
if (GSL_DISABLE_TESTS)
return()
endif ()
add_executable(${exename} ${ARGN})
target_compile_options(${exename} PUBLIC $<TARGET_PROPERTY:MKL::MKL,INTERFACE_COMPILE_OPTIONS>)
target_include_directories(${exename} PUBLIC $<TARGET_PROPERTY:MKL::MKL,INTERFACE_INCLUDE_DIRECTORIES>)
target_link_libraries(${exename} PUBLIC $<LINK_ONLY:MKL::MKL>)
add_test(${exename} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${exename})
endfunction()
file(GLOB GSL_HEADER_PATHS "${GSL_SOURCE_DIR}/gsl*.h")
file(GLOB dirs "${GSL_SOURCE_DIR}/*")
foreach (dir ${dirs})
if (NOT (dir MATCHES "gsl$"))
file(GLOB headers "${dir}/gsl*.h")
set(GSL_HEADER_PATHS ${GSL_HEADER_PATHS} ${headers})
endif ()
endforeach()
foreach (path ${GSL_HEADER_PATHS})
get_filename_component(name ${path} NAME)
set(GSL_HEADERS ${GSL_HEADERS} gsl/${name})
endforeach ()
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/copy-headers.cmake "
file(MAKE_DIRECTORY gsl)
foreach (path ${GSL_HEADER_PATHS})
get_filename_component(filename \${path} NAME)
configure_file(\${path} ${GSL_BINARY_DIR}/gsl/\${filename} COPYONLY)
endforeach ()")
add_custom_command(OUTPUT ${GSL_HEADERS}
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/copy-headers.cmake)
add_custom_target(copy-headers DEPENDS ${GSL_HEADERS})
macro(get_sources dir line source_var)
set(${source_var})
string(REGEX REPLACE ".*_SOURCES[ \t]*=(.*)" "\\1" sources ${line})
string(REGEX MATCHALL "[^ \t]+" sources ${sources})
foreach (src ${sources})
set(${source_var} ${${source_var}} ${dir}/${src})
endforeach ()
endmacro()
# Get subdirectories from Makefile.am.
file(STRINGS Makefile.am lines REGEX "^SUBDIRS[ \t]*=")
foreach (line ${lines})
string(REGEX REPLACE "SUBDIRS[ \t]*=(.*)" "\\1" dirs ${line})
string(REGEX MATCHALL "[^ ]+" dirs ${dirs})
endforeach ()
# Extract sources from automake files and add tests.
foreach (dir "." ${dirs})
file(STRINGS ${dir}/Makefile.am lines)
foreach (line ${lines})
if (line MATCHES "_la_SOURCES[ \t]*=")
get_sources(${dir} "${line}" SOURCES)
set(GSL_SOURCES ${GSL_SOURCES} ${SOURCES})
elseif (line MATCHES "^test.*_SOURCES[ \t]*=")
get_sources(${dir} "${line}" SOURCES)
string(REGEX REPLACE "(.*)_SOURCES.*" "\\1" suffix ${line})
add_gsl_test("${dir}_${suffix}" ${SOURCES})
endif ()
endforeach ()
endforeach ()
if (BUILD_SHARED_LIBS)
include(CheckCCompilerFlag)
check_c_compiler_flag(-fPIC HAVE_FPIC)
if (HAVE_FPIC)
add_definitions(-fPIC)
endif ()
if (WIN32)
# only needed for global variables that must be exported. Exporting of
# all functions is done with target property WINDOWS_EXPORT_ALL_SYMBOLS.
add_definitions(-DGSL_DLL)
endif()
endif ()
add_library(gsl ${GSL_SOURCES})
set_target_properties(gsl
PROPERTIES
COMPILE_DEFINITIONS DLL_EXPORT
WINDOWS_EXPORT_ALL_SYMBOLS ON )
target_compile_options(gsl PUBLIC $<TARGET_PROPERTY:MKL::MKL,INTERFACE_COMPILE_OPTIONS>)
target_include_directories(gsl PUBLIC $<TARGET_PROPERTY:MKL::MKL,INTERFACE_INCLUDE_DIRECTORIES>)
target_link_libraries(gsl PUBLIC $<LINK_ONLY:MKL::MKL>)
target_include_directories(gsl
PUBLIC
$<BUILD_INTERFACE:${GSL_BINARY_DIR}>
$<BUILD_INTERFACE:${GSL_SOURCE_DIR}>)
add_dependencies(gsl copy-headers)
if (GSL_INSTALL OR NOT DEFINED GSL_INSTALL)
if (MSVC AND GSL_INSTALL_MULTI_CONFIG)
install(TARGETS gsl
EXPORT "gsl-targets"
CONFIGURATIONS ${CMAKE_CONFIGURATION_TYPES}
LIBRARY DESTINATION lib/$<CONFIG>
RUNTIME DESTINATION bin/$<CONFIG>
ARCHIVE DESTINATION lib/$<CONFIG>)
# For Debug under VS, also install the pdb files.
install(
FILES
${PROJECT_BINARY_DIR}/bin/Debug/gsl.pdb
CONFIGURATIONS Debug
DESTINATION bin/$<CONFIG>)
else ()
install(TARGETS gsl
EXPORT "gsl-targets"
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin
ARCHIVE DESTINATION lib)
endif ()
install(FILES ${GSL_HEADER_PATHS} DESTINATION include/gsl)
set(PC_FILE ${CMAKE_BINARY_DIR}/gsl.pc)
configure_file("gsl.pc.cmake" ${PC_FILE} @ONLY)
install(FILES ${PC_FILE} DESTINATION lib/pkgconfig)
# Read config file and replace placeholders.
file(READ "${CMAKE_CURRENT_SOURCE_DIR}/gsl-config.in" GSL_CONFIG_FILE)
string(REPLACE ";" "@SEMICOLON@" GSL_CONFIG_FILE "${GSL_CONFIG_FILE}")
# Replace
string(REPLACE @prefix@ ${CMAKE_INSTALL_PREFIX} GSL_CONFIG_FILE "${GSL_CONFIG_FILE}")
string(REPLACE @exec_prefix@ ${CMAKE_INSTALL_PREFIX}/bin GSL_CONFIG_FILE ${GSL_CONFIG_FILE})
string(REPLACE @includedir@ ${CMAKE_INSTALL_PREFIX}/include GSL_CONFIG_FILE
"${GSL_CONFIG_FILE}")
string(REPLACE @VERSION@ ${VERSION} GSL_CONFIG_FILE "${GSL_CONFIG_FILE}")
string(REPLACE @GSL_CFLAGS@ "${CMAKE_C_FLAGS_RELEASE}" GSL_CONFIG_FILE
"${GSL_CONFIG_FILE}")
string(REPLACE @GSL_LIBS@ "-lgsl" GSL_CONFIG_FILE
"${GSL_CONFIG_FILE}")
string(REPLACE @GSL_LIBM@ "-lm" GSL_CONFIG_FILE "${GSL_CONFIG_FILE}")
# write after putting back ;
string(REPLACE "@SEMICOLON@" "\\;" GSL_CONFIG_FILE "${GSL_CONFIG_FILE}")
file(WRITE ${CMAKE_BINARY_DIR}/gsl-config ${GSL_CONFIG_FILE})
# Install gsl-config
install(PROGRAMS ${CMAKE_BINARY_DIR}/gsl-config DESTINATION bin)
# Create cmake files that can be used to import GSL into another project.
include(CMakePackageConfigHelpers)
install(
EXPORT gsl-targets
DESTINATION lib/cmake/${PACKAGE_NAME}-${PACKAGE_VERSION}
NAMESPACE GSL:: )
configure_package_config_file(
${CMAKE_SOURCE_DIR}/cmake/${PACKAGE_NAME}-config.cmake.in
${CMAKE_BINARY_DIR}/cmake/${PACKAGE_NAME}-config.cmake
INSTALL_DESTINATION cmake/${PACKAGE_NAME} )
write_basic_package_version_file(
${CMAKE_BINARY_DIR}/cmake/${PACKAGE_NAME}-config-version.cmake
VERSION ${PACKAGE_VERSION}
COMPATIBILITY SameMajorVersion )
install(
FILES
${CMAKE_BINARY_DIR}/cmake/${PACKAGE_NAME}-config.cmake
${CMAKE_BINARY_DIR}/cmake/${PACKAGE_NAME}-config-version.cmake
DESTINATION
lib/cmake/${PACKAGE_NAME}-${PACKAGE_VERSION} )
endif ()