-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeCache.txt
10847 lines (9351 loc) · 369 KB
/
CMakeCache.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
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This is the CMakeCache file.
# For build in directory: /home/koen/Documents/GitHub/BrowserC
# It was generated by CMake: /snap/clion/241/bin/cmake/linux/x64/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Set ON to include system runtime DLLS in distribution
ADD_SYSTEM_RUNTIMES:BOOL=OFF
//The ALSA (asound) include directory
ALSA_INCLUDE_DIR:PATH=/usr/include
//The ALSA (asound) library
ALSA_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libasound.so
//Enable ALSA backend
ALSOFT_BACKEND_ALSA:BOOL=ON
//Enable CoreAudio backend
ALSOFT_BACKEND_COREAUDIO:BOOL=ON
//Enable JACK backend
ALSOFT_BACKEND_JACK:BOOL=ON
//Enable Oboe backend
ALSOFT_BACKEND_OBOE:BOOL=ON
//Enable OpenSL backend
ALSOFT_BACKEND_OPENSL:BOOL=ON
//Enable OSS backend
ALSOFT_BACKEND_OSS:BOOL=ON
//Enable PipeWire backend
ALSOFT_BACKEND_PIPEWIRE:BOOL=ON
//Enable PortAudio backend
ALSOFT_BACKEND_PORTAUDIO:BOOL=ON
//Enable PulseAudio backend
ALSOFT_BACKEND_PULSEAUDIO:BOOL=ON
//Enable SDL2 backend
ALSOFT_BACKEND_SDL2:BOOL=OFF
//Enable SndIO backend
ALSOFT_BACKEND_SNDIO:BOOL=ON
//Enable Solaris backend
ALSOFT_BACKEND_SOLARIS:BOOL=ON
//Enable Wave Writer backend
ALSOFT_BACKEND_WAVE:BOOL=ON
//Enable ARM NEON support
ALSOFT_CPUEXT_NEON:BOOL=ON
//Enable SSE support
ALSOFT_CPUEXT_SSE:BOOL=ON
//Enable SSE2 support
ALSOFT_CPUEXT_SSE2:BOOL=ON
//Enable SSE3 support
ALSOFT_CPUEXT_SSE3:BOOL=ON
//Enable SSE4.1 support
ALSOFT_CPUEXT_SSE4_1:BOOL=ON
//Check for the dlopen API for loading optional libs
ALSOFT_DLOPEN:BOOL=ON
//Enable legacy EAX extensions
ALSOFT_EAX:BOOL=OFF
//Embed the HRTF data files (increases library footprint)
ALSOFT_EMBED_HRTF_DATA:BOOL=ON
//Build example programs
ALSOFT_EXAMPLES:BOOL=ON
//Install main library
ALSOFT_INSTALL:BOOL=ON
//Install AmbDec preset files
ALSOFT_INSTALL_AMBDEC_PRESETS:BOOL=ON
//Install alsoft.conf sample configuration file
ALSOFT_INSTALL_CONFIG:BOOL=ON
//Install example programs (alplay, alstream, ...)
ALSOFT_INSTALL_EXAMPLES:BOOL=ON
//Install HRTF data files
ALSOFT_INSTALL_HRTF_DATA:BOOL=ON
//Install utility programs (openal-info, alsoft-config, ...)
ALSOFT_INSTALL_UTILS:BOOL=ON
//Disable building the alsoft-config utility
ALSOFT_NO_CONFIG_UTIL:BOOL=OFF
//Require ALSA backend
ALSOFT_REQUIRE_ALSA:BOOL=OFF
//Require CoreAudio backend
ALSOFT_REQUIRE_COREAUDIO:BOOL=OFF
//Require JACK backend
ALSOFT_REQUIRE_JACK:BOOL=OFF
//Require ARM NEON support
ALSOFT_REQUIRE_NEON:BOOL=OFF
//Require Oboe backend
ALSOFT_REQUIRE_OBOE:BOOL=OFF
//Require OpenSL backend
ALSOFT_REQUIRE_OPENSL:BOOL=OFF
//Require OSS backend
ALSOFT_REQUIRE_OSS:BOOL=OFF
//Require PipeWire backend
ALSOFT_REQUIRE_PIPEWIRE:BOOL=OFF
//Require PortAudio backend
ALSOFT_REQUIRE_PORTAUDIO:BOOL=OFF
//Require PulseAudio backend
ALSOFT_REQUIRE_PULSEAUDIO:BOOL=OFF
//Require RTKit/D-Bus support
ALSOFT_REQUIRE_RTKIT:BOOL=OFF
//Require SDL2 backend
ALSOFT_REQUIRE_SDL2:BOOL=OFF
//Require SndIO backend
ALSOFT_REQUIRE_SNDIO:BOOL=OFF
//Require Solaris backend
ALSOFT_REQUIRE_SOLARIS:BOOL=OFF
//Require SSE support
ALSOFT_REQUIRE_SSE:BOOL=OFF
//Require SSE2 support
ALSOFT_REQUIRE_SSE2:BOOL=OFF
//Require SSE3 support
ALSOFT_REQUIRE_SSE3:BOOL=OFF
//Require SSE4.1 support
ALSOFT_REQUIRE_SSE4_1:BOOL=OFF
//Enable RTKit support
ALSOFT_RTKIT:BOOL=ON
//Search the installation data directory
ALSOFT_SEARCH_INSTALL_DATADIR:BOOL=OFF
//Force -static-libgcc for static GCC runtimes
ALSOFT_STATIC_LIBGCC:BOOL=OFF
//Static link libstdc++
ALSOFT_STATIC_STDCXX:BOOL=OFF
//Build test programs
ALSOFT_TESTS:BOOL=OFF
//Update git build version info
ALSOFT_UPDATE_BUILD_VERSION:BOOL=ON
//Build utility programs
ALSOFT_UTILS:BOOL=ON
//Treat compile warnings as errors
ALSOFT_WERROR:BOOL=OFF
//Path to a program.
ASCIIDOC:FILEPATH=ASCIIDOC-NOTFOUND
//The AudioIO include directory
AUDIOIO_INCLUDE_DIR:PATH=AUDIOIO_INCLUDE_DIR-NOTFOUND
//Path to a file.
AUDIOUNIT_INCLUDE_DIR:PATH=AUDIOUNIT_INCLUDE_DIR-NOTFOUND
//The AVCODEC CFLAGS.
AVCODEC_DEFINITIONS:STRING=
//Path to a file.
AVCODEC_INCLUDE_DIRS:PATH=AVCODEC_INCLUDE_DIRS-NOTFOUND
//Path to a library.
AVCODEC_LIBRARIES:FILEPATH=AVCODEC_LIBRARIES-NOTFOUND
//The AVCODEC version number.
AVCODEC_VERSION:STRING=
//The AVDEVICE CFLAGS.
AVDEVICE_DEFINITIONS:STRING=
//Path to a file.
AVDEVICE_INCLUDE_DIRS:PATH=AVDEVICE_INCLUDE_DIRS-NOTFOUND
//Path to a library.
AVDEVICE_LIBRARIES:FILEPATH=AVDEVICE_LIBRARIES-NOTFOUND
//The AVDEVICE version number.
AVDEVICE_VERSION:STRING=
//The AVFORMAT CFLAGS.
AVFORMAT_DEFINITIONS:STRING=
//Path to a file.
AVFORMAT_INCLUDE_DIRS:PATH=AVFORMAT_INCLUDE_DIRS-NOTFOUND
//Path to a library.
AVFORMAT_LIBRARIES:FILEPATH=AVFORMAT_LIBRARIES-NOTFOUND
//The AVFORMAT version number.
AVFORMAT_VERSION:STRING=
//The AVUTIL CFLAGS.
AVUTIL_DEFINITIONS:STRING=
//Path to a file.
AVUTIL_INCLUDE_DIRS:PATH=AVUTIL_INCLUDE_DIRS-NOTFOUND
//Path to a library.
AVUTIL_LIBRARIES:FILEPATH=AVUTIL_LIBRARIES-NOTFOUND
//The AVUTIL version number.
AVUTIL_VERSION:STRING=
//Path to a library.
BROTLICOMMON_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libbrotlicommon.so
//Path to a library.
BROTLIDEC_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libbrotlidec.so
//Path to a library.
BROTLIENC_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libbrotlienc.so
//Disable Brotli tests
BROTLI_DISABLE_TESTS:STRING=ON
//Path to a file.
BROTLI_INCLUDE_DIR:PATH=/usr/include
//Build tests for the Qt build system
BUILD_CMAKE_TESTING:BOOL=OFF
//Set to ON to build curl executable.
BUILD_CURL_EXE:BOOL=ON
//Build the examples.
BUILD_EXAMPLES:BOOL=OFF
//Build Lua bindings
BUILD_LUA_BINDINGS:BOOL=OFF
//Build python bindings
BUILD_PYTHON_BINDINGS:BOOL=OFF
//Build samples
BUILD_SAMPLES:BOOL=OFF
//Set ON to build the sample code
BUILD_SAMPLE_CODE:BOOL=OFF
//Set OFF to NOT build shared library
BUILD_SHARED_LIB:BOOL=ON
//Build shared libraries
BUILD_SHARED_LIBS:BOOL=OFF
//Set ON to build utility app, tab2space
BUILD_TAB2SPACE:BOOL=OFF
//Build tests
BUILD_TESTING:BOOL=OFF
//Build Qt using precompiled headers?
BUILD_WITH_PCH:BOOL=ON
//Build directory qtbase
BUILD_qtbase:BOOL=ON
//Header providing backtrace(3) facility
Backtrace_HEADER:STRING=execinfo.h
//Path to a file.
Backtrace_INCLUDE_DIR:PATH=/usr/include
//Library providing backtrace(3), empty for default set of libraries
Backtrace_LIBRARY:FILEPATH=
//Value Computed by CMake
Blink_BINARY_DIR:STATIC=/home/koen/Documents/GitHub/BrowserC/extern/blink/Source
//Value Computed by CMake
Blink_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
Blink_SOURCE_DIR:STATIC=/home/koen/Documents/GitHub/BrowserC/extern/blink/Source
//Path to a program.
CCACHE_PROGRAM:FILEPATH=CCACHE_PROGRAM-NOTFOUND
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar
//ASM compiler
CMAKE_ASM_COMPILER:STRING=/usr/bin/cc
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
//Flags used by the ASM compiler during all build types.
CMAKE_ASM_FLAGS:STRING=
//Flags used by the ASM compiler during DEBUG builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
//Flags used by the ASM compiler during MINSIZEREL builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-DNDEBUG -Os
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-DNDEBUG -O2
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-g -DNDEBUG -O2
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=Release
//Enable colored diagnostics throughout.
CMAKE_COLOR_DIAGNOSTICS:BOOL=ON
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//CXX compiler
CMAKE_CXX_COMPILER:STRING=/usr/bin/c++
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-DNDEBUG -Os
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-DNDEBUG -O2
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-g -DNDEBUG -O2
//C compiler
CMAKE_C_COMPILER:STRING=/usr/bin/cc
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-DNDEBUG -Os
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-DNDEBUG -O2
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-g -DNDEBUG -O2
//Library postfix for debug builds. Normally left blank.
CMAKE_DEBUG_POSTFIX:STRING=
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/koen/Documents/GitHub/BrowserC/CMakeFiles/pkgRedirects
//User executables (bin)
CMAKE_INSTALL_BINDIR:PATH=bin
//Read-only architecture-independent data (DATAROOTDIR)
CMAKE_INSTALL_DATADIR:PATH=
//Read-only architecture-independent data root (share)
CMAKE_INSTALL_DATAROOTDIR:PATH=share
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
CMAKE_INSTALL_DOCDIR:PATH=
//C header files (include)
CMAKE_INSTALL_INCLUDEDIR:PATH=include
//Info documentation (DATAROOTDIR/info)
CMAKE_INSTALL_INFODIR:PATH=
//Object code libraries (lib)
CMAKE_INSTALL_LIBDIR:PATH=lib
//Program executables (libexec)
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
//Locale-dependent data (DATAROOTDIR/locale)
CMAKE_INSTALL_LOCALEDIR:PATH=
//Modifiable single-machine data (var)
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
//Man documentation (DATAROOTDIR/man)
CMAKE_INSTALL_MANDIR:PATH=
//C header files for non-gcc (/usr/include)
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//RPATH for installed binaries
CMAKE_INSTALL_RPATH:STRING=
//Run-time variable data (LOCALSTATEDIR/run)
CMAKE_INSTALL_RUNSTATEDIR:PATH=
//System admin executables (sbin)
CMAKE_INSTALL_SBINDIR:PATH=sbin
//Modifiable architecture-independent data (com)
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
//Read-only single-machine data (etc)
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
//Name or full path to lber library
CMAKE_LBER_LIB:STRING=lber
//Path to LDAP include directory
CMAKE_LDAP_INCLUDE_DIR:STRING=
//Name or full path to ldap library
CMAKE_LDAP_LIB:STRING=ldap
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
//The minimal iOS version that will be able to run the built binaries.
// Cannot be lower than 13.0
CMAKE_OSX_DEPLOYMENT_TARGET:STRING=13.0
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=browser
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=3.4.0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=3
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=4
//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/usr/bin/readelf
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Path to a library.
COREAUDIO_FRAMEWORK:FILEPATH=COREAUDIO_FRAMEWORK-NOTFOUND
//Enable to build Debian packages
CPACK_BINARY_DEB:BOOL=OFF
//Enable to build FreeBSD packages
CPACK_BINARY_FREEBSD:BOOL=OFF
//Enable to build IFW packages
CPACK_BINARY_IFW:BOOL=OFF
//Enable to build NSIS packages
CPACK_BINARY_NSIS:BOOL=OFF
//Enable to build RPM packages
CPACK_BINARY_RPM:BOOL=OFF
//Enable to build STGZ packages
CPACK_BINARY_STGZ:BOOL=ON
//Enable to build TBZ2 packages
CPACK_BINARY_TBZ2:BOOL=OFF
//Enable to build TGZ packages
CPACK_BINARY_TGZ:BOOL=ON
//Enable to build TXZ packages
CPACK_BINARY_TXZ:BOOL=OFF
//Enable to build TZ packages
CPACK_BINARY_TZ:BOOL=ON
//Enable to build RPM source packages
CPACK_SOURCE_RPM:BOOL=OFF
//Enable to build TBZ2 source packages
CPACK_SOURCE_TBZ2:BOOL=ON
//Enable to build TGZ source packages
CPACK_SOURCE_TGZ:BOOL=ON
//Enable to build TXZ source packages
CPACK_SOURCE_TXZ:BOOL=ON
//Enable to build TZ source packages
CPACK_SOURCE_TZ:BOOL=ON
//Enable to build ZIP source packages
CPACK_SOURCE_ZIP:BOOL=OFF
//Path to a file.
CUPS_INCLUDE_DIR:PATH=CUPS_INCLUDE_DIR-NOTFOUND
//Path to a library.
CUPS_LIBRARIES:FILEPATH=CUPS_LIBRARIES-NOTFOUND
//Value Computed by CMake
CURL_BINARY_DIR:STATIC=/home/koen/Documents/GitHub/BrowserC/extern/curl
//Set to ON to enable building curl with brotli support.
CURL_BROTLI:BOOL=OFF
//Path to the CA bundle. Set 'none' to disable or 'auto' for auto-detection.
// Defaults to 'auto'.
CURL_CA_BUNDLE:STRING=/etc/ssl/certs/ca-certificates.crt
//Path to the CA bundle has been set
CURL_CA_BUNDLE_SET:BOOL=TRUE
//Set ON to use built-in CA store of TLS backend. Defaults to OFF
CURL_CA_FALLBACK:BOOL=OFF
//Location of default CA path. Set 'none' to disable or 'auto'
// for auto-detection. Defaults to 'auto'.
CURL_CA_PATH:STRING=/etc/ssl/certs
//Path to the CA bundle has been set
CURL_CA_PATH_SET:BOOL=TRUE
//disables alt-svc support
CURL_DISABLE_ALTSVC:BOOL=OFF
//disables cookies support
CURL_DISABLE_COOKIES:BOOL=OFF
//disables cryptographic authentication
CURL_DISABLE_CRYPTO_AUTH:BOOL=OFF
//disables DICT
CURL_DISABLE_DICT:BOOL=OFF
//disables DNS-over-HTTPS
CURL_DISABLE_DOH:BOOL=OFF
//disables FILE
CURL_DISABLE_FILE:BOOL=OFF
//disables FTP
CURL_DISABLE_FTP:BOOL=OFF
//disables curl_easy_options API for existing options to curl_easy_setopt
CURL_DISABLE_GETOPTIONS:BOOL=OFF
//disables Gopher
CURL_DISABLE_GOPHER:BOOL=OFF
//disables HSTS support
CURL_DISABLE_HSTS:BOOL=OFF
//disables HTTP
CURL_DISABLE_HTTP:BOOL=OFF
//disables all HTTP authentication methods
CURL_DISABLE_HTTP_AUTH:BOOL=OFF
//disables IMAP
CURL_DISABLE_IMAP:BOOL=OFF
//disables LDAP
CURL_DISABLE_LDAP:BOOL=ON
//disables LDAPS
CURL_DISABLE_LDAPS:BOOL=ON
//disables --libcurl option from the curl tool
CURL_DISABLE_LIBCURL_OPTION:BOOL=OFF
//disables MIME support
CURL_DISABLE_MIME:BOOL=OFF
//disables MQTT
CURL_DISABLE_MQTT:BOOL=OFF
//disables netrc parser
CURL_DISABLE_NETRC:BOOL=OFF
//disables NTLM support
CURL_DISABLE_NTLM:BOOL=OFF
//Disable automatic loading of OpenSSL configuration
CURL_DISABLE_OPENSSL_AUTO_LOAD_CONFIG:BOOL=OFF
//disables date parsing
CURL_DISABLE_PARSEDATE:BOOL=OFF
//disables POP3
CURL_DISABLE_POP3:BOOL=OFF
//disables built-in progress meter
CURL_DISABLE_PROGRESS_METER:BOOL=OFF
//disables proxy support
CURL_DISABLE_PROXY:BOOL=OFF
//disables RTSP
CURL_DISABLE_RTSP:BOOL=OFF
//disables shuffle DNS feature
CURL_DISABLE_SHUFFLE_DNS:BOOL=OFF
//disables SMB
CURL_DISABLE_SMB:BOOL=OFF
//disables SMTP
CURL_DISABLE_SMTP:BOOL=OFF
//disables use of socketpair for curl_multi_poll
CURL_DISABLE_SOCKETPAIR:BOOL=OFF
//disables Telnet
CURL_DISABLE_TELNET:BOOL=OFF
//disables TFTP
CURL_DISABLE_TFTP:BOOL=OFF
//disables verbose strings
CURL_DISABLE_VERBOSE_STRINGS:BOOL=OFF
//to enable cmake export target
CURL_ENABLE_EXPORT_TARGET:BOOL=ON
//Enable SSL support
CURL_ENABLE_SSL:BOOL=ON
//Set to ON to hide libcurl internal symbols (=hide all symbols
// that aren't officially external).
CURL_HIDDEN_SYMBOLS:BOOL=ON
//Value Computed by CMake
CURL_IS_TOP_LEVEL:STATIC=OFF
//Turn on compiler Link Time Optimizations
CURL_LTO:BOOL=OFF
//Value Computed by CMake
CURL_SOURCE_DIR:STATIC=/home/koen/Documents/GitHub/BrowserC/extern/curl
//Enable BearSSL for SSL/TLS
CURL_USE_BEARSSL:BOOL=OFF
//Use GSSAPI implementation (right now only Heimdal is supported
// with CMake build)
CURL_USE_GSSAPI:BOOL=OFF
//Use libPSL
CURL_USE_LIBPSL:BOOL=ON
//Use libSSH
CURL_USE_LIBSSH:BOOL=OFF
//Use libSSH2
CURL_USE_LIBSSH2:BOOL=ON
//Enable mbedTLS for SSL/TLS
CURL_USE_MBEDTLS:BOOL=OFF
//Enable NSS for SSL/TLS
CURL_USE_NSS:BOOL=OFF
//Use OpenLDAP code.
CURL_USE_OPENLDAP:BOOL=OFF
//Use OpenSSL code. Experimental
CURL_USE_OPENSSL:BOOL=ON
//enable wolfSSL for SSL/TLS
CURL_USE_WOLFSSL:BOOL=OFF
//Turn compiler warnings into errors
CURL_WERROR:BOOL=OFF
//Build curl with ZLIB support (AUTO, ON or OFF)
CURL_ZLIB:STRING=AUTO
//Set to ON to enable building curl with zstd support.
CURL_ZSTD:BOOL=OFF
//Show options for customizing your Raylib library build.
CUSTOMIZE_BUILD:BOOL=OFF
//Customize RmlUi configuration files for overriding the default
// configuration and types.
CUSTOM_CONFIGURATION:BOOL=OFF
//Custom configuration file to be included in place of <RmlUi/Config/Config.h>.
CUSTOM_CONFIGURATION_FILE:STRING=
//Extra include directories (use with CUSTOM_CONFIGURATION_FILE).
CUSTOM_INCLUDE_DIRS:STRING=
//Extra link libraries (use with CUSTOM_CONFIGURATION_FILE).
CUSTOM_LINK_LIBRARIES:STRING=
//Path to a file.
DBus1_ARCH_INCLUDE_DIR:PATH=/usr/lib/x86_64-linux-gnu/dbus-1.0/include
//The directory containing a CMake configuration file for DBus1.
DBus1_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/DBus1
//Path to a file.
DBus1_INCLUDE_DIR:PATH=/usr/include/dbus-1.0
//Path to a library.
DBus1_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libdbus-1.so
//Disable cache beckend
DISABLE_CACHE:BOOL=OFF
//Disable fastcgi web server api
DISABLE_FCGI:BOOL=OFF
//Disable usage of gcrypt library
DISABLE_GCRYPT:BOOL=OFF
//Disable support of gzip output compression
DISABLE_GZIP:BOOL=OFF
//Disable http web server
DISABLE_HTTP:BOOL=OFF
//Disable iconv library (default On on Windows)
DISABLE_ICONV:BOOL=OFF
//Disable icu locale backend
DISABLE_ICU_LOCALE:BOOL=OFF
//Disable usage of openssl library
DISABLE_OPENSSL:BOOL=OFF
//Disable PCRE support
DISABLE_PCRE:BOOL=OFF
//Disable POSIX locale backend
DISABLE_POSIX_LOCALE:BOOL=OFF
//Disable prefork-cache beckend
DISABLE_PREFORK_CACHE:BOOL=OFF
//Build with rtti and exceptions disabled.
DISABLE_RTTI_AND_EXCEPTIONS:BOOL=OFF
//Disable scgi web server api
DISABLE_SCGI:BOOL=OFF
//Disable shared libraries build
DISABLE_SHARED:BOOL=OFF
//Disable static libraries build
DISABLE_STATIC:BOOL=OFF
//Disable std locale backend
DISABLE_STD_LOCALE:BOOL=OFF
//Disable distributed cache beckend
DISABLE_TCPCACHE:BOOL=OFF
//Disable Win32API locale backend
DISABLE_WINAPI_LOCALE:BOOL=ON
//Path to a file.
DOUBLE_CONVERSION_INCLUDE_DIR:PATH=DOUBLE_CONVERSION_INCLUDE_DIR-NOTFOUND
//Path to a library.
DOUBLE_CONVERSION_LIBRARY_DEBUG:FILEPATH=DOUBLE_CONVERSION_LIBRARY_DEBUG-NOTFOUND
//Path to a library.
DOUBLE_CONVERSION_LIBRARY_RELEASE:FILEPATH=DOUBLE_CONVERSION_LIBRARY_RELEASE-NOTFOUND
//Dot tool for use with Doxygen
DOXYGEN_DOT_EXECUTABLE:FILEPATH=/usr/bin/dot
//Doxygen documentation generation tool (https://www.doxygen.nl)
DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND
//Enable sanitizers
ECM_ENABLE_SANITIZERS:STRING=
//Path to a file.
EGL_INCLUDE_DIR:PATH=/usr/include
//Path to a library.
EGL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libEGL.so
//Set ON to output node allocation diagnostics.
ENABLE_ALLOC_DEBUG:BOOL=OFF
//Set to ON to enable c-ares support
ENABLE_ARES:BOOL=OFF
//Enable AddressSanitizer (ASAN) for debugging (degrades performance)
ENABLE_ASAN:BOOL=OFF
//Set to OFF to disable Tidy runtime configuration file support
ENABLE_CONFIG_FILES:BOOL=ON
//Set to ON to build with TrackMemory feature enabled
ENABLE_CURLDEBUG:BOOL=OFF
//Set to ON to enable curl debug features
ENABLE_DEBUG:BOOL=OFF
//Set ON to output debugging messages.
ENABLE_DEBUG_LOG:BOOL=OFF
//Define if you want to enable IPv6 support