-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeCache.txt
1678 lines (1408 loc) · 55.2 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/preeti/mysql-server
# It was generated by CMake: /usr/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
########################
//path to the executable
ACLOCAL_EXECUTABLE:FILEPATH=ACLOCAL_EXECUTABLE-NOTFOUND
//path to the executable
AUTOCONF_EXECUTABLE:FILEPATH=AUTOCONF_EXECUTABLE-NOTFOUND
//path to the executable
AUTOHEADER_EXECUTABLE:FILEPATH=AUTOHEADER_EXECUTABLE-NOTFOUND
//path to the executable
AUTOMAKE_EXECUTABLE:FILEPATH=AUTOMAKE_EXECUTABLE-NOTFOUND
//path to the awk executable
AWK_EXECUTABLE:FILEPATH=/usr/bin/awk
//path to the bison executable
BISON_EXECUTABLE:FILEPATH=/usr/bin/bison
//Path to a file.
BOOST_INCLUDE_DIR:PATH=/home/preeti/my_boost/boost_1_59_0
//Bundle mecab and ipadic with plugin
BUNDLE_MECAB:BOOL=ON
//path to the executable
CAT_EXECUTABLE:FILEPATH=/bin/cat
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar
//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
//\n CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel
CMAKE_BUILD_TYPE:STRING=Debug
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//CXX compiler.
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
//Flags used by the compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release minsize builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the compiler during Release with Debug Info builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler.
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
//Flags used by the compiler during all build types.
CMAKE_C_FLAGS:STRING=
//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release minsize builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the compiler during Release with Debug Info builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Flags used by the linker.
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 release minsize 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 Release with Debug Info builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//install prefix
CMAKE_INSTALL_PREFIX:PATH=/usr/local/mysql
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING=' '
//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info 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
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=MySQL
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING=' '
//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info 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.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip
//If true, cmake will use relative paths in makefiles and projects.
CMAKE_USE_RELATIVE_PATHS:BOOL=OFF
//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
//Set to true if this is a community build
COMMUNITY_BUILD:BOOL=ON
//Path to a file.
CURSES_CURSES_H_PATH:PATH=/usr/include
//Path to a library.
CURSES_CURSES_LIBRARY:FILEPATH=/usr/lib/i386-linux-gnu/libcurses.so
//Path to a library.
CURSES_EXTRA_LIBRARY:FILEPATH=CURSES_EXTRA_LIBRARY-NOTFOUND
//Path to a library.
CURSES_FORM_LIBRARY:FILEPATH=/usr/lib/i386-linux-gnu/libform.so
//Path to a file.
CURSES_HAVE_CURSES_H:FILEPATH=/usr/include/curses.h
//The curses include path
CURSES_INCLUDE_PATH:FILEPATH=/usr/include
//The curses library
CURSES_LIBRARY:FILEPATH=/usr/lib/i386-linux-gnu/libcurses.so
//Path to a library.
CURSES_NCURSES_LIBRARY:FILEPATH=/usr/lib/i386-linux-gnu/libncurses.so
//Build server as mysqld-debug (debug builds only)
DEBUG_EXTNAME:BOOL=OFF
//Exclude the performance schema condition instrumentation
DISABLE_PSI_COND:BOOL=OFF
//Exclude the performance schema file instrumentation
DISABLE_PSI_FILE:BOOL=OFF
//Exclude the performance schema idle instrumentation
DISABLE_PSI_IDLE:BOOL=OFF
//Exclude the performance schema memory instrumentation
DISABLE_PSI_MEMORY:BOOL=OFF
//Exclude the performance schema metadata instrumentation
DISABLE_PSI_METADATA:BOOL=OFF
//Exclude the performance schema mutex instrumentation
DISABLE_PSI_MUTEX:BOOL=OFF
//Exclude the performance schema prepared statements instances
// instrumentation
DISABLE_PSI_PS:BOOL=OFF
//Exclude the performance schema rwlock instrumentation
DISABLE_PSI_RWLOCK:BOOL=OFF
//Exclude the performance schema socket instrumentation
DISABLE_PSI_SOCKET:BOOL=OFF
//Exclude the performance schema stored procedure instrumentation
DISABLE_PSI_SP:BOOL=OFF
//Exclude the performance schema stage instrumentation
DISABLE_PSI_STAGE:BOOL=OFF
//Exclude the performance schema statement instrumentation
DISABLE_PSI_STATEMENT:BOOL=OFF
//Exclude the performance schema statement digest instrumentation
DISABLE_PSI_STATEMENT_DIGEST:BOOL=OFF
//Exclude the performance schema table instrumentation
DISABLE_PSI_TABLE:BOOL=OFF
//Exclude the performance schema thread instrumentation
DISABLE_PSI_THREAD:BOOL=OFF
//Exclude the performance schema transaction instrumentation
DISABLE_PSI_TRANSACTION:BOOL=OFF
//Don't build shared libraries, compile code as position-dependent
DISABLE_SHARED:BOOL=OFF
//Download boost from sourceforge.
DOWNLOAD_BOOST:BOOL=1
//Timeout in seconds when downloading boost.
DOWNLOAD_BOOST_TIMEOUT:STRING=600
//Path to a program.
DTRACE:FILEPATH=DTRACE-NOTFOUND
//If we should enable LOAD DATA LOCAL by default
ENABLED_LOCAL_INFILE:BOOL=OFF
//Enable profiling
ENABLED_PROFILING:BOOL=ON
//Enable debug sync (debug builds only)
ENABLE_DEBUG_SYNC:BOOL=ON
//Download and build 3rd party source code components, e.g. google
// mock
ENABLE_DOWNLOADS:BOOL=OFF
//Enable gcov (debug, Linux builds only)
ENABLE_GCOV:BOOL=OFF
//Enable gprof (optimized, Linux builds only)
ENABLE_GPROF:BOOL=OFF
//Enable SASL on InnoDB Memcached
ENABLE_MEMCACHED_SASL:BOOL=OFF
//Enable SASL on InnoDB Memcached
ENABLE_MEMCACHED_SASL_PWDB:BOOL=OFF
// Selection of features. This option is deprecated
FEATURE_SET:STRING=community
//Disable compiler version checks
FORCE_UNSUPPORTED_COMPILER:BOOL=OFF
//The curses form library
FORM_LIBRARY:FILEPATH=/usr/lib/i386-linux-gnu/libform.so
//Path to a program.
GETCONF:FILEPATH=/usr/bin/getconf
//git command line client
GIT_EXECUTABLE:FILEPATH=/usr/bin/git
//path to the executable
GLIBTOOLIZE_EXECUTABLE:FILEPATH=GLIBTOOLIZE_EXECUTABLE-NOTFOUND
//path to the executable
GTAR_EXECUTABLE:FILEPATH=GTAR_EXECUTABLE-NOTFOUND
//Compile InnoDB with compiler hints
INNODB_COMPILER_HINTS:BOOL=ON
//BIN installation directory
INSTALL_BINDIR:STRING=bin
//DOC installation directory
INSTALL_DOCDIR:STRING=docs
//DOCREADME installation directory
INSTALL_DOCREADMEDIR:STRING=.
//INCLUDE installation directory
INSTALL_INCLUDEDIR:STRING=include
//INFO installation directory
INSTALL_INFODIR:STRING=docs
//Installation directory layout. Options are: TARGZ (as in tar.gz
// installer), WIN (as in zip installer), STANDALONE, RPM, DEB,
// SVR4, FREEBSD, GLIBC, OSX, SLES
INSTALL_LAYOUT:STRING=STANDALONE
//LIB installation directory
INSTALL_LIBDIR:STRING=lib
//MAN installation directory
INSTALL_MANDIR:STRING=man
//MYSQLDATA installation directory
INSTALL_MYSQLDATADIR:STRING=data
//MYSQLSHARE installation directory
INSTALL_MYSQLSHAREDIR:STRING=share
//MYSQLTEST installation directory
INSTALL_MYSQLTESTDIR:STRING=mysql-test
//Where to install mysqlclient.pc, defaults to lib/pkgconfig
INSTALL_PKGCONFIGDIR:PATH=
//PLUGIN installation directory
INSTALL_PLUGINDIR:STRING=lib/plugin
//PLUGINTEST installation directory
INSTALL_PLUGINTESTDIR:STRING=
//SBIN installation directory
INSTALL_SBINDIR:STRING=bin
//SCRIPT installation directory
INSTALL_SCRIPTDIR:STRING=scripts
//SECURE_FILE_PRIV installation directory
INSTALL_SECURE_FILE_PRIVDIR:STRING=
//SECURE_FILE_PRIV_EMBEDDED installation directory
INSTALL_SECURE_FILE_PRIV_EMBEDDEDDIR:STRING=NULL
//SHARE installation directory
INSTALL_SHAREDIR:STRING=share
//SUPPORTFILES installation directory
INSTALL_SUPPORTFILESDIR:STRING=support-files
//path to the executable
LIBTOOLIZE_EXECUTABLE:FILEPATH=LIBTOOLIZE_EXECUTABLE-NOTFOUND
//Path to a file.
LOCAL_BOOST_DIR:FILEPATH=/home/preeti/my_boost/boost_1_59_0
//Set the entity that appears as the manufacturer of packages that
// support a manufacturer field.
MANUFACTURER:STRING=Built from Source
//Mutex type: event, sys or futex
MUTEXTYPE:STRING=event
//default MySQL data directory
MYSQL_DATADIR:PATH=/usr/local/mysql/data
//Location from where documentation is copied
MYSQL_DOCS_LOCATION:PATH=
//MySQL maintainer-specific development environment
MYSQL_MAINTAINER_MODE:BOOL=ON
//MySQL project name
MYSQL_PROJECT_NAME:STRING=MySQL
//Value Computed by CMake
MySQL_BINARY_DIR:STATIC=/home/preeti/mysql-server
//Value Computed by CMake
MySQL_SOURCE_DIR:STATIC=/home/preeti/mysql-server
//Support tracing of Optimizer
OPTIMIZER_TRACE:BOOL=ON
//config directory (for my.cnf)
SYSCONFDIR:PATH=/usr/local/mysql/etc
//path to the executable
TAR_EXECUTABLE:FILEPATH=/bin/tar
//PATH to MySQL TMP dir. Defaults to the P_tmpdir macro in <stdio.h>
TMPDIR:PATH=P_tmpdir
//OFF
WITHOUT_SERVER:BOOL=OFF
//Link ARCHIVE statically to the server
WITH_ARCHIVE_STORAGE_ENGINE:BOOL=ON
//Enable address sanitizer
WITH_ASAN:BOOL=OFF
//Link BLACKHOLE statically to the server
WITH_BLACKHOLE_STORAGE_ENGINE:BOOL=ON
//Path to boost sources: a directory, or a tarball to be unzipped.
WITH_BOOST:PATH=/home/preeti/my_boost
//Support for client-side protocol tracing plugins
WITH_CLIENT_PROTOCOL_TRACING:BOOL=ON
//Use dbug/safemutex
WITH_DEBUG:BOOL=1
//Use flags from cmake/build_configurations/compiler_options.cmake
WITH_DEFAULT_COMPILER_OPTIONS:BOOL=ON
//Use feature set in cmake/build_configurations/feature_set.cmake
WITH_DEFAULT_FEATURE_SET:BOOL=ON
//By default use bundled editline
WITH_EDITLINE:STRING=bundled
//Compile MySQL with embedded server
WITH_EMBEDDED_SERVER:BOOL=ON
//Generate shared version of embedded library (in addition to the
// static one)
WITH_EMBEDDED_SHARED_LIBRARY:BOOL=OFF
//Options are: none, complex, all
WITH_EXTRA_CHARSETS:STRING=all
//Link FEDERATED statically to the server
WITH_FEDERATED_STORAGE_ENGINE:BOOL=ON
//Enable extra InnoDB debug checks
WITH_INNODB_EXTRA_DEBUG:BOOL=OFF
WITH_INNODB_MEMCACHED:BOOL=OFF
//By default use bundled libevent on this platform
WITH_LIBEVENT:STRING=bundled
//Compile with tcp wrappers support
WITH_LIBWRAP:BOOL=OFF
//By default use bundled lz4 library
WITH_LZ4:STRING=bundled
//<empty> (disabled) | system (use os library) | </path/to/custom/installation>
// (use custom version)
WITH_MECAB:STRING=
//Enable memory sanitizer
WITH_MSAN:BOOL=OFF
//Additional linker flags for mysqld
WITH_MYSQLD_LDFLAGS:STRING=
//Autodetect MySQL Cluster version and set ndbcluster as DEFAULT
// plugin
WITH_NDB_DEFAULT_PLUGIN_DETECT:BOOL=ON
//Link NGRAM_PARSER statically to the server
WITH_NGRAM_PARSER:BOOL=ON
//Explicitly set NUMA memory allocation policy
WITH_NUMA:BOOL=ON
//Link PARTITION statically to the server
WITH_PARTITION_STORAGE_ENGINE:BOOL=ON
//Generate PIC objects
WITH_PIC:BOOL=ON
//bundled (use yassl), yes (prefer os library if present, otherwise
// use bundled), system (use os library), </path/to/custom/installation>
WITH_SSL:STRING=bundled
//Enable installation of systemd support files
WITH_SYSTEMD:BOOL=OFF
//Have a built-in test protocol trace plugin in libmysql (requires
// WITH_CLIENT_PROTOCOL_TRACING option)
WITH_TEST_TRACE_PLUGIN:BOOL=OFF
//Enable undefined behavior sanitizer
WITH_UBSAN:BOOL=OFF
//Compile MySQL with unit tests
WITH_UNIT_TESTS:BOOL=ON
//Valgrind instrumentation
WITH_VALGRIND:BOOL=OFF
WITH_ZLIB:STRING=bundled
//Dependencies for the target
archive_LIB_DEPENDS:STATIC=general;-lpthread;general;zlib;
//Dependencies for the target
audit_null_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
auth_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
auth_socket_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
auth_test_plugin_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
binlog_LIB_DEPENDS:STATIC=general;-lpthread;general;binlogevents_static;
//Dependencies for the target
binlogevents_static_LIB_DEPENDS:STATIC=general;-lpthread;general;mysys;general;dbug;
//Dependencies for the target
binlogstandalone_shared_LIB_DEPENDS:STATIC=general;-lpthread;general;zlib;
//Dependencies for the target
binlogstandalone_static_LIB_DEPENDS:STATIC=general;-lpthread;general;zlib;
//Dependencies for the target
blackhole_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
blackhole_embedded_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
boost_lib_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
client_base_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlclient;general;boost_lib;
//Dependencies for the target
clientlib_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
csv_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
daemon_example_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
dbug_LIB_DEPENDS:STATIC=general;-lpthread;general;mysys;
//Dependencies for the target
edit_LIB_DEPENDS:STATIC=general;-lpthread;general;/usr/lib/i386-linux-gnu/libcurses.so;
//Dependencies for the target
event_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
event_share_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
example_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
federated_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
federated_embedded_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
ftexample_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
heap_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
heap_embedded_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
innobase_LIB_DEPENDS:STATIC=general;-lpthread;general;zlib;general;lz4_lib;
//Dependencies for the target
libmysql_LIB_DEPENDS:STATIC=general;-lpthread;general;clientlib;general;dbug;general;strings;general;vio;general;mysys;general;mysys_ssl;general;zlib;general;yassl;general;taocrypt;general;dl;
//Dependencies for the target
locking_service_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
lz4_lib_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
master_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
myisam_LIB_DEPENDS:STATIC=general;-lpthread;general;mysys;
//Dependencies for the target
myisam_embedded_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
myisammrg_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
myisammrg_embedded_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
mysql_no_login_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
mysqlcheck_core_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlclient;
//Dependencies for the target
mysqlclient_LIB_DEPENDS:STATIC=general;-lpthread;general;-lpthread;general;m;general;rt;general;dl;
//Dependencies for the target
mysqlpump_lib_LIB_DEPENDS:STATIC=general;-lpthread;general;client_base;general;lz4_lib;general;boost_lib;
//Dependencies for the target
mysqlserver_LIB_DEPENDS:STATIC=general;-lpthread;general;-lpthread;general;m;general;rt;general;crypt;general;dl;
//Dependencies for the target
mysqlservices_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
mysys_LIB_DEPENDS:STATIC=general;-lpthread;general;dbug;general;strings;general;zlib;general;m;general;rt;
//Dependencies for the target
mysys_ssl_LIB_DEPENDS:STATIC=general;-lpthread;general;dbug;general;strings;general;yassl;general;taocrypt;general;zlib;
//Dependencies for the target
mytap_LIB_DEPENDS:STATIC=general;-lpthread;general;mysys;
//Dependencies for the target
ngram_parser_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
partition_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
partition_embedded_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
perfschema_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
pfs_server_stubs_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
qa_auth_client_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
qa_auth_interface_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
qa_auth_server_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
regex_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
replication_observers_example_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
rewrite_example_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
rewriter_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
rpl_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
semisync_master_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
semisync_slave_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
slave_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
sql_LIB_DEPENDS:STATIC=general;-lpthread;general;perfschema;general;myisam;general;partition;general;federated;general;myisammrg;general;archive;general;zlib;general;heap;general;innobase;general;zlib;general;lz4_lib;general;blackhole;general;csv;general;ngram_parser;general;mysys;general;mysys_ssl;general;dbug;general;strings;general;vio;general;regex;general;binlogevents_static;general;crypt;general;dl;general;yassl;general;taocrypt;
//Dependencies for the target
sql_embedded_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
sqlgunitlib_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
strings_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
taocrypt_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
test_framework_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_security_context_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_services_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_services_thread_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_session_detach_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_session_in_thd_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_session_info_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_2_sessions_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_all_col_types_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_cmds_1_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_commit_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_complex_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_errors_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_lock_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_processlist_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_replication_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_shutdown_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_sqlmode_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_stored_procedures_functions_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_sql_views_triggers_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_x_sessions_deinit_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
test_x_sessions_init_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
udf_example_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqld;
//Dependencies for the target
validate_password_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
version_token_LIB_DEPENDS:STATIC=general;-lpthread;general;mysqlservices;
//Dependencies for the target
vio_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
yassl_LIB_DEPENDS:STATIC=general;-lpthread;
//Dependencies for the target
zlib_LIB_DEPENDS:STATIC=general;-lpthread;
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: ACLOCAL_EXECUTABLE
ACLOCAL_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: AUTOCONF_EXECUTABLE
AUTOCONF_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: AUTOHEADER_EXECUTABLE
AUTOHEADER_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: AUTOMAKE_EXECUTABLE
AUTOMAKE_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: AWK_EXECUTABLE
AWK_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: BISON_EXECUTABLE
BISON_EXECUTABLE-ADVANCED:INTERNAL=1
//Bison version 2 or higher
BISON_USABLE:INTERNAL=1
BOOST_FOUND:INTERNAL=1
//ADVANCED property for variable: CAT_EXECUTABLE
CAT_EXECUTABLE-ADVANCED:INTERNAL=1
//Functions exported by client API
CLIENT_API_FUNCTIONS:INTERNAL=mysql_thread_end;mysql_thread_init;mysql_affected_rows;mysql_autocommit;mysql_stmt_bind_param;mysql_stmt_bind_result;mysql_change_user;mysql_character_set_name;mysql_close;mysql_commit;mysql_data_seek;mysql_debug;mysql_dump_debug_info;mysql_eof;mysql_errno;mysql_error;mysql_escape_string;mysql_hex_string;mysql_stmt_execute;mysql_stmt_fetch;mysql_stmt_fetch_column;mysql_fetch_field;mysql_fetch_field_direct;mysql_fetch_fields;mysql_fetch_lengths;mysql_fetch_row;mysql_field_count;mysql_field_seek;mysql_field_tell;mysql_free_result;mysql_get_client_info;mysql_get_host_info;mysql_get_proto_info;mysql_get_server_info;mysql_get_client_version;mysql_get_ssl_cipher;mysql_info;mysql_init;mysql_insert_id;mysql_kill;mysql_set_server_option;mysql_list_dbs;mysql_list_fields;mysql_list_processes;mysql_list_tables;mysql_more_results;mysql_next_result;mysql_num_fields;mysql_num_rows;mysql_options;mysql_stmt_param_count;mysql_stmt_param_metadata;mysql_ping;mysql_stmt_result_metadata;mysql_query;mysql_read_query_result;mysql_real_connect;mysql_real_escape_string;mysql_real_escape_string_quote;mysql_real_query;mysql_refresh;mysql_rollback;mysql_row_seek;mysql_row_tell;mysql_select_db;mysql_stmt_send_long_data;mysql_send_query;mysql_shutdown;mysql_ssl_set;mysql_stat;mysql_stmt_affected_rows;mysql_stmt_close;mysql_stmt_reset;mysql_stmt_data_seek;mysql_stmt_errno;mysql_stmt_error;mysql_stmt_free_result;mysql_stmt_num_rows;mysql_stmt_row_seek;mysql_stmt_row_tell;mysql_stmt_store_result;mysql_store_result;mysql_thread_id;mysql_thread_safe;mysql_use_result;mysql_warning_count;mysql_stmt_sqlstate;mysql_sqlstate;mysql_get_server_version;mysql_stmt_prepare;mysql_stmt_init;mysql_stmt_insert_id;mysql_stmt_attr_get;mysql_stmt_attr_set;mysql_stmt_field_count;mysql_set_local_infile_default;mysql_set_local_infile_handler;mysql_server_init;mysql_server_end;mysql_set_character_set;mysql_get_character_set_info;mysql_stmt_next_result;my_init;mysql_client_find_plugin;mysql_client_register_plugin;mysql_load_plugin;mysql_load_plugin_v;mysql_options4;mysql_plugin_options;mysql_reset_connection;mysql_get_option;mysql_session_track_get_first;mysql_session_track_get_next
//Undocumented Functions exported by client API
CLIENT_API_FUNCTIONS_UNDOCUMENTED:INTERNAL=get_tty_password;my_load_defaults;handle_options
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_BUILD_TOOL
CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1
//What is the target build tool cmake is generating for.
CMAKE_BUILD_TOOL:INTERNAL=/usr/bin/make
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/preeti/mysql-server
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=8
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=12
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Have symbol pthread_create
CMAKE_HAVE_LIBC_CREATE:INTERNAL=
//Have library pthreads
CMAKE_HAVE_PTHREADS_CREATE:INTERNAL=
//Have library pthread
CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1
//Have include pthread.h
CMAKE_HAVE_PTHREAD_H:INTERNAL=1
//Start directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/preeti/mysql-server
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=70
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-2.8
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(unsigned short)
CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=2
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/bin/uname
//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS
CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURSES_CURSES_H_PATH
CURSES_CURSES_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURSES_CURSES_LIBRARY
CURSES_CURSES_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURSES_EXTRA_LIBRARY
CURSES_EXTRA_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURSES_FORM_LIBRARY
CURSES_FORM_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CURSES_HAVE_CURSES_H