CMakeCache.txt
48.8 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
# This is the CMakeCache file.
# For build in directory: /cygdrive/c/PX4/home/Firmware/build/px4_sitl_default
# It was generated by CMake: /usr/bin/cmake.exe
# 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
########################
//Dependencies for the target
AirspeedValidator_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;ecl_airdata;
//Dependencies for the target
AllocatedActuatorMixer_LIB_DEPENDS:STATIC=general;MixerBase;
//Dependencies for the target
ArmAuthorization_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
AttitudeControl_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Path to a program.
BLOATY_PROGRAM:FILEPATH=BLOATY_PROGRAM-NOTFOUND
//Build doxygen documentation
BUILD_DOXYGEN:BOOL=OFF
//Use ccache if available
CCACHE:BOOL=ON
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar.exe
//ASM compiler
CMAKE_ASM_COMPILER:FILEPATH=/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.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib.exe
//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=-Os -DNDEBUG
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Build type
CMAKE_BUILD_TYPE:STRING=RelWithDebInfo
//CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++.exe
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib.exe
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the C++ compiler during coverage builds
CMAKE_CXX_FLAGS_COVERAGE:STRING=--coverage -fprofile-arcs -ftest-coverage -O0 -fno-default-inline -fno-inline -fno-inline-small-functions -fno-elide-constructors
//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=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler
CMAKE_C_COMPILER:FILEPATH=/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.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib.exe
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
//Flags used by the C compiler during coverage builds
CMAKE_C_FLAGS_COVERAGE:STRING=--coverage -ftest-coverage -fprofile-arcs -O0 -fno-default-inline -fno-inline
//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=-Os -DNDEBUG
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=-Wl,--enable-auto-import
//Flags used for linking binaries during coverage builds
CMAKE_EXE_LINKER_FLAGS_COVERAGE:STRING=--coverage -ftest-coverage -lgcov
//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=OFF
//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
//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
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld.exe
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja.exe
//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.exe
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy.exe
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump.exe
//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=px4
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib.exe
//RC compiler
CMAKE_RC_COMPILER:FILEPATH=/usr/bin/windres.exe
//Flags for Windows Resource Compiler during all build types.
CMAKE_RC_FLAGS:STRING=
//Flags for Windows Resource Compiler during DEBUG builds.
CMAKE_RC_FLAGS_DEBUG:STRING=
//Flags for Windows Resource Compiler during MINSIZEREL builds.
CMAKE_RC_FLAGS_MINSIZEREL:STRING=
//Flags for Windows Resource Compiler during RELEASE builds.
CMAKE_RC_FLAGS_RELEASE:STRING=
//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=
//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.exe
//Configure test targets
CMAKE_TESTING: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
//desired configuration
CONFIG:STRING=px4_sitl_default
//Display html for coverage
COV_HTML:BOOL=OFF
//Dependencies for the target
CollisionPrevention_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Enable ECL address sanitizer
ECL_ASAN:BOOL=OFF
//Value Computed by CMake
ECL_BINARY_DIR:STATIC=/cygdrive/c/PX4/home/Firmware/build/px4_sitl_default/src/lib/ecl
//ECL source location
ECL_SOURCE_DIR:STRING=/cygdrive/c/PX4/home/Firmware/src/lib/ecl
//Dependencies for the target
EKF2Utility_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;mathlib;
//Enable RC Input from UART mavlink connection
ENABLE_UART_RC_INPUT:BOOL=OFF
//External modules source location
EXTERNAL_MODULES_LOCATION:STRING=
//Dependencies for the target
FlightTaskAutoFollowMe_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTaskAuto;
//Dependencies for the target
FlightTaskAutoLineSmoothVel_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTaskAutoMapper;general;FlightTaskUtility;
//Dependencies for the target
FlightTaskAutoMapper_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTaskAuto;
//Dependencies for the target
FlightTaskAuto_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;avoidance;general;FlightTask;general;FlightTaskUtility;
//Dependencies for the target
FlightTaskDescend_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTask;
//Dependencies for the target
FlightTaskFailsafe_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTask;
//Dependencies for the target
FlightTaskManualAcceleration_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTaskManualAltitudeSmoothVel;general;FlightTaskUtility;
//Dependencies for the target
FlightTaskManualAltitudeSmoothVel_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTaskManualAltitude;general;FlightTaskUtility;
//Dependencies for the target
FlightTaskManualAltitude_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTask;general;FlightTaskUtility;
//Dependencies for the target
FlightTaskManualPositionSmoothVel_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTaskManualPosition;general;FlightTaskUtility;
//Dependencies for the target
FlightTaskManualPosition_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;CollisionPrevention;general;FlightTaskManualAltitude;
//Dependencies for the target
FlightTaskOrbit_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTaskManualAltitudeSmoothVel;general;SlewRate;
//Dependencies for the target
FlightTaskTransition_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTask;
//Dependencies for the target
FlightTaskUtility_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;FlightTask;general;hysteresis;general;bezier;general;SlewRate;general;motion_planning;
//Dependencies for the target
FlightTask_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Path to a program.
GENHTML_PATH:FILEPATH=GENHTML_PATH-NOTFOUND
//Dependencies for the target
HealthFlags_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
HelicopterMixer_LIB_DEPENDS:STATIC=general;MixerBase;
//Path to a program.
LCOV_PATH:FILEPATH=LCOV_PATH-NOTFOUND
//Dependencies for the target
MagnetometerBiasEstimator_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
MultirotorMixer_LIB_DEPENDS:STATIC=general;MixerBase;
//Dependencies for the target
NullMixer_LIB_DEPENDS:STATIC=general;MixerBase;
//PX4 board
PX4_BOARD:STRING=px4_sitl
//PX4 board directory
PX4_BOARD_DIR:STRING=/cygdrive/c/PX4/home/Firmware/boards/px4/sitl
//PX4 board label
PX4_BOARD_LABEL:STRING=default
//PX4 board linker prefix
PX4_BOARD_LINKER_PREFIX:STRING=
//PX4 board model
PX4_BOARD_MODEL:STRING=sitl
//PX4 board define
PX4_BOARD_NAME:STRING=PX4_SITL
//PX4 board vendor
PX4_BOARD_VENDOR:STRING=px4
//PX4 Chip
PX4_CHIP:STRING=generic
//PX4 Chip Manufacturer
PX4_CHIP_MANUFACTURER:STRING=generic
//PX4 config
PX4_CONFIG:STRING=px4_sitl_default
//PX4 board configs
PX4_CONFIGS:STRING=airmind/mindpx-v2/default.cmake;ark/can-flow/canbootloader.cmake;ark/can-flow/debug.cmake;ark/can-flow/default.cmake;atlflight/cmake_hexagon/bundle.cmake;atlflight/cmake_hexagon/fastrpc.cmake;atlflight/cmake_hexagon/hexagon_sdk.cmake;atlflight/cmake_hexagon/linux_app.cmake;atlflight/cmake_hexagon/qurt_flags.cmake;atlflight/cmake_hexagon/qurt_lib.cmake;atlflight/cmake_hexagon/toolchain/Toolchain-arm-linux-gnueabihf.cmake;atlflight/cmake_hexagon/toolchain/Toolchain-arm-oemllib32-linux-gnueabi.cmake;atlflight/cmake_hexagon/toolchain/Toolchain-qurt.cmake;atlflight/eagle/cmake/upload.cmake;atlflight/eagle/default.cmake;atlflight/eagle/qurt.cmake;atlflight/excelsior/default.cmake;atlflight/excelsior/qurt.cmake;av/x-v1/default.cmake;beaglebone/blue/cmake/init.cmake;beaglebone/blue/cmake/upload.cmake;beaglebone/blue/default.cmake;bitcraze/crazyflie/default.cmake;bitcraze/crazyflie21/default.cmake;cuav/can-gps-v1/canbootloader.cmake;cuav/can-gps-v1/debug.cmake;cuav/can-gps-v1/default.cmake;cuav/nora/bootloader.cmake;cuav/nora/default.cmake;cuav/x7pro/bootloader.cmake;cuav/x7pro/default.cmake;cubepilot/cubeorange/bootloader.cmake;cubepilot/cubeorange/console.cmake;cubepilot/cubeorange/default.cmake;cubepilot/cubeyellow/console.cmake;cubepilot/cubeyellow/default.cmake;cubepilot/io-v2/default.cmake;emlid/navio2/cmake/upload.cmake;emlid/navio2/default.cmake;holybro/can-gps-v1/canbootloader.cmake;holybro/can-gps-v1/default.cmake;holybro/durandal-v1/bootloader.cmake;holybro/durandal-v1/default.cmake;holybro/kakutef7/default.cmake;holybro/pix32v5/default.cmake;modalai/fc-v1/default.cmake;mro/ctrl-zero-f7-oem/default.cmake;mro/ctrl-zero-f7/default.cmake;mro/ctrl-zero-h7-oem/bootloader.cmake;mro/ctrl-zero-h7-oem/default.cmake;mro/ctrl-zero-h7/bootloader.cmake;mro/ctrl-zero-h7/default.cmake;mro/pixracerpro/bootloader.cmake;mro/pixracerpro/default.cmake;mro/x21-777/default.cmake;mro/x21/default.cmake;nxp/fmuk66-e/default.cmake;nxp/fmuk66-e/rtps.cmake;nxp/fmuk66-e/socketcan.cmake;nxp/fmuk66-v3/default.cmake;nxp/fmuk66-v3/rtps.cmake;nxp/fmuk66-v3/socketcan.cmake;nxp/fmurt1062-v1/default.cmake;nxp/ucans32k146/canbootloader.cmake;nxp/ucans32k146/default.cmake;omnibus/f4sd/default.cmake;px4/fmu-v2/default.cmake;px4/fmu-v2/fixedwing.cmake;px4/fmu-v2/multicopter.cmake;px4/fmu-v2/rover.cmake;px4/fmu-v2/test.cmake;px4/fmu-v3/default.cmake;px4/fmu-v4/cannode.cmake;px4/fmu-v4/default.cmake;px4/fmu-v4/uavcanv1.cmake;px4/fmu-v4pro/default.cmake;px4/fmu-v5/ctrlalloc.cmake;px4/fmu-v5/debug.cmake;px4/fmu-v5/default.cmake;px4/fmu-v5/fixedwing.cmake;px4/fmu-v5/multicopter.cmake;px4/fmu-v5/optimized.cmake;px4/fmu-v5/rover.cmake;px4/fmu-v5/rtps.cmake;px4/fmu-v5/stackcheck.cmake;px4/fmu-v5/uavcanv0periph.cmake;px4/fmu-v5/uavcanv1.cmake;px4/fmu-v5x/base_phy_DP83848C.cmake;px4/fmu-v5x/default.cmake;px4/fmu-v6u/bootloader.cmake;px4/fmu-v6u/default.cmake;px4/fmu-v6u/test.cmake;px4/fmu-v6x/bootloader.cmake;px4/fmu-v6x/default.cmake;px4/io-v2/default.cmake;px4/raspberrypi/cmake/upload.cmake;px4/raspberrypi/default.cmake;px4/sitl/ctrlalloc.cmake;px4/sitl/default.cmake;px4/sitl/nolockstep.cmake;px4/sitl/replay.cmake;px4/sitl/rtps.cmake;px4/sitl/test.cmake;scumaker/pilotpi/arm64.cmake;scumaker/pilotpi/cmake/upload.cmake;scumaker/pilotpi/default.cmake;spracing/h7extreme/default.cmake;uvify/core/default.cmake
//path to PX4 CONFIG file
PX4_CONFIG_FILE:FILEPATH=/cygdrive/c/PX4/home/Firmware/boards/px4/sitl/default.cmake
//PX4 board OS
PX4_PLATFORM:STRING=posix
//Python code coverage
PYTHON_COVERAGE:BOOL=OFF
//Path to a program.
PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3
//Dependencies for the target
PositionControl_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
PreFlightCheck_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;ArmAuthorization;general;HealthFlags;general;sensor_calibration;
//Path to a program.
ProcessorCount_cmd_getconf:FILEPATH=/usr/bin/getconf.exe
//Path to a program.
ProcessorCount_cmd_sysctl:FILEPATH=ProcessorCount_cmd_sysctl-NOTFOUND
//Dependencies for the target
RateControl_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;mathlib;
//Path to a program.
SHELLCHECK_PATH:FILEPATH=SHELLCHECK_PATH-NOTFOUND
//Dependencies for the target
SimpleMixer_LIB_DEPENDS:STATIC=general;MixerBase;
//Dependencies for the target
SlewRate_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;mathlib;
//Filter string for ctest to selectively only run specific tests
// (ctest -R)
TESTFILTER:STRING=
//Dependencies for the target
Takeoff_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;hysteresis;
//Use GNU gold linker
USE_LD_GOLD:BOOL=ON
//Dependencies for the target
WeatherVane_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
airspeed_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
arch_tone_alarm_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
avoidance_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;hysteresis;general;bezier;
//Dependencies for the target
battery_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
bezier_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
cdev_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
circuit_breaker_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//debugger for sitl
config_sitl_debugger:STRING=disable
//viewer for sitl
config_sitl_viewer:STRING=jmavsim
//Dependencies for the target
controllib_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
conversion_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
data_validator_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
drivers__airspeed_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;drivers__device;
//Dependencies for the target
drivers__camera_capture_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
drivers__camera_trigger_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
drivers__device_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;cdev;
//Dependencies for the target
drivers__gps_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
drivers__led_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;drivers__device;
//Dependencies for the target
drivers__pwm_out_sim_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;mixer;general;mixer_module;general;output_limit;
//Dependencies for the target
drivers__smbus_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
drivers__tone_alarm_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;circuit_breaker;general;arch_tone_alarm;general;tunes;
//Dependencies for the target
drivers__vmount_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;ecl_geo;
//Dependencies for the target
drivers_accelerometer_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;conversion;general;drivers__device;
//Dependencies for the target
drivers_barometer_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
drivers_gyroscope_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;conversion;general;drivers__device;
//Dependencies for the target
drivers_magnetometer_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;conversion;
//Dependencies for the target
drivers_rangefinder_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
ecl_EKF_LIB_DEPENDS:STATIC=general;ecl_geo;general;ecl_geo_lookup;
//Dependencies for the target
ecl_geo_LIB_DEPENDS:STATIC=general;m;
//Dependencies for the target
examples__dyn_hello_LIB_DEPENDS:STATIC=general;px4;
//Dependencies for the target
examples__fake_magnetometer_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;drivers_magnetometer;general;ecl_geo;general;px4_work_queue;
//Dependencies for the target
examples__fixedwing_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
examples__hello_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
examples__px4_mavlink_debug_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
examples__px4_simple_app_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
examples__rover_steering_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
examples__rpm_simulator_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
examples__uuv_example_app_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
examples__work_item_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
failure_detector_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
geofence_breach_avoidance_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
hysteresis_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
l1_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;ecl_geo;
//Dependencies for the target
landing_slope_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
launchdetection_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
led_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
lib__cdev__test__cdev_test_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;cdev;
//Dependencies for the target
lib__controllib__controllib_test_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
lib__rc__rc_tests_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;rc;
//Dependencies for the target
lib__work_queue__test__wqueue_test_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
lockstep_scheduler_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
mathlib_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
mixer_LIB_DEPENDS:STATIC=general;AllocatedActuatorMixer;general;HelicopterMixer;general;MultirotorMixer;general;NullMixer;general;SimpleMixer;
//Dependencies for the target
mixer_module_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
modules__airship_att_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
modules__airspeed_selector_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;ecl_airdata;general;AirspeedValidator;
//Dependencies for the target
modules__attitude_estimator_q_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;ecl_geo_lookup;
//Dependencies for the target
modules__camera_feedback_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
modules__commander_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;circuit_breaker;general;failure_detector;general;ecl_geo;general;hysteresis;general;PreFlightCheck;general;ArmAuthorization;general;HealthFlags;general;sensor_calibration;
//Dependencies for the target
modules__commander__commander_tests_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__dataman_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__ekf2_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;ecl_EKF;general;ecl_geo;general;perf;general;EKF2Utility;general;px4_work_queue;
//Dependencies for the target
modules__events_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__fake_gps_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
modules__flight_mode_manager_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;general;WeatherVane;general;FlightTaskManualAltitude;general;FlightTaskManualAltitudeSmoothVel;general;FlightTaskManualPosition;general;FlightTaskManualPositionSmoothVel;general;FlightTaskAutoLineSmoothVel;general;FlightTaskAutoFollowMe;general;FlightTaskFailsafe;general;FlightTaskDescend;general;FlightTaskTransition;general;FlightTaskManualAcceleration;general;FlightTaskOrbit;
//Dependencies for the target
modules__fw_att_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
modules__fw_pos_control_l1_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;l1;general;launchdetection;general;landing_slope;general;runway_takeoff;general;tecs;
//Dependencies for the target
modules__gyro_calibration_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
modules__gyro_fft_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
modules__land_detector_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;hysteresis;
//Dependencies for the target
modules__landing_target_estimator_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__load_mon_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;px4_work_queue;
//Dependencies for the target
modules__local_position_estimator_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;controllib;general;ecl_geo;general;px4_work_queue;
//Dependencies for the target
modules__logger_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;version;
//Dependencies for the target
modules__mavlink_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;airspeed;general;drivers_accelerometer;general;drivers_barometer;general;drivers_gyroscope;general;drivers_magnetometer;general;conversion;general;ecl_geo;general;version;
//Dependencies for the target
modules__mavlink__mavlink_tests_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__mc_att_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;AttitudeControl;general;mathlib;general;px4_work_queue;
//Dependencies for the target
modules__mc_hover_thrust_estimator_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;hysteresis;general;mathlib;general;px4_work_queue;general;zero_order_hover_thrust_ekf;
//Dependencies for the target
modules__mc_pos_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;PositionControl;general;Takeoff;general;controllib;general;ecl_geo;
//Dependencies for the target
modules__mc_rate_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;circuit_breaker;general;mathlib;general;RateControl;general;px4_work_queue;
//Dependencies for the target
modules__navigator_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;ecl_geo;general;landing_slope;general;geofence_breach_avoidance;general;motion_planning;
//Dependencies for the target
modules__rc_update_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;mathlib;general;px4_work_queue;
//Dependencies for the target
modules__replay_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__rover_pos_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;l1;general;pid;
//Dependencies for the target
modules__sensors_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;airspeed;general;conversion;general;data_validator;general;drivers__device;general;mathlib;general;sensor_calibration;general;vehicle_acceleration;general;vehicle_angular_velocity;general;vehicle_air_data;general;vehicle_gps_position;general;vehicle_imu;general;vehicle_magnetometer;
//Dependencies for the target
modules__simulator_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;conversion;general;ecl_geo;general;drivers_accelerometer;general;drivers_barometer;general;drivers_gyroscope;general;drivers_magnetometer;
//Dependencies for the target
modules__simulator__battery_simulator_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;battery;general;mathlib;general;px4_work_queue;
//Dependencies for the target
modules__temperature_compensation_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;mathlib;
//Dependencies for the target
modules__uORB__uORB_tests_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__uuv_att_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__uuv_pos_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
modules__vtol_att_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
motion_planning_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
parameters_LIB_DEPENDS:STATIC=general;perf;general;tinybson;general;px4_layer;
//Dependencies for the target
pid_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Value Computed by CMake
px4_BINARY_DIR:STATIC=/cygdrive/c/PX4/home/Firmware/build/px4_sitl_default
//Value Computed by CMake
px4_SOURCE_DIR:STATIC=/cygdrive/c/PX4/home/Firmware
//Dependencies for the target
px4_daemon_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
px4_layer_LIB_DEPENDS:STATIC=general;work_queue;general;px4_work_queue;general;px4_daemon;general;drivers_board;general;lockstep_scheduler;
//Dependencies for the target
px4_platform_LIB_DEPENDS:STATIC=general;uORB;
//Dependencies for the target
px4_work_queue_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;px4_platform;
//Dependencies for the target
runway_takeoff_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
sensor_calibration_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;conversion;general;parameters;
//Dependencies for the target
systemcmds__dyn_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;dl;
//Dependencies for the target
systemcmds__esc_calib_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__failure_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__led_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__mixer_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;mixer;
//Dependencies for the target
systemcmds__motor_ramp_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__motor_test_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__param_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__perf_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;perf;
//Dependencies for the target
systemcmds__pwm_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__sd_bench_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__shutdown_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__system_time_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__tests_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;ecl_geo_lookup;general;output_limit;general;version;
//Dependencies for the target
systemcmds__tests__hrt_test_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__topic_listener_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__tune_control_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;tunes;
//Dependencies for the target
systemcmds__uorb_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemcmds__ver_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;general;version;
//Dependencies for the target
systemcmds__work_queue_LIB_DEPENDS:STATIC=general;px4_layer;general;px4_platform;general;systemlib;
//Dependencies for the target
systemlib_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
tecs_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;ecl_geo;
//Dependencies for the target
terrain_estimation_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
tunes_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
//Dependencies for the target
uORB_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;cdev;general;uorb_msgs;
//Dependencies for the target
uorb_msgs_LIB_DEPENDS:STATIC=general;m;
//Dependencies for the target
vehicle_acceleration_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;mathlib;general;px4_work_queue;general;sensor_calibration;
//Dependencies for the target
vehicle_air_data_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;px4_work_queue;
//Dependencies for the target
vehicle_angular_velocity_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;mathlib;general;px4_work_queue;general;sensor_calibration;
//Dependencies for the target
vehicle_gps_position_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;ecl_geo;general;px4_work_queue;
//Dependencies for the target
vehicle_imu_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;px4_work_queue;general;sensor_calibration;
//Dependencies for the target
vehicle_magnetometer_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;general;px4_work_queue;general;sensor_calibration;
//Dependencies for the target
version_LIB_DEPENDS:STATIC=general;drivers_board;
//Dependencies for the target
zero_order_hover_thrust_ekf_LIB_DEPENDS:STATIC=general;px4_platform;general;uorb_msgs;
########################
# INTERNAL cache entries
########################
//ccache program
CCACHE_PROGRAM:INTERNAL=
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER
CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//STRINGS property for variable: CMAKE_BUILD_TYPE
CMAKE_BUILD_TYPE-STRINGS:INTERNAL=Debug;Release;RelWithDebInfo;MinSizeRel;Coverage
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/cygdrive/c/PX4/home/Firmware/build/px4_sitl_default
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=14
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=5
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_COVERAGE
CMAKE_CXX_FLAGS_COVERAGE-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_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_COVERAGE
CMAKE_C_FLAGS_COVERAGE-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=Unknown
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_COVERAGE
CMAKE_EXE_LINKER_FLAGS_COVERAGE-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 external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/cygdrive/c/PX4/home/Firmware
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
CMAKE_INSTALL_SYSCONFDIR-ADVANCED: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_MAKEFILES:INTERNAL=196
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_COMPILER
CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
CMAKE_RC_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS
CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.14.5
//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
//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=/usr/bin/uname.exe
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding PythonInterp
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python3][v3.6.9(3)]
//ethernet enabled
PX4_ETHERNET:INTERNAL=1
//testing enabled
PX4_TESTING:INTERNAL=1
//ADVANCED property for variable: PYTHON_EXECUTABLE
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ProcessorCount_cmd_getconf
ProcessorCount_cmd_getconf-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ProcessorCount_cmd_sysctl
ProcessorCount_cmd_sysctl-ADVANCED:INTERNAL=1
//CMAKE_INSTALL_PREFIX during last run
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local
//extra ROMFS deps
config_romfs_extra_dependencies:INTERNAL=parameters_xml;component_version_json
//extra ROMFS files
config_romfs_extra_files:INTERNAL=/cygdrive/c/PX4/home/Firmware/build/px4_sitl_default/params.json.xz;/cygdrive/c/PX4/home/Firmware/build/px4_sitl_default/component_version.json.xz
//ROMFS root
config_romfs_root:INTERNAL=px4fmu_common
//STRINGS property for variable: config_sitl_debugger
config_sitl_debugger-STRINGS:INTERNAL=disable;gdb;lldb
//STRINGS property for variable: config_sitl_viewer
config_sitl_viewer-STRINGS:INTERNAL=jmavsim;none