Project

General

Profile

« Previous | Next » 
<-- MJA add screen reader only label -->

Revision 660

Code for Webcam test example - ROS2 on Raspberry Pi

View differences:

Software files/ROS2 on Raspberry Pi/ROS2-RPi-WebCam Test Code/build/turtle_interfaces/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c
DD EE
#ifdef __cplusplus
DD EE
# error "A C++ compiler has been selected for C."
DD EE
#endif
DD EE
DD EE
#if defined(__18CXX)
DD EE
# define ID_VOID_MAIN
DD EE
#endif
DD EE
#if defined(__CLASSIC_C__)
DD EE
/* cv-qualifiers did not exist in K&R C */
DD EE
# define const
DD EE
# define volatile
DD EE
#endif
DD EE
DD EE
DD EE
/* Version number components: V=Version, R=Revision, P=Patch
DD EE
Version date components: YYYY=Year, MM=Month, DD=Day */
DD EE
DD EE
#if defined(__INTEL_COMPILER) || defined(__ICC)
DD EE
# define COMPILER_ID "Intel"
DD EE
# if defined(_MSC_VER)
DD EE
# define SIMULATE_ID "MSVC"
DD EE
# endif
DD EE
# if defined(__GNUC__)
DD EE
# define SIMULATE_ID "GNU"
DD EE
# endif
DD EE
/* __INTEL_COMPILER = VRP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
DD EE
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
DD EE
# if defined(__INTEL_COMPILER_UPDATE)
DD EE
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
DD EE
# else
DD EE
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
DD EE
# endif
DD EE
# if defined(__INTEL_COMPILER_BUILD_DATE)
DD EE
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
DD EE
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
DD EE
# endif
DD EE
# if defined(_MSC_VER)
DD EE
/* _MSC_VER = VVRR */
DD EE
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
DD EE
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
DD EE
# endif
DD EE
# if defined(__GNUC__)
DD EE
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
DD EE
# elif defined(__GNUG__)
DD EE
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
DD EE
# endif
DD EE
# if defined(__GNUC_MINOR__)
DD EE
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
DD EE
# endif
DD EE
# if defined(__GNUC_PATCHLEVEL__)
DD EE
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
DD EE
# endif
DD EE
DD EE
#elif defined(__PATHCC__)
DD EE
# define COMPILER_ID "PathScale"
DD EE
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
DD EE
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
DD EE
# if defined(__PATHCC_PATCHLEVEL__)
DD EE
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
DD EE
# endif
DD EE
DD EE
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
DD EE
# define COMPILER_ID "Embarcadero"
DD EE
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
DD EE
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
DD EE
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
DD EE
DD EE
#elif defined(__BORLANDC__)
DD EE
# define COMPILER_ID "Borland"
DD EE
/* __BORLANDC__ = 0xVRR */
DD EE
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
DD EE
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
DD EE
DD EE
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
DD EE
# define COMPILER_ID "Watcom"
DD EE
/* __WATCOMC__ = VVRR */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
DD EE
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
DD EE
# if (__WATCOMC__ % 10) > 0
DD EE
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
DD EE
# endif
DD EE
DD EE
#elif defined(__WATCOMC__)
DD EE
# define COMPILER_ID "OpenWatcom"
DD EE
/* __WATCOMC__ = VVRP + 1100 */
DD EE
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
DD EE
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
DD EE
# if (__WATCOMC__ % 10) > 0
DD EE
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
DD EE
# endif
DD EE
DD EE
#elif defined(__SUNPRO_C)
DD EE
# define COMPILER_ID "SunPro"
DD EE
# if __SUNPRO_C >= 0x5100
DD EE
/* __SUNPRO_C = 0xVRRP */
DD EE
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
DD EE
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
DD EE
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
DD EE
# else
DD EE
/* __SUNPRO_CC = 0xVRP */
DD EE
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
DD EE
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
DD EE
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
DD EE
# endif
DD EE
DD EE
#elif defined(__HP_cc)
DD EE
# define COMPILER_ID "HP"
DD EE
/* __HP_cc = VVRRPP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
DD EE
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
DD EE
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
DD EE
DD EE
#elif defined(__DECC)
DD EE
# define COMPILER_ID "Compaq"
DD EE
/* __DECC_VER = VVRRTPPPP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
DD EE
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
DD EE
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
DD EE
DD EE
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
DD EE
# define COMPILER_ID "zOS"
DD EE
/* __IBMC__ = VRP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
DD EE
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
DD EE
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
DD EE
DD EE
#elif defined(__ibmxl__) && defined(__clang__)
DD EE
# define COMPILER_ID "XLClang"
DD EE
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
DD EE
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
DD EE
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
DD EE
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
DD EE
DD EE
DD EE
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
DD EE
# define COMPILER_ID "XL"
DD EE
/* __IBMC__ = VRP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
DD EE
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
DD EE
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
DD EE
DD EE
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
DD EE
# define COMPILER_ID "VisualAge"
DD EE
/* __IBMC__ = VRP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
DD EE
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
DD EE
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
DD EE
DD EE
#elif defined(__PGI)
DD EE
# define COMPILER_ID "PGI"
DD EE
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
DD EE
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
DD EE
# if defined(__PGIC_PATCHLEVEL__)
DD EE
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
DD EE
# endif
DD EE
DD EE
#elif defined(_CRAYC)
DD EE
# define COMPILER_ID "Cray"
DD EE
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
DD EE
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
DD EE
DD EE
#elif defined(__TI_COMPILER_VERSION__)
DD EE
# define COMPILER_ID "TI"
DD EE
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
DD EE
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
DD EE
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
DD EE
DD EE
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
DD EE
# define COMPILER_ID "Fujitsu"
DD EE
DD EE
#elif defined(__ghs__)
DD EE
# define COMPILER_ID "GHS"
DD EE
/* __GHS_VERSION_NUMBER = VVVVRP */
DD EE
# ifdef __GHS_VERSION_NUMBER
DD EE
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
DD EE
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
DD EE
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
DD EE
# endif
DD EE
DD EE
#elif defined(__TINYC__)
DD EE
# define COMPILER_ID "TinyCC"
DD EE
DD EE
#elif defined(__BCC__)
DD EE
# define COMPILER_ID "Bruce"
DD EE
DD EE
#elif defined(__SCO_VERSION__)
DD EE
# define COMPILER_ID "SCO"
DD EE
DD EE
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
DD EE
# define COMPILER_ID "ARMCC"
DD EE
#if __ARMCC_VERSION >= 1000000
DD EE
/* __ARMCC_VERSION = VRRPPPP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
DD EE
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
DD EE
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
DD EE
#else
DD EE
/* __ARMCC_VERSION = VRPPPP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
DD EE
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
DD EE
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
DD EE
#endif
DD EE
DD EE
DD EE
#elif defined(__clang__) && defined(__apple_build_version__)
DD EE
# define COMPILER_ID "AppleClang"
DD EE
# if defined(_MSC_VER)
DD EE
# define SIMULATE_ID "MSVC"
DD EE
# endif
DD EE
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
DD EE
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
DD EE
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
DD EE
# if defined(_MSC_VER)
DD EE
/* _MSC_VER = VVRR */
DD EE
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
DD EE
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
DD EE
# endif
DD EE
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
DD EE
DD EE
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
DD EE
# define COMPILER_ID "ARMClang"
DD EE
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
DD EE
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
DD EE
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
DD EE
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
DD EE
DD EE
#elif defined(__clang__)
DD EE
# define COMPILER_ID "Clang"
DD EE
# if defined(_MSC_VER)
DD EE
# define SIMULATE_ID "MSVC"
DD EE
# endif
DD EE
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
DD EE
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
DD EE
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
DD EE
# if defined(_MSC_VER)
DD EE
/* _MSC_VER = VVRR */
DD EE
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
DD EE
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
DD EE
# endif
DD EE
DD EE
#elif defined(__GNUC__)
DD EE
# define COMPILER_ID "GNU"
DD EE
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
DD EE
# if defined(__GNUC_MINOR__)
DD EE
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
DD EE
# endif
DD EE
# if defined(__GNUC_PATCHLEVEL__)
DD EE
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
DD EE
# endif
DD EE
DD EE
#elif defined(_MSC_VER)
DD EE
# define COMPILER_ID "MSVC"
DD EE
/* _MSC_VER = VVRR */
DD EE
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
DD EE
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
DD EE
# if defined(_MSC_FULL_VER)
DD EE
# if _MSC_VER >= 1400
DD EE
/* _MSC_FULL_VER = VVRRPPPPP */
DD EE
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
DD EE
# else
DD EE
/* _MSC_FULL_VER = VVRRPPPP */
DD EE
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
DD EE
# endif
DD EE
# endif
DD EE
# if defined(_MSC_BUILD)
DD EE
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
DD EE
# endif
DD EE
DD EE
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
DD EE
# define COMPILER_ID "ADSP"
DD EE
#if defined(__VISUALDSPVERSION__)
DD EE
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
DD EE
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
DD EE
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
DD EE
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
DD EE
#endif
DD EE
DD EE
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
DD EE
# define COMPILER_ID "IAR"
DD EE
# if defined(__VER__) && defined(__ICCARM__)
DD EE
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
DD EE
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
DD EE
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
DD EE
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
DD EE
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
DD EE
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
DD EE
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
DD EE
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
DD EE
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
DD EE
# endif
DD EE
DD EE
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
DD EE
# define COMPILER_ID "SDCC"
DD EE
# if defined(__SDCC_VERSION_MAJOR)
DD EE
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
DD EE
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
DD EE
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
DD EE
# else
DD EE
/* SDCC = VRP */
DD EE
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
DD EE
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
DD EE
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
DD EE
# endif
DD EE
DD EE
DD EE
/* These compilers are either not known or too old to define an
DD EE
identification macro. Try to identify the platform and guess that
DD EE
it is the native compiler. */
DD EE
#elif defined(__hpux) || defined(__hpua)
DD EE
# define COMPILER_ID "HP"
DD EE
DD EE
#else /* unknown compiler */
DD EE
# define COMPILER_ID ""
DD EE
#endif
DD EE
DD EE
/* Construct the string literal in pieces to prevent the source from
DD EE
getting matched. Store it in a pointer rather than an array
DD EE
because some compilers will just produce instructions to fill the
DD EE
array rather than assigning a pointer to a static array. */
DD EE
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
DD EE
#ifdef SIMULATE_ID
DD EE
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
DD EE
#endif
DD EE
DD EE
#ifdef __QNXNTO__
DD EE
char const* qnxnto = "INFO" ":" "qnxnto[]";
DD EE
#endif
DD EE
DD EE
#if defined(__CRAYXE) || defined(__CRAYXC)
DD EE
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
DD EE
#endif
DD EE
DD EE
#define STRINGIFY_HELPER(X) #X
DD EE
#define STRINGIFY(X) STRINGIFY_HELPER(X)
DD EE
DD EE
/* Identify known platforms by name. */
DD EE
#if defined(__linux) || defined(__linux__) || defined(linux)
DD EE
# define PLATFORM_ID "Linux"
DD EE
DD EE
#elif defined(__CYGWIN__)
DD EE
# define PLATFORM_ID "Cygwin"
DD EE
DD EE
#elif defined(__MINGW32__)
DD EE
# define PLATFORM_ID "MinGW"
DD EE
DD EE
#elif defined(__APPLE__)
DD EE
# define PLATFORM_ID "Darwin"
DD EE
DD EE
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
DD EE
# define PLATFORM_ID "Windows"
DD EE
DD EE
#elif defined(__FreeBSD__) || defined(__FreeBSD)
DD EE
# define PLATFORM_ID "FreeBSD"
DD EE
DD EE
#elif defined(__NetBSD__) || defined(__NetBSD)
DD EE
# define PLATFORM_ID "NetBSD"
DD EE
DD EE
#elif defined(__OpenBSD__) || defined(__OPENBSD)
DD EE
# define PLATFORM_ID "OpenBSD"
DD EE
DD EE
#elif defined(__sun) || defined(sun)
DD EE
# define PLATFORM_ID "SunOS"
DD EE
DD EE
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
DD EE
# define PLATFORM_ID "AIX"
DD EE
DD EE
#elif defined(__hpux) || defined(__hpux__)
DD EE
# define PLATFORM_ID "HP-UX"
DD EE
DD EE
#elif defined(__HAIKU__)
DD EE
# define PLATFORM_ID "Haiku"
DD EE
DD EE
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
DD EE
# define PLATFORM_ID "BeOS"
DD EE
DD EE
#elif defined(__QNX__) || defined(__QNXNTO__)
DD EE
# define PLATFORM_ID "QNX"
DD EE
DD EE
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
DD EE
# define PLATFORM_ID "Tru64"
DD EE
DD EE
#elif defined(__riscos) || defined(__riscos__)
DD EE
# define PLATFORM_ID "RISCos"
DD EE
DD EE
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
DD EE
# define PLATFORM_ID "SINIX"
DD EE
DD EE
#elif defined(__UNIX_SV__)
DD EE
# define PLATFORM_ID "UNIX_SV"
DD EE
DD EE
#elif defined(__bsdos__)
DD EE
# define PLATFORM_ID "BSDOS"
DD EE
DD EE
#elif defined(_MPRAS) || defined(MPRAS)
DD EE
# define PLATFORM_ID "MP-RAS"
DD EE
DD EE
#elif defined(__osf) || defined(__osf__)
DD EE
# define PLATFORM_ID "OSF1"
DD EE
DD EE
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
DD EE
# define PLATFORM_ID "SCO_SV"
DD EE
DD EE
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
DD EE
# define PLATFORM_ID "ULTRIX"
DD EE
DD EE
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
DD EE
# define PLATFORM_ID "Xenix"
DD EE
DD EE
#elif defined(__WATCOMC__)
DD EE
# if defined(__LINUX__)
DD EE
# define PLATFORM_ID "Linux"
DD EE
DD EE
# elif defined(__DOS__)
DD EE
# define PLATFORM_ID "DOS"
DD EE
DD EE
# elif defined(__OS2__)
DD EE
# define PLATFORM_ID "OS2"
DD EE
DD EE
# elif defined(__WINDOWS__)
DD EE
# define PLATFORM_ID "Windows3x"
DD EE
DD EE
# else /* unknown platform */
DD EE
# define PLATFORM_ID
DD EE
# endif
DD EE
DD EE
#elif defined(__INTEGRITY)
DD EE
# if defined(INT_178B)
DD EE
# define PLATFORM_ID "Integrity178"
DD EE
DD EE
# else /* regular Integrity */
DD EE
# define PLATFORM_ID "Integrity"
DD EE
# endif
DD EE
DD EE
#else /* unknown platform */
DD EE
# define PLATFORM_ID
DD EE
DD EE
#endif
DD EE
DD EE
/* For windows compilers MSVC and Intel we can determine
DD EE
the architecture of the compiler being used. This is because
DD EE
the compilers do not have flags that can change the architecture,
DD EE
but rather depend on which compiler is being used
DD EE
*/
DD EE
#if defined(_WIN32) && defined(_MSC_VER)
DD EE
# if defined(_M_IA64)
DD EE
# define ARCHITECTURE_ID "IA64"
DD EE
DD EE
# elif defined(_M_X64) || defined(_M_AMD64)
DD EE
# define ARCHITECTURE_ID "x64"
DD EE
DD EE
# elif defined(_M_IX86)
DD EE
# define ARCHITECTURE_ID "X86"
DD EE
DD EE
# elif defined(_M_ARM64)
DD EE
# define ARCHITECTURE_ID "ARM64"
DD EE
DD EE
# elif defined(_M_ARM)
DD EE
# if _M_ARM == 4
DD EE
# define ARCHITECTURE_ID "ARMV4I"
DD EE
# elif _M_ARM == 5
DD EE
# define ARCHITECTURE_ID "ARMV5I"
DD EE
# else
DD EE
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
DD EE
# endif
DD EE
DD EE
# elif defined(_M_MIPS)
DD EE
# define ARCHITECTURE_ID "MIPS"
DD EE
DD EE
# elif defined(_M_SH)
DD EE
# define ARCHITECTURE_ID "SHx"
DD EE
DD EE
# else /* unknown architecture */
DD EE
# define ARCHITECTURE_ID ""
DD EE
# endif
DD EE
DD EE
#elif defined(__WATCOMC__)
DD EE
# if defined(_M_I86)
DD EE
# define ARCHITECTURE_ID "I86"
DD EE
DD EE
# elif defined(_M_IX86)
DD EE
# define ARCHITECTURE_ID "X86"
DD EE
DD EE
# else /* unknown architecture */
DD EE
# define ARCHITECTURE_ID ""
DD EE
# endif
DD EE
DD EE
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
DD EE
# if defined(__ICCARM__)
DD EE
# define ARCHITECTURE_ID "ARM"
DD EE
DD EE
# elif defined(__ICCRX__)
DD EE
# define ARCHITECTURE_ID "RX"
DD EE
DD EE
# elif defined(__ICCRH850__)
DD EE
# define ARCHITECTURE_ID "RH850"
DD EE
DD EE
# elif defined(__ICCRL78__)
DD EE
# define ARCHITECTURE_ID "RL78"
DD EE
DD EE
# elif defined(__ICCRISCV__)
DD EE
# define ARCHITECTURE_ID "RISCV"
DD EE
DD EE
# elif defined(__ICCAVR__)
DD EE
# define ARCHITECTURE_ID "AVR"
DD EE
DD EE
# elif defined(__ICC430__)
DD EE
# define ARCHITECTURE_ID "MSP430"
DD EE
DD EE
# elif defined(__ICCV850__)
DD EE
# define ARCHITECTURE_ID "V850"
DD EE
DD EE
# elif defined(__ICC8051__)
DD EE
# define ARCHITECTURE_ID "8051"
DD EE
DD EE
# else /* unknown architecture */
DD EE
# define ARCHITECTURE_ID ""
DD EE
# endif
DD EE
DD EE
#elif defined(__ghs__)
DD EE
# if defined(__PPC64__)
DD EE
# define ARCHITECTURE_ID "PPC64"
DD EE
DD EE
# elif defined(__ppc__)
DD EE
# define ARCHITECTURE_ID "PPC"
DD EE
DD EE
# elif defined(__ARM__)
DD EE
# define ARCHITECTURE_ID "ARM"
DD EE
DD EE
# elif defined(__x86_64__)
DD EE
# define ARCHITECTURE_ID "x64"
DD EE
DD EE
# elif defined(__i386__)
DD EE
# define ARCHITECTURE_ID "X86"
DD EE
DD EE
# else /* unknown architecture */
DD EE
# define ARCHITECTURE_ID ""
DD EE
# endif
DD EE
#else
DD EE
# define ARCHITECTURE_ID
DD EE
#endif
DD EE
DD EE
/* Convert integer to decimal digit literals. */
DD EE
#define DEC(n) \
DD EE
('0' + (((n) / 10000000)%10)), \
DD EE
('0' + (((n) / 1000000)%10)), \
DD EE
('0' + (((n) / 100000)%10)), \
DD EE
('0' + (((n) / 10000)%10)), \
DD EE
('0' + (((n) / 1000)%10)), \
DD EE
('0' + (((n) / 100)%10)), \
DD EE
('0' + (((n) / 10)%10)), \
DD EE
('0' + ((n) % 10))
DD EE
DD EE
/* Convert integer to hex digit literals. */
DD EE
#define HEX(n) \
DD EE
('0' + ((n)>>28 & 0xF)), \
DD EE
('0' + ((n)>>24 & 0xF)), \
DD EE
('0' + ((n)>>20 & 0xF)), \
DD EE
('0' + ((n)>>16 & 0xF)), \
DD EE
('0' + ((n)>>12 & 0xF)), \
DD EE
('0' + ((n)>>8 & 0xF)), \
DD EE
('0' + ((n)>>4 & 0xF)), \
DD EE
('0' + ((n) & 0xF))
DD EE
DD EE
/* Construct a string literal encoding the version number components. */
DD EE
#ifdef COMPILER_VERSION_MAJOR
DD EE
char const info_version[] = {
DD EE
'I', 'N', 'F', 'O', ':',
DD EE
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
DD EE
COMPILER_VERSION_MAJOR,
DD EE
# ifdef COMPILER_VERSION_MINOR
DD EE
'.', COMPILER_VERSION_MINOR,
DD EE
# ifdef COMPILER_VERSION_PATCH
DD EE
'.', COMPILER_VERSION_PATCH,
DD EE
# ifdef COMPILER_VERSION_TWEAK
DD EE
'.', COMPILER_VERSION_TWEAK,
DD EE
# endif
DD EE
# endif
DD EE
# endif
DD EE
']','\0'};
DD EE
#endif
DD EE
DD EE
/* Construct a string literal encoding the internal version number. */
DD EE
#ifdef COMPILER_VERSION_INTERNAL
DD EE
char const info_version_internal[] = {
DD EE
'I', 'N', 'F', 'O', ':',
DD EE
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
DD EE
'i','n','t','e','r','n','a','l','[',
DD EE
COMPILER_VERSION_INTERNAL,']','\0'};
DD EE
#endif
DD EE
DD EE
/* Construct a string literal encoding the version number components. */
DD EE
#ifdef SIMULATE_VERSION_MAJOR
DD EE
char const info_simulate_version[] = {
DD EE
'I', 'N', 'F', 'O', ':',
DD EE
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
DD EE
SIMULATE_VERSION_MAJOR,
DD EE
# ifdef SIMULATE_VERSION_MINOR
DD EE
'.', SIMULATE_VERSION_MINOR,
DD EE
# ifdef SIMULATE_VERSION_PATCH
DD EE
'.', SIMULATE_VERSION_PATCH,
DD EE
# ifdef SIMULATE_VERSION_TWEAK
DD EE
'.', SIMULATE_VERSION_TWEAK,
DD EE
# endif
DD EE
# endif
DD EE
# endif
DD EE
']','\0'};
DD EE
#endif
DD EE
DD EE
/* Construct the string literal in pieces to prevent the source from
DD EE
getting matched. Store it in a pointer rather than an array
DD EE
because some compilers will just produce instructions to fill the
DD EE
array rather than assigning a pointer to a static array. */
DD EE
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
DD EE
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
DD EE
DD EE
DD EE
DD EE
DD EE
#if !defined(__STDC__)
DD EE
# if (defined(_MSC_VER) && !defined(__clang__)) \
DD EE
|| (defined(__ibmxl__) || defined(__IBMC__))
DD EE
# define C_DIALECT "90"
DD EE
# else
DD EE
# define C_DIALECT
DD EE
# endif
DD EE
#elif __STDC_VERSION__ >= 201000L
DD EE
# define C_DIALECT "11"
DD EE
#elif __STDC_VERSION__ >= 199901L
DD EE
# define C_DIALECT "99"
DD EE
#else
DD EE
# define C_DIALECT "90"
DD EE
#endif
DD EE
const char* info_language_dialect_default =
DD EE
"INFO" ":" "dialect_default[" C_DIALECT "]";
DD EE
DD EE
/*--------------------------------------------------------------------------*/
DD EE
DD EE
#ifdef ID_VOID_MAIN
DD EE
void main() {}
DD EE
#else
DD EE
# if defined(__CLASSIC_C__)
DD EE
int main(argc, argv) int argc; char *argv[];
DD EE
# else
DD EE
int main(int argc, char* argv[])
DD EE
# endif
DD EE
{
DD EE
int require = 0;
DD EE
require += info_compiler[argc];
DD EE
require += info_platform[argc];
DD EE
require += info_arch[argc];
DD EE
#ifdef COMPILER_VERSION_MAJOR
DD EE
require += info_version[argc];
DD EE
#endif
DD EE
#ifdef COMPILER_VERSION_INTERNAL
DD EE
require += info_version_internal[argc];
DD EE
#endif
DD EE
#ifdef SIMULATE_ID
DD EE
require += info_simulate[argc];
DD EE
#endif
DD EE
#ifdef SIMULATE_VERSION_MAJOR
DD EE
require += info_simulate_version[argc];
DD EE
#endif
DD EE
#if defined(__CRAYXE) || defined(__CRAYXC)
DD EE
require += info_cray[argc];
DD EE
#endif
DD EE
require += info_language_dialect_default[argc];
DD EE
(void)argv;
DD EE
return require;
DD EE
}
DD EE
#endif
Software files/ROS2 on Raspberry Pi/ROS2-RPi-WebCam Test Code/build/turtle_interfaces/CMakeFiles/CMakeRuleHashes.txt
DD EE
# Hashes of file build rules.
DD EE
8921cf1f85c5910cf97b466e42bfd3d6 CMakeFiles/turtle_interfaces
DD EE
8921cf1f85c5910cf97b466e42bfd3d6 CMakeFiles/turtle_interfaces__cpp
DD EE
42ec9e2f64fefb4a6abec8aee97008eb CMakeFiles/turtle_interfaces_uninstall
DD EE
0b17e118902626c78aaa1084e197879c rosidl_generator_c/turtle_interfaces/msg/turtle_msg.h
DD EE
0b17e118902626c78aaa1084e197879c rosidl_generator_c/turtle_interfaces/msg/turtlemsg.h
DD EE
610d05ee349cca9f6f73da0e7469724a rosidl_generator_cpp/turtle_interfaces/msg/turtle_msg.hpp
DD EE
610d05ee349cca9f6f73da0e7469724a rosidl_generator_cpp/turtle_interfaces/msg/turtlemsg.hpp
DD EE
dc34d5a4c8c54cf5e68bce3c553ca745 rosidl_generator_py/turtle_interfaces/_turtle_interfaces_s.ep.rosidl_typesupport_fastrtps_c.c
DD EE
a8fe790329b7dc6247a65b3f75904008 rosidl_typesupport_c/turtle_interfaces/msg/turtle_msg__type_support.cpp
DD EE
a8fe790329b7dc6247a65b3f75904008 rosidl_typesupport_c/turtle_interfaces/msg/turtlemsg__type_support.cpp
DD EE
b32cccff7429acae5d720e93a38096e6 rosidl_typesupport_cpp/turtle_interfaces/msg/turtle_msg__type_support.cpp
DD EE
b32cccff7429acae5d720e93a38096e6 rosidl_typesupport_cpp/turtle_interfaces/msg/turtlemsg__type_support.cpp
DD EE
2aab4f793e050cb4fa7f8a839868b7fa rosidl_typesupport_fastrtps_c/turtle_interfaces/msg/detail/turtle_msg__rosidl_typesupport_fastrtps_c.h
DD EE
2aab4f793e050cb4fa7f8a839868b7fa rosidl_typesupport_fastrtps_c/turtle_interfaces/msg/detail/turtlemsg__rosidl_typesupport_fastrtps_c.h
DD EE
9f14629f1fc64b24489d0a2d069b579f rosidl_typesupport_fastrtps_cpp/turtle_interfaces/msg/detail/dds_fastrtps/turtle_msg__type_support.cpp
DD EE
9f14629f1fc64b24489d0a2d069b579f rosidl_typesupport_fastrtps_cpp/turtle_interfaces/msg/detail/dds_fastrtps/turtlemsg__type_support.cpp
DD EE
f73baa893fdc4cfdde017789a5aa39cf rosidl_typesupport_introspection_c/turtle_interfaces/msg/detail/turtle_msg__rosidl_typesupport_introspection_c.h
DD EE
f73baa893fdc4cfdde017789a5aa39cf rosidl_typesupport_introspection_c/turtle_interfaces/msg/detail/turtlemsg__rosidl_typesupport_introspection_c.h
DD EE
62253aa7ef8c38ae58a54b88e8928686 rosidl_typesupport_introspection_cpp/turtle_interfaces/msg/detail/turtle_msg__rosidl_typesupport_introspection_cpp.hpp
DD EE
62253aa7ef8c38ae58a54b88e8928686 rosidl_typesupport_introspection_cpp/turtle_interfaces/msg/detail/turtlemsg__rosidl_typesupport_introspection_cpp.hpp
DD EE
fba6881eff55dfa61e48711d79df4837 turtle_interfaces__py/CMakeFiles/turtle_interfaces__py
Software files/ROS2 on Raspberry Pi/ROS2-RPi-WebCam Test Code/build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/SOURCES.txt
DD EE
README.md
DD EE
package.xml
DD EE
setup.cfg
DD EE
setup.py
DD EE
teleop_twist_keyboard.py
DD EE
../../build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/PKG-INFO
DD EE
../../build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/SOURCES.txt
DD EE
../../build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/dependency_links.txt
DD EE
../../build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/entry_points.txt
DD EE
../../build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/requires.txt
DD EE
../../build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/top_level.txt
DD EE
../../build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/zip-safe
DD EE
resource/teleop_twist_keyboard
DD EE
test/test_copyright.py
DD EE
test/test_flake8.py
DD EE
test/test_pep257.py
Software files/ROS2 on Raspberry Pi/ROS2-RPi-WebCam Test Code/build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/entry_points.txt
DD EE
[console_scripts]
DD EE
teleop_twist_keyboard = teleop_twist_keyboard:main
DD EE
Software files/ROS2 on Raspberry Pi/ROS2-RPi-WebCam Test Code/build/teleop_twist_keyboard/teleop_twist_keyboard.egg-info/top_level.txt
DD EE
teleop_twist_keyboard
Software files/ROS2 on Raspberry Pi/ROS2-RPi-WebCam Test Code/build/turtle_interfaces/CMakeCache.txt
DD EE
# This is the CMakeCache file.
DD EE
# For build in directory: /home/yahboom/roscourse_ws/build/turtle_interfaces
DD EE
# It was generated by CMake: /usr/bin/cmake
DD EE
# You can edit this file to change values found and used by cmake.
DD EE
# If you do not want to change any of the values, simply exit the editor.
DD EE
# If you do want to change a value, simply edit, save, and exit the editor.
DD EE
# The syntax for the file is as follows:
DD EE
# KEY:TYPE=VALUE
DD EE
# KEY is the name of a variable in the cache.
DD EE
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
DD EE
# VALUE is the current value for the KEY.
DD EE
DD EE
########################
DD EE
# EXTERNAL cache entries
DD EE
########################
DD EE
DD EE
//Generate environment files in the CMAKE_INSTALL_PREFIX
DD EE
AMENT_CMAKE_ENVIRONMENT_GENERATION:BOOL=OFF
DD EE
DD EE
//Generate environment files in the package share folder
DD EE
AMENT_CMAKE_ENVIRONMENT_PACKAGE_GENERATION:BOOL=ON
DD EE
DD EE
//Generate marker file containing the parent prefix path
DD EE
AMENT_CMAKE_ENVIRONMENT_PARENT_PREFIX_PATH_GENERATION:BOOL=ON
DD EE
DD EE
//Replace the CMake install command with a custom implementation
DD EE
// using symlinks instead of copying resources
DD EE
AMENT_CMAKE_SYMLINK_INSTALL:BOOL=1
DD EE
DD EE
//Generate an uninstall target to revert the effects of the install
DD EE
// step
DD EE
AMENT_CMAKE_UNINSTALL_TARGET:BOOL=ON
DD EE
DD EE
//The path where test results are generated
DD EE
AMENT_TEST_RESULTS_DIR:PATH=/home/yahboom/roscourse_ws/build/turtle_interfaces/test_results
DD EE
DD EE
//Global flag to cause add_library() to create shared libraries
DD EE
// if on. If set to true, this will cause all libraries to be built
DD EE
// shared unless the library was explicitly added as a static library.
DD EE
BUILD_SHARED_LIBS:BOOL=ON
DD EE
DD EE
//Build the testing tree.
DD EE
BUILD_TESTING:BOOL=ON
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_AR:FILEPATH=/usr/bin/ar
DD EE
DD EE
//Choose the type of build, options are: None Debug Release RelWithDebInfo
DD EE
// MinSizeRel ...
DD EE
CMAKE_BUILD_TYPE:STRING=
DD EE
DD EE
//Enable/Disable color output during build.
DD EE
CMAKE_COLOR_MAKEFILE:BOOL=ON
DD EE
DD EE
//CXX compiler
DD EE
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
DD EE
DD EE
//A wrapper around 'ar' adding the appropriate '--plugin' option
DD EE
// for the GCC compiler
DD EE
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-9
DD EE
DD EE
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
DD EE
// for the GCC compiler
DD EE
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9
DD EE
DD EE
//Flags used by the CXX compiler during all build types.
DD EE
CMAKE_CXX_FLAGS:STRING=
DD EE
DD EE
//Flags used by the CXX compiler during DEBUG builds.
DD EE
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
DD EE
DD EE
//Flags used by the CXX compiler during MINSIZEREL builds.
DD EE
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
DD EE
DD EE
//Flags used by the CXX compiler during RELEASE builds.
DD EE
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
DD EE
DD EE
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
DD EE
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
DD EE
DD EE
//C compiler
DD EE
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
DD EE
DD EE
//A wrapper around 'ar' adding the appropriate '--plugin' option
DD EE
// for the GCC compiler
DD EE
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-9
DD EE
DD EE
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
DD EE
// for the GCC compiler
DD EE
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9
DD EE
DD EE
//Flags used by the C compiler during all build types.
DD EE
CMAKE_C_FLAGS:STRING=
DD EE
DD EE
//Flags used by the C compiler during DEBUG builds.
DD EE
CMAKE_C_FLAGS_DEBUG:STRING=-g
DD EE
DD EE
//Flags used by the C compiler during MINSIZEREL builds.
DD EE
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
DD EE
DD EE
//Flags used by the C compiler during RELEASE builds.
DD EE
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
DD EE
DD EE
//Flags used by the C compiler during RELWITHDEBINFO builds.
DD EE
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
DD EE
DD EE
//Flags used by the linker during all build types.
DD EE
CMAKE_EXE_LINKER_FLAGS:STRING=
DD EE
DD EE
//Flags used by the linker during DEBUG builds.
DD EE
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
DD EE
DD EE
//Flags used by the linker during MINSIZEREL builds.
DD EE
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
DD EE
DD EE
//Flags used by the linker during RELEASE builds.
DD EE
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
DD EE
DD EE
//Flags used by the linker during RELWITHDEBINFO builds.
DD EE
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
DD EE
DD EE
//Enable/Disable output of compile commands during generation.
DD EE
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
DD EE
DD EE
//Install path prefix, prepended onto install directories.
DD EE
CMAKE_INSTALL_PREFIX:PATH=/home/yahboom/roscourse_ws/install/turtle_interfaces
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_LINKER:FILEPATH=/usr/bin/ld
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
DD EE
DD EE
//Flags used by the linker during the creation of modules during
DD EE
// all build types.
DD EE
CMAKE_MODULE_LINKER_FLAGS:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of modules during
DD EE
// DEBUG builds.
DD EE
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of modules during
DD EE
// MINSIZEREL builds.
DD EE
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of modules during
DD EE
// RELEASE builds.
DD EE
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of modules during
DD EE
// RELWITHDEBINFO builds.
DD EE
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_NM:FILEPATH=/usr/bin/nm
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
DD EE
DD EE
//Value Computed by CMake
DD EE
CMAKE_PROJECT_DESCRIPTION:STATIC=
DD EE
DD EE
//Value Computed by CMake
DD EE
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
DD EE
DD EE
//Value Computed by CMake
DD EE
CMAKE_PROJECT_NAME:STATIC=turtle_interfaces
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_READELF:FILEPATH=/usr/bin/readelf
DD EE
DD EE
//Flags used by the linker during the creation of shared libraries
DD EE
// during all build types.
DD EE
CMAKE_SHARED_LINKER_FLAGS:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of shared libraries
DD EE
// during DEBUG builds.
DD EE
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of shared libraries
DD EE
// during MINSIZEREL builds.
DD EE
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of shared libraries
DD EE
// during RELEASE builds.
DD EE
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of shared libraries
DD EE
// during RELWITHDEBINFO builds.
DD EE
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
DD EE
DD EE
//If set, runtime paths are not added when installing shared libraries,
DD EE
// but are added when building.
DD EE
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
DD EE
DD EE
//If set, runtime paths are not added when using shared libraries.
DD EE
CMAKE_SKIP_RPATH:BOOL=NO
DD EE
DD EE
//Flags used by the linker during the creation of static libraries
DD EE
// during all build types.
DD EE
CMAKE_STATIC_LINKER_FLAGS:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of static libraries
DD EE
// during DEBUG builds.
DD EE
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of static libraries
DD EE
// during MINSIZEREL builds.
DD EE
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of static libraries
DD EE
// during RELEASE builds.
DD EE
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
DD EE
DD EE
//Flags used by the linker during the creation of static libraries
DD EE
// during RELWITHDEBINFO builds.
DD EE
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
DD EE
DD EE
//Path to a program.
DD EE
CMAKE_STRIP:FILEPATH=/usr/bin/strip
DD EE
DD EE
//If this value is on, makefiles will be generated without the
DD EE
// .SILENT directive, and all commands will be echoed to the console
DD EE
// during the make. This is useful for debugging only. With Visual
DD EE
// Studio IDE projects all commands are done without /nologo.
DD EE
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
DD EE
DD EE
//Path to a library.
DD EE
FastCDR_LIBRARY_DEBUG:FILEPATH=FastCDR_LIBRARY_DEBUG-NOTFOUND
DD EE
DD EE
//Path to a library.
DD EE
FastCDR_LIBRARY_RELEASE:FILEPATH=/opt/ros/foxy/lib/libfastcdr.so
DD EE
DD EE
//Path to a file.
DD EE
FastRTPS_INCLUDE_DIR:PATH=/opt/ros/foxy/include
DD EE
DD EE
//Path to a library.
DD EE
FastRTPS_LIBRARY_DEBUG:FILEPATH=FastRTPS_LIBRARY_DEBUG-NOTFOUND
DD EE
DD EE
//Path to a library.
DD EE
FastRTPS_LIBRARY_RELEASE:FILEPATH=/opt/ros/foxy/lib/libfastrtps.so
DD EE
DD EE
//Path to a library.
DD EE
OPENSSL_CRYPTO_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libcrypto.so
DD EE
DD EE
//Path to a file.
DD EE
OPENSSL_INCLUDE_DIR:PATH=/usr/include
DD EE
DD EE
//Path to a library.
DD EE
OPENSSL_SSL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libssl.so
DD EE
DD EE
//pkg-config executable
DD EE
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
DD EE
DD EE
//Path to a program.
DD EE
PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3
DD EE
DD EE
//Path to a file.
DD EE
PYTHON_INCLUDE_DIR:PATH=/usr/include/python3.8
DD EE
DD EE
//Path to a library.
DD EE
PYTHON_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpython3.8.so
DD EE
DD EE
//Path to a library.
DD EE
PYTHON_LIBRARY_DEBUG:FILEPATH=PYTHON_LIBRARY_DEBUG-NOTFOUND
DD EE
DD EE
//Specify specific Python version to use ('major.minor' or 'major')
DD EE
PYTHON_VERSION:STRING=
DD EE
DD EE
//Name of the computer/site where compile is being run
DD EE
SITE:STRING=VM
DD EE
DD EE
//The directory containing a CMake configuration file for TinyXML2.
DD EE
TinyXML2_DIR:PATH=TinyXML2_DIR-NOTFOUND
DD EE
DD EE
//Path to a library.
DD EE
_lib:FILEPATH=/opt/ros/foxy/lib/libgeometry_msgs__rosidl_typesupport_fastrtps_cpp.so
DD EE
DD EE
//Path to a file.
DD EE
_numpy_h:FILEPATH=/usr/include/python3.8/numpy/numpyconfig.h
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake.
DD EE
ament_cmake_DIR:PATH=/opt/ros/foxy/share/ament_cmake/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_copyright.
DD EE
ament_cmake_copyright_DIR:PATH=/opt/ros/foxy/share/ament_cmake_copyright/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_core.
DD EE
ament_cmake_core_DIR:PATH=/opt/ros/foxy/share/ament_cmake_core/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_cppcheck.
DD EE
ament_cmake_cppcheck_DIR:PATH=/opt/ros/foxy/share/ament_cmake_cppcheck/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_cpplint.
DD EE
ament_cmake_cpplint_DIR:PATH=/opt/ros/foxy/share/ament_cmake_cpplint/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_export_definitions.
DD EE
ament_cmake_export_definitions_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_definitions/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_export_dependencies.
DD EE
ament_cmake_export_dependencies_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_dependencies/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_export_include_directories.
DD EE
ament_cmake_export_include_directories_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_include_directories/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_export_interfaces.
DD EE
ament_cmake_export_interfaces_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_interfaces/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_export_libraries.
DD EE
ament_cmake_export_libraries_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_libraries/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_export_link_flags.
DD EE
ament_cmake_export_link_flags_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_link_flags/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_export_targets.
DD EE
ament_cmake_export_targets_DIR:PATH=/opt/ros/foxy/share/ament_cmake_export_targets/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_flake8.
DD EE
ament_cmake_flake8_DIR:PATH=/opt/ros/foxy/share/ament_cmake_flake8/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_gmock.
DD EE
ament_cmake_gmock_DIR:PATH=/opt/ros/foxy/share/ament_cmake_gmock/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_gtest.
DD EE
ament_cmake_gtest_DIR:PATH=/opt/ros/foxy/share/ament_cmake_gtest/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_include_directories.
DD EE
ament_cmake_include_directories_DIR:PATH=/opt/ros/foxy/share/ament_cmake_include_directories/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_libraries.
DD EE
ament_cmake_libraries_DIR:PATH=/opt/ros/foxy/share/ament_cmake_libraries/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_lint_cmake.
DD EE
ament_cmake_lint_cmake_DIR:PATH=/opt/ros/foxy/share/ament_cmake_lint_cmake/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_pep257.
DD EE
ament_cmake_pep257_DIR:PATH=/opt/ros/foxy/share/ament_cmake_pep257/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_pytest.
DD EE
ament_cmake_pytest_DIR:PATH=/opt/ros/foxy/share/ament_cmake_pytest/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_python.
DD EE
ament_cmake_python_DIR:PATH=/opt/ros/foxy/share/ament_cmake_python/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_ros.
DD EE
ament_cmake_ros_DIR:PATH=/opt/ros/foxy/share/ament_cmake_ros/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_target_dependencies.
DD EE
ament_cmake_target_dependencies_DIR:PATH=/opt/ros/foxy/share/ament_cmake_target_dependencies/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_test.
DD EE
ament_cmake_test_DIR:PATH=/opt/ros/foxy/share/ament_cmake_test/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_uncrustify.
DD EE
ament_cmake_uncrustify_DIR:PATH=/opt/ros/foxy/share/ament_cmake_uncrustify/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_version.
DD EE
ament_cmake_version_DIR:PATH=/opt/ros/foxy/share/ament_cmake_version/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_cmake_xmllint.
DD EE
ament_cmake_xmllint_DIR:PATH=/opt/ros/foxy/share/ament_cmake_xmllint/cmake
DD EE
DD EE
//Path to a program.
DD EE
ament_copyright_BIN:FILEPATH=/opt/ros/foxy/bin/ament_copyright
DD EE
DD EE
//Path to a program.
DD EE
ament_cppcheck_BIN:FILEPATH=/opt/ros/foxy/bin/ament_cppcheck
DD EE
DD EE
//Path to a program.
DD EE
ament_cpplint_BIN:FILEPATH=/opt/ros/foxy/bin/ament_cpplint
DD EE
DD EE
//Path to a program.
DD EE
ament_flake8_BIN:FILEPATH=/opt/ros/foxy/bin/ament_flake8
DD EE
DD EE
//The directory containing a CMake configuration file for ament_lint_auto.
DD EE
ament_lint_auto_DIR:PATH=/opt/ros/foxy/share/ament_lint_auto/cmake
DD EE
DD EE
//Path to a program.
DD EE
ament_lint_cmake_BIN:FILEPATH=/opt/ros/foxy/bin/ament_lint_cmake
DD EE
DD EE
//The directory containing a CMake configuration file for ament_lint_common.
DD EE
ament_lint_common_DIR:PATH=/opt/ros/foxy/share/ament_lint_common/cmake
DD EE
DD EE
//Path to a program.
DD EE
ament_pep257_BIN:FILEPATH=/opt/ros/foxy/bin/ament_pep257
DD EE
DD EE
//Path to a program.
DD EE
ament_uncrustify_BIN:FILEPATH=/opt/ros/foxy/bin/ament_uncrustify
DD EE
DD EE
//Path to a program.
DD EE
ament_xmllint_BIN:FILEPATH=/opt/ros/foxy/bin/ament_xmllint
DD EE
DD EE
//The directory containing a CMake configuration file for builtin_interfaces.
DD EE
builtin_interfaces_DIR:PATH=/opt/ros/foxy/share/builtin_interfaces/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for fastcdr.
DD EE
fastcdr_DIR:PATH=/opt/ros/foxy/lib/cmake/fastcdr
DD EE
DD EE
//The directory containing a CMake configuration file for fastrtps.
DD EE
fastrtps_DIR:PATH=/opt/ros/foxy/share/fastrtps/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for fastrtps_cmake_module.
DD EE
fastrtps_cmake_module_DIR:PATH=/opt/ros/foxy/share/fastrtps_cmake_module/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for foonathan_memory.
DD EE
foonathan_memory_DIR:PATH=/opt/ros/foxy/lib/foonathan_memory/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for geometry_msgs.
DD EE
geometry_msgs_DIR:PATH=/opt/ros/foxy/share/geometry_msgs/cmake
DD EE
DD EE
//Path to a library.
DD EE
pkgcfg_lib__OPENSSL_crypto:FILEPATH=/usr/lib/x86_64-linux-gnu/libcrypto.so
DD EE
DD EE
//Path to a library.
DD EE
pkgcfg_lib__OPENSSL_ssl:FILEPATH=/usr/lib/x86_64-linux-gnu/libssl.so
DD EE
DD EE
//The directory containing a CMake configuration file for python_cmake_module.
DD EE
python_cmake_module_DIR:PATH=/opt/ros/foxy/share/python_cmake_module/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rcpputils.
DD EE
rcpputils_DIR:PATH=/opt/ros/foxy/share/rcpputils/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rcutils.
DD EE
rcutils_DIR:PATH=/opt/ros/foxy/share/rcutils/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rmw.
DD EE
rmw_DIR:PATH=/opt/ros/foxy/share/rmw/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_adapter.
DD EE
rosidl_adapter_DIR:PATH=/opt/ros/foxy/share/rosidl_adapter/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_cmake.
DD EE
rosidl_cmake_DIR:PATH=/opt/ros/foxy/share/rosidl_cmake/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_default_generators.
DD EE
rosidl_default_generators_DIR:PATH=/opt/ros/foxy/share/rosidl_default_generators/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_default_runtime.
DD EE
rosidl_default_runtime_DIR:PATH=/opt/ros/foxy/share/rosidl_default_runtime/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_generator_c.
DD EE
rosidl_generator_c_DIR:PATH=/opt/ros/foxy/share/rosidl_generator_c/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_generator_cpp.
DD EE
rosidl_generator_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_generator_cpp/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_generator_py.
DD EE
rosidl_generator_py_DIR:PATH=/opt/ros/foxy/share/rosidl_generator_py/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_runtime_c.
DD EE
rosidl_runtime_c_DIR:PATH=/opt/ros/foxy/share/rosidl_runtime_c/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_runtime_cpp.
DD EE
rosidl_runtime_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_runtime_cpp/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_typesupport_c.
DD EE
rosidl_typesupport_c_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_c/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_typesupport_cpp.
DD EE
rosidl_typesupport_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_cpp/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_typesupport_fastrtps_c.
DD EE
rosidl_typesupport_fastrtps_c_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_fastrtps_c/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_typesupport_fastrtps_cpp.
DD EE
rosidl_typesupport_fastrtps_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_fastrtps_cpp/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_typesupport_interface.
DD EE
rosidl_typesupport_interface_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_interface/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_typesupport_introspection_c.
DD EE
rosidl_typesupport_introspection_c_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_introspection_c/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for rosidl_typesupport_introspection_cpp.
DD EE
rosidl_typesupport_introspection_cpp_DIR:PATH=/opt/ros/foxy/share/rosidl_typesupport_introspection_cpp/cmake
DD EE
DD EE
//The directory containing a CMake configuration file for std_msgs.
DD EE
std_msgs_DIR:PATH=/opt/ros/foxy/share/std_msgs/cmake
DD EE
DD EE
//Value Computed by CMake
DD EE
turtle_interfaces_BINARY_DIR:STATIC=/home/yahboom/roscourse_ws/build/turtle_interfaces
DD EE
DD EE
//Value Computed by CMake
DD EE
turtle_interfaces_SOURCE_DIR:STATIC=/home/yahboom/roscourse_ws/src/turtle_interfaces
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__python_LIB_DEPENDS:STATIC=general;turtle_interfaces__rosidl_generator_c;general;/usr/lib/x86_64-linux-gnu/libpython3.8.so;general;turtle_interfaces__rosidl_typesupport_c;general;/opt/ros/foxy/share/geometry_msgs/cmake/../../../lib/libgeometry_msgs__python.so;general;/opt/ros/foxy/share/std_msgs/cmake/../../../lib/libstd_msgs__python.so;general;/opt/ros/foxy/share/builtin_interfaces/cmake/../../../lib/libbuiltin_interfaces__python.so;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_generator_c_LIB_DEPENDS:STATIC=general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;rosidl_runtime_c::rosidl_runtime_c;general;rcutils::rcutils;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_c_LIB_DEPENDS:STATIC=general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_c::rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_c__pyext_LIB_DEPENDS:STATIC=general;turtle_interfaces__python;general;/usr/lib/x86_64-linux-gnu/libpython3.8.so;general;turtle_interfaces__rosidl_typesupport_c;general;turtle_interfaces__rosidl_typesupport_c;general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_c::rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;rosidl_runtime_c::rosidl_runtime_c;general;/opt/ros/foxy/lib/librmw.so;general;rosidl_runtime_c::rosidl_runtime_c;general;/opt/ros/foxy/lib/librosidl_runtime_c.so;general;rcutils::rcutils;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_cpp_LIB_DEPENDS:STATIC=general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_cpp::rosidl_typesupport_cpp;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_fastrtps_c_LIB_DEPENDS:STATIC=general;rmw::rmw;general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_fastrtps_cpp::rosidl_typesupport_fastrtps_cpp;general;rosidl_typesupport_fastrtps_c::rosidl_typesupport_fastrtps_c;general;rosidl_typesupport_fastrtps_cpp::rosidl_typesupport_fastrtps_cpp;general;rosidl_typesupport_fastrtps_c::rosidl_typesupport_fastrtps_c;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;/opt/ros/foxy/lib/libgeometry_msgs__rosidl_typesupport_fastrtps_c.so;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;/opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_fastrtps_c.so;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;/opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_fastrtps_c.so;general;turtle_interfaces__rosidl_generator_c;general;turtle_interfaces__rosidl_typesupport_fastrtps_cpp;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_fastrtps_c__pyext_LIB_DEPENDS:STATIC=general;turtle_interfaces__python;general;/usr/lib/x86_64-linux-gnu/libpython3.8.so;general;turtle_interfaces__rosidl_typesupport_fastrtps_c;general;turtle_interfaces__rosidl_typesupport_c;general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_c::rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;rosidl_runtime_c::rosidl_runtime_c;general;/opt/ros/foxy/lib/librmw.so;general;rosidl_runtime_c::rosidl_runtime_c;general;/opt/ros/foxy/lib/librosidl_runtime_c.so;general;rcutils::rcutils;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_fastrtps_cpp_LIB_DEPENDS:STATIC=general;rmw::rmw;general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_fastrtps_cpp::rosidl_typesupport_fastrtps_cpp;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;/opt/ros/foxy/lib/libgeometry_msgs__rosidl_typesupport_fastrtps_cpp.so;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;/opt/ros/foxy/lib/libstd_msgs__rosidl_typesupport_fastrtps_cpp.so;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;/opt/ros/foxy/lib/libbuiltin_interfaces__rosidl_typesupport_fastrtps_cpp.so;general;turtle_interfaces__rosidl_generator_cpp;general;fastrtps;general;fastcdr;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_introspection_c_LIB_DEPENDS:STATIC=general;turtle_interfaces__rosidl_generator_c;general;rosidl_typesupport_introspection_c::rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_introspection_c__pyext_LIB_DEPENDS:STATIC=general;turtle_interfaces__python;general;/usr/lib/x86_64-linux-gnu/libpython3.8.so;general;turtle_interfaces__rosidl_typesupport_introspection_c;general;turtle_interfaces__rosidl_typesupport_c;general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_c::rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;rosidl_runtime_c::rosidl_runtime_c;general;/opt/ros/foxy/lib/librmw.so;general;rosidl_runtime_c::rosidl_runtime_c;general;/opt/ros/foxy/lib/librosidl_runtime_c.so;general;rcutils::rcutils;
DD EE
DD EE
//Dependencies for the target
DD EE
turtle_interfaces__rosidl_typesupport_introspection_cpp_LIB_DEPENDS:STATIC=general;rosidl_runtime_c::rosidl_runtime_c;general;rosidl_typesupport_introspection_cpp::rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_generator_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_c;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_cpp;general;geometry_msgs::geometry_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_generator_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_c;general;std_msgs::std_msgs__rosidl_typesupport_c;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;std_msgs::std_msgs__rosidl_typesupport_cpp;general;std_msgs::std_msgs__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_generator_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_c;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_cpp;general;builtin_interfaces::builtin_interfaces__rosidl_typesupport_introspection_cpp;
DD EE
DD EE
//Path to a program.
DD EE
xmllint_BIN:FILEPATH=/usr/bin/xmllint
DD EE
DD EE
DD EE
########################
DD EE
# INTERNAL cache entries
DD EE
########################
DD EE
DD EE
//ADVANCED property for variable: CMAKE_ADDR2LINE
DD EE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_AR
DD EE
CMAKE_AR-ADVANCED:INTERNAL=1
DD EE
//This is the directory where this CMakeCache.txt was created
DD EE
CMAKE_CACHEFILE_DIR:INTERNAL=/home/yahboom/roscourse_ws/build/turtle_interfaces
DD EE
//Major version of cmake used to create the current loaded cache
DD EE
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
DD EE
//Minor version of cmake used to create the current loaded cache
DD EE
CMAKE_CACHE_MINOR_VERSION:INTERNAL=16
DD EE
//Patch version of cmake used to create the current loaded cache
DD EE
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
DD EE
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
DD EE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
DD EE
//Path to CMake executable.
DD EE
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
DD EE
//Path to cpack program executable.
DD EE
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
DD EE
//Path to ctest program executable.
DD EE
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
DD EE
//ADVANCED property for variable: CMAKE_CXX_COMPILER
DD EE
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
DD EE
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
DD EE
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_CXX_FLAGS
DD EE
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
DD EE
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
DD EE
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
DD EE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
DD EE
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_COMPILER
DD EE
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
DD EE
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
DD EE
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_FLAGS
DD EE
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
DD EE
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
DD EE
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
DD EE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
DD EE
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_DLLTOOL
DD EE
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
DD EE
//Executable file format
DD EE
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
DD EE
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
DD EE
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
DD EE
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
DD EE
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
DD EE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
DD EE
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
DD EE
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
DD EE
//Name of external makefile project generator.
DD EE
CMAKE_EXTRA_GENERATOR:INTERNAL=
DD EE
//Name of generator.
DD EE
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
DD EE
//Generator instance identifier.
DD EE
CMAKE_GENERATOR_INSTANCE:INTERNAL=
DD EE
//Name of generator platform.
DD EE
CMAKE_GENERATOR_PLATFORM:INTERNAL=
DD EE
//Name of generator toolset.
DD EE
CMAKE_GENERATOR_TOOLSET:INTERNAL=
DD EE
//Source directory with the top level CMakeLists.txt file for this
DD EE
// project
DD EE
CMAKE_HOME_DIRECTORY:INTERNAL=/home/yahboom/roscourse_ws/src/turtle_interfaces
DD EE
//Install .so files without execute permission.
DD EE
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_LINKER
DD EE
CMAKE_LINKER-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
DD EE
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
DD EE
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
DD EE
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
DD EE
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
DD EE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
DD EE
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_NM
DD EE
CMAKE_NM-ADVANCED:INTERNAL=1
DD EE
//number of local generators
DD EE
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
DD EE
//ADVANCED property for variable: CMAKE_OBJCOPY
DD EE
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_OBJDUMP
DD EE
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
DD EE
//Platform information initialized
DD EE
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_RANLIB
DD EE
CMAKE_RANLIB-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_READELF
DD EE
CMAKE_READELF-ADVANCED:INTERNAL=1
DD EE
//Path to CMake installation.
DD EE
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.16
DD EE
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
DD EE
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
DD EE
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
DD EE
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
DD EE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
DD EE
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
DD EE
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_SKIP_RPATH
DD EE
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
DD EE
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
DD EE
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
DD EE
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
DD EE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
DD EE
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: CMAKE_STRIP
DD EE
CMAKE_STRIP-ADVANCED:INTERNAL=1
DD EE
//uname command
DD EE
CMAKE_UNAME:INTERNAL=/usr/bin/uname
DD EE
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
DD EE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
DD EE
//Details about finding FastRTPS
DD EE
FIND_PACKAGE_MESSAGE_DETAILS_FastRTPS:INTERNAL=[/opt/ros/foxy/include][/opt/ros/foxy/lib/libfastrtps.so;/opt/ros/foxy/lib/libfastcdr.so][v()]
DD EE
//Details about finding OpenSSL
DD EE
FIND_PACKAGE_MESSAGE_DETAILS_OpenSSL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libcrypto.so][/usr/include][c ][v1.1.1f()]
DD EE
//Details about finding PythonExtra
DD EE
FIND_PACKAGE_MESSAGE_DETAILS_PythonExtra:INTERNAL=[.so][/usr/include/python3.8][/usr/lib/x86_64-linux-gnu/libpython3.8.so][.cpython-38-x86_64-linux-gnu][v()]
DD EE
//Details about finding PythonInterp
DD EE
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python3][v3.8.10(3.5)]
DD EE
//Details about finding PythonLibs
DD EE
FIND_PACKAGE_MESSAGE_DETAILS_PythonLibs:INTERNAL=[/usr/lib/x86_64-linux-gnu/libpython3.8.so][/usr/include/python3.8][v3.8.10(3.5)]
DD EE
//ADVANCED property for variable: OPENSSL_CRYPTO_LIBRARY
DD EE
OPENSSL_CRYPTO_LIBRARY-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: OPENSSL_INCLUDE_DIR
DD EE
OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: OPENSSL_SSL_LIBRARY
DD EE
OPENSSL_SSL_LIBRARY-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
DD EE
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: PYTHON_EXECUTABLE
DD EE
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: PYTHON_INCLUDE_DIR
DD EE
PYTHON_INCLUDE_DIR-ADVANCED:INTERNAL=1
DD EE
//The directory for Python library installation. This needs to
DD EE
// be in PYTHONPATH when 'setup.py install' is called.
DD EE
PYTHON_INSTALL_DIR:INTERNAL=lib/python3.8/site-packages
DD EE
//ADVANCED property for variable: PYTHON_LIBRARY
DD EE
PYTHON_LIBRARY-ADVANCED:INTERNAL=1
DD EE
//ADVANCED property for variable: PYTHON_LIBRARY_DEBUG
DD EE
PYTHON_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
DD EE
//The SOABI suffix for Python native extensions. See PEP-3149:
DD EE
// https://www.python.org/dev/peps/pep-3149/.
DD EE
PYTHON_SOABI:INTERNAL=cpython-38-x86_64-linux-gnu
DD EE
//The full suffix for Python native extensions. See PEP-3149: https://www.python.org/dev/peps/pep-3149/.
DD EE
PythonExtra_EXTENSION_SUFFIX:INTERNAL=.cpython-38-x86_64-linux-gnu
DD EE
_OPENSSL_CFLAGS:INTERNAL=
DD EE
_OPENSSL_CFLAGS_I:INTERNAL=
DD EE
_OPENSSL_CFLAGS_OTHER:INTERNAL=
DD EE
_OPENSSL_FOUND:INTERNAL=1
DD EE
_OPENSSL_INCLUDEDIR:INTERNAL=/usr/include
DD EE
_OPENSSL_INCLUDE_DIRS:INTERNAL=
DD EE
_OPENSSL_LDFLAGS:INTERNAL=-lssl;-lcrypto
DD EE
_OPENSSL_LDFLAGS_OTHER:INTERNAL=
DD EE
_OPENSSL_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
DD EE
_OPENSSL_LIBRARIES:INTERNAL=ssl;crypto
DD EE
_OPENSSL_LIBRARY_DIRS:INTERNAL=
DD EE
_OPENSSL_LIBS:INTERNAL=
DD EE
_OPENSSL_LIBS_L:INTERNAL=
DD EE
_OPENSSL_LIBS_OTHER:INTERNAL=
DD EE
_OPENSSL_LIBS_PATHS:INTERNAL=
DD EE
_OPENSSL_MODULE_NAME:INTERNAL=openssl
DD EE
_OPENSSL_PREFIX:INTERNAL=/usr
DD EE
_OPENSSL_STATIC_CFLAGS:INTERNAL=
DD EE
_OPENSSL_STATIC_CFLAGS_I:INTERNAL=
DD EE
_OPENSSL_STATIC_CFLAGS_OTHER:INTERNAL=
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff