diff --git a/.cache/clangd/index/vk_mem_alloc.cppm.75C9F6CBA4B2AE37.idx b/.cache/clangd/index/vk_mem_alloc.cppm.75C9F6CBA4B2AE37.idx new file mode 100644 index 0000000..431c4df Binary files /dev/null and b/.cache/clangd/index/vk_mem_alloc.cppm.75C9F6CBA4B2AE37.idx differ diff --git a/.cache/clangd/index/vk_mem_alloc.h.60C974FEEAB61B5B.idx b/.cache/clangd/index/vk_mem_alloc.h.60C974FEEAB61B5B.idx new file mode 100644 index 0000000..b0bb020 Binary files /dev/null and b/.cache/clangd/index/vk_mem_alloc.h.60C974FEEAB61B5B.idx differ diff --git a/.cache/clangd/index/vk_mem_alloc.hpp.BDB1AFCBAF55E12C.idx b/.cache/clangd/index/vk_mem_alloc.hpp.BDB1AFCBAF55E12C.idx new file mode 100644 index 0000000..4d528d0 Binary files /dev/null and b/.cache/clangd/index/vk_mem_alloc.hpp.BDB1AFCBAF55E12C.idx differ diff --git a/.cache/clangd/index/vk_mem_alloc_enums.hpp.ED45234758C8A14A.idx b/.cache/clangd/index/vk_mem_alloc_enums.hpp.ED45234758C8A14A.idx new file mode 100644 index 0000000..b5c457a Binary files /dev/null and b/.cache/clangd/index/vk_mem_alloc_enums.hpp.ED45234758C8A14A.idx differ diff --git a/.cache/clangd/index/vk_mem_alloc_funcs.hpp.5675A990581A8C8A.idx b/.cache/clangd/index/vk_mem_alloc_funcs.hpp.5675A990581A8C8A.idx new file mode 100644 index 0000000..62617f7 Binary files /dev/null and b/.cache/clangd/index/vk_mem_alloc_funcs.hpp.5675A990581A8C8A.idx differ diff --git a/.cache/clangd/index/vk_mem_alloc_handles.hpp.95A3CD2761EC6BF6.idx b/.cache/clangd/index/vk_mem_alloc_handles.hpp.95A3CD2761EC6BF6.idx new file mode 100644 index 0000000..d9a535c Binary files /dev/null and b/.cache/clangd/index/vk_mem_alloc_handles.hpp.95A3CD2761EC6BF6.idx differ diff --git a/.cache/clangd/index/vk_mem_alloc_structs.hpp.6C4E09C11DC552AE.idx b/.cache/clangd/index/vk_mem_alloc_structs.hpp.6C4E09C11DC552AE.idx new file mode 100644 index 0000000..15822f9 Binary files /dev/null and b/.cache/clangd/index/vk_mem_alloc_structs.hpp.6C4E09C11DC552AE.idx differ diff --git a/CppModule/CMakeLists.txt b/CppModule/CMakeLists.txt new file mode 100644 index 0000000..6b6ecb5 --- /dev/null +++ b/CppModule/CMakeLists.txt @@ -0,0 +1,33 @@ +cmake_minimum_required(VERSION 3.28) + +find_package(VulkanHeaders REQUIRED) + +option(VMA_BUILD_WITH_VULKAN_MODULE OFF) +if (${VMA_BUILD_WITH_VULKAN_MODULE}) + add_library(Vulkan-Hpp-Module) + target_sources(Vulkan-Hpp-Module PUBLIC + FILE_SET CXX_MODULES + BASE_DIRS ${Vulkan_INCLUDE_DIR}/vulkan + FILES ${Vulkan_INCLUDE_DIR}/vulkan/vulkan.cppm + ) + target_compile_features(Vulkan-Hpp-Module PUBLIC cxx_std_20) + target_link_libraries(Vulkan-Hpp-Module PUBLIC Vulkan::Headers) +else() + add_library(Vulkan-Hpp-Module INTERFACE) + target_compile_features(Vulkan-Hpp-Module INTERFACE cxx_std_20) + target_link_libraries(Vulkan-Hpp-Module INTERFACE Vulkan::Headers) +endif() + +add_library(VulkanMemoryAllocator-Hpp-Module) +target_sources(VulkanMemoryAllocator-Hpp-Module PUBLIC + FILE_SET CXX_MODULES + BASE_DIRS ../src + FILES ../src/vk_mem_alloc.cppm +) +target_compile_features(VulkanMemoryAllocator-Hpp-Module PUBLIC cxx_std_20) +target_link_libraries(VulkanMemoryAllocator-Hpp-Module PRIVATE Vulkan-Hpp-Module VulkanMemoryAllocator-Hpp) +target_compile_definitions(VulkanMemoryAllocator-Hpp-Module PRIVATE + VMA_USE_VULKAN_HPP_MODULE=$ +) + +target_compile_options(VulkanMemoryAllocator-Hpp-Module PRIVATE -w) diff --git a/Generate.java b/Generate.java index 3f495bf..016a6d7 100644 --- a/Generate.java +++ b/Generate.java @@ -911,12 +911,23 @@ static void generateModule(List enums, List structs, List - #if !VMA_USE_VULKAN_HPP_MODULE + #if VMA_USE_VULKAN_HPP_MODULE + #include + #else #include - #endif // !VMA_USE_VULKAN_HPP_MODULE + #endif + + #if !VMA_USE_STD_MODULE + #include + #include + #endif export module vk_mem_alloc_hpp; @@ -924,6 +935,10 @@ static void generateModule(List enums, List structs, List>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/3.30.0/CompilerIdC/a.out b/build/CMakeFiles/3.30.0/CompilerIdC/a.out new file mode 100755 index 0000000..82415a8 Binary files /dev/null and b/build/CMakeFiles/3.30.0/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..da6c824 --- /dev/null +++ b/build/CMakeFiles/3.30.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.30.0/CompilerIdCXX/a.out b/build/CMakeFiles/3.30.0/CompilerIdCXX/a.out new file mode 100755 index 0000000..e47cfcb Binary files /dev/null and b/build/CMakeFiles/3.30.0/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..a85c380 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,452 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:4 (project)" + message: | + The system is: Linux - 6.9.7-zen1-1-zen - x86_64 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:4 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/lib/ccache/bin/clang + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is Clang, found in: + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/3.30.0/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:4 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/lib/ccache/bin/clang++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is Clang, found in: + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/3.30.0/CompilerIdCXX/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf" + binary: "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf" + cmakeVariables: + CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS: "/usr/bin/clang-scan-deps" + CMAKE_C_FLAGS: "" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf' + + Run Build Command(s): /usr/bin/ninja -v cmTC_97212 + [1/2] /usr/lib/ccache/bin/clang -DCMAKE_INTDIR=\\"Debug\\" -g -v -MD -MT CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c + clang version 18.1.8 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + (in-process) + "/usr/bin/clang-18" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=5 -debugger-tuning=gdb -fdebug-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf -v -fcoverage-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf -resource-dir /usr/lib/clang/18 -dependency-file CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -sys-header-deps -D "CMAKE_INTDIR=\\"Debug\\"" -internal-isystem /usr/lib/clang/18/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcolor-diagnostics -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -x c /usr/share/cmake/Modules/CMakeCCompilerABI.c + clang -cc1 version 18.1.8 based upon LLVM 18.1.8 default target x86_64-pc-linux-gnu + ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include" + ignoring nonexistent directory "/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/clang/18/include + /usr/local/include + /usr/include + End of search list. + [2/2] : && /usr/lib/ccache/bin/clang -g -v -Wl,-v CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -o Debug/cmTC_97212 && : + clang version 18.1.8 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o Debug/cmTC_97212 /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o + GNU ld (GNU Binutils) 2.42.0 + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/clang/18/include] + add: [/usr/local/include] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/clang/18/include] ==> [/usr/lib/clang/18/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/clang/18/include;/usr/local/include;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_97212] + ignore line: [[1/2] /usr/lib/ccache/bin/clang -DCMAKE_INTDIR=\\"Debug\\" -g -v -MD -MT CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [clang version 18.1.8] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + ignore line: [ (in-process)] + ignore line: [ "/usr/bin/clang-18" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=5 -debugger-tuning=gdb -fdebug-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf -v -fcoverage-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-NcaGLf -resource-dir /usr/lib/clang/18 -dependency-file CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -sys-header-deps -D "CMAKE_INTDIR=\\"Debug\\"" -internal-isystem /usr/lib/clang/18/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcolor-diagnostics -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -x c /usr/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [clang -cc1 version 18.1.8 based upon LLVM 18.1.8 default target x86_64-pc-linux-gnu] + ignore line: [ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [ignoring nonexistent directory "/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/clang/18/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [[2/2] : && /usr/lib/ccache/bin/clang -g -v -Wl -v CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -o Debug/cmTC_97212 && :] + ignore line: [clang version 18.1.8] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o Debug/cmTC_97212 /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] + arg [/usr/bin/ld] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-pie] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-o] ==> ignore + arg [Debug/cmTC_97212] ==> ignore + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64] + arg [-L/lib/../lib64] ==> dir [/lib/../lib64] + arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_97212.dir/Debug/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] + linker tool for 'C': /usr/bin/ld + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o] ==> [/usr/lib64/Scrt1.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o] ==> [/usr/lib64/crti.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] ==> [/usr/lib64/crtn.o] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64] ==> [/usr/lib64] + collapse library dir [/lib/../lib64] ==> [/lib64] + collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib64/Scrt1.o;/usr/lib64/crti.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o;/usr/lib64/crtn.o] + implicit dirs: [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1;/usr/lib64;/lib64;/lib;/usr/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Running the C compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils) 2.42.0 + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1" + binary: "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1" + cmakeVariables: + CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS: "/usr/bin/clang-scan-deps" + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1' + + Run Build Command(s): /usr/bin/ninja -v cmTC_daca2 + [1/2] /usr/lib/ccache/bin/clang++ -DCMAKE_INTDIR=\\"Debug\\" -g -v -MD -MT CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang version 18.1.8 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + (in-process) + "/usr/bin/clang++" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=5 -debugger-tuning=gdb -fdebug-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1 -v -fcoverage-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1 -resource-dir /usr/lib/clang/18 -dependency-file CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D "CMAKE_INTDIR=\\"Debug\\"" -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1 -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward -internal-isystem /usr/lib/clang/18/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fcolor-diagnostics -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang -cc1 version 18.1.8 based upon LLVM 18.1.8 default target x86_64-pc-linux-gnu + ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include" + ignoring nonexistent directory "/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1 + /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu + /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward + /usr/lib/clang/18/include + /usr/local/include + /usr/include + End of search list. + [2/2] : && /usr/lib/ccache/bin/clang++ -g -v -Wl,-v CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -o Debug/cmTC_daca2 && : + clang version 18.1.8 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o Debug/cmTC_daca2 /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o + GNU ld (GNU Binutils) 2.42.0 + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1] + add: [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu] + add: [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward] + add: [/usr/lib/clang/18/include] + add: [/usr/local/include] + add: [/usr/include] + end of search list found + collapse include dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1] ==> [/usr/include/c++/14.1.1] + collapse include dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu] ==> [/usr/include/c++/14.1.1/x86_64-pc-linux-gnu] + collapse include dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward] ==> [/usr/include/c++/14.1.1/backward] + collapse include dir [/usr/lib/clang/18/include] ==> [/usr/lib/clang/18/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/14.1.1;/usr/include/c++/14.1.1/x86_64-pc-linux-gnu;/usr/include/c++/14.1.1/backward;/usr/lib/clang/18/include;/usr/local/include;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_daca2] + ignore line: [[1/2] /usr/lib/ccache/bin/clang++ -DCMAKE_INTDIR=\\"Debug\\" -g -v -MD -MT CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang version 18.1.8] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + ignore line: [ (in-process)] + ignore line: [ "/usr/bin/clang++" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=5 -debugger-tuning=gdb -fdebug-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1 -v -fcoverage-compilation-dir=/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/CMakeScratch/TryCompile-tj0Gm1 -resource-dir /usr/lib/clang/18 -dependency-file CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D "CMAKE_INTDIR=\\"Debug\\"" -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1 -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward -internal-isystem /usr/lib/clang/18/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fcolor-diagnostics -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 18.1.8 based upon LLVM 18.1.8 default target x86_64-pc-linux-gnu] + ignore line: [ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [ignoring nonexistent directory "/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1] + ignore line: [ /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu] + ignore line: [ /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward] + ignore line: [ /usr/lib/clang/18/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [[2/2] : && /usr/lib/ccache/bin/clang++ -g -v -Wl -v CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -o Debug/cmTC_daca2 && :] + ignore line: [clang version 18.1.8] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o Debug/cmTC_daca2 /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] + arg [/usr/bin/ld] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-pie] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-o] ==> ignore + arg [Debug/cmTC_daca2] ==> ignore + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64] + arg [-L/lib/../lib64] ==> dir [/lib/../lib64] + arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_daca2.dir/Debug/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] + linker tool for 'CXX': /usr/bin/ld + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/Scrt1.o] ==> [/usr/lib64/Scrt1.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crti.o] ==> [/usr/lib64/crti.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64/crtn.o] ==> [/usr/lib64/crtn.o] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../lib64] ==> [/usr/lib64] + collapse library dir [/lib/../lib64] ==> [/lib64] + collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib64/Scrt1.o;/usr/lib64/crti.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtbeginS.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/crtendS.o;/usr/lib64/crtn.o] + implicit dirs: [/usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1;/usr/lib64;/lib64;/lib;/usr/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:4 (project)" + message: | + Running the CXX compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils) 2.42.0 +... diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..4c37e99 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,17 @@ +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/edit_cache.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/rebuild_cache.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/install.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/install/local.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CMakeFiles/install/strip.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator/CMakeFiles/edit_cache.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator/CMakeFiles/rebuild_cache.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator/CMakeFiles/install.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator/CMakeFiles/install/local.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator/CMakeFiles/install/strip.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/edit_cache.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/rebuild_cache.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/install.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/install/local.dir +/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/install/strip.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/common.ninja b/build/CMakeFiles/common.ninja new file mode 100644 index 0000000..ca579f2 --- /dev/null +++ b/build/CMakeFiles/common.ninja @@ -0,0 +1,491 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains build statements common to all configurations. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: VulkanMemoryAllocator-Hpp +# Configurations: Debug, Release, RelWithDebInfo +# ============================================================================= +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/ + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/ccmake -S/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp -B/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake --regenerate-during-build -S/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp -B/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for install + +build CMakeFiles/Debug/install.util: CUSTOM_COMMAND all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build install$:Debug: phony CMakeFiles/Debug/install.util + + +############################################# +# Utility command for install + +build CMakeFiles/Release/install.util: CUSTOM_COMMAND all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build install$:Release: phony CMakeFiles/Release/install.util + + +############################################# +# Utility command for install + +build CMakeFiles/RelWithDebInfo/install.util: CUSTOM_COMMAND all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build install$:RelWithDebInfo: phony CMakeFiles/RelWithDebInfo/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/Debug/install/local.util: CUSTOM_COMMAND all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local$:Debug: phony CMakeFiles/Debug/install/local.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/Release/install/local.util: CUSTOM_COMMAND all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local$:Release: phony CMakeFiles/Release/install/local.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/RelWithDebInfo/install/local.util: CUSTOM_COMMAND all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local$:RelWithDebInfo: phony CMakeFiles/RelWithDebInfo/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/Debug/install/strip.util: CUSTOM_COMMAND all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip$:Debug: phony CMakeFiles/Debug/install/strip.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/Release/install/strip.util: CUSTOM_COMMAND all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip$:Release: phony CMakeFiles/Release/install/strip.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/RelWithDebInfo/install/strip.util: CUSTOM_COMMAND all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip$:RelWithDebInfo: phony CMakeFiles/RelWithDebInfo/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build VulkanMemoryAllocator/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/ccmake -S/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp -B/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build VulkanMemoryAllocator/edit_cache: phony VulkanMemoryAllocator/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build VulkanMemoryAllocator/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake --regenerate-during-build -S/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp -B/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build VulkanMemoryAllocator/rebuild_cache: phony VulkanMemoryAllocator/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for install + +build VulkanMemoryAllocator/CMakeFiles/Debug/install.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install$:Debug: phony VulkanMemoryAllocator/CMakeFiles/Debug/install.util + + +############################################# +# Utility command for install + +build VulkanMemoryAllocator/CMakeFiles/Release/install.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install$:Release: phony VulkanMemoryAllocator/CMakeFiles/Release/install.util + + +############################################# +# Utility command for install + +build VulkanMemoryAllocator/CMakeFiles/RelWithDebInfo/install.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install$:RelWithDebInfo: phony VulkanMemoryAllocator/CMakeFiles/RelWithDebInfo/install.util + + +############################################# +# Utility command for install/local + +build VulkanMemoryAllocator/CMakeFiles/Debug/install/local.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install/local$:Debug: phony VulkanMemoryAllocator/CMakeFiles/Debug/install/local.util + + +############################################# +# Utility command for install/local + +build VulkanMemoryAllocator/CMakeFiles/Release/install/local.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install/local$:Release: phony VulkanMemoryAllocator/CMakeFiles/Release/install/local.util + + +############################################# +# Utility command for install/local + +build VulkanMemoryAllocator/CMakeFiles/RelWithDebInfo/install/local.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install/local$:RelWithDebInfo: phony VulkanMemoryAllocator/CMakeFiles/RelWithDebInfo/install/local.util + + +############################################# +# Utility command for install/strip + +build VulkanMemoryAllocator/CMakeFiles/Debug/install/strip.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install/strip$:Debug: phony VulkanMemoryAllocator/CMakeFiles/Debug/install/strip.util + + +############################################# +# Utility command for install/strip + +build VulkanMemoryAllocator/CMakeFiles/Release/install/strip.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install/strip$:Release: phony VulkanMemoryAllocator/CMakeFiles/Release/install/strip.util + + +############################################# +# Utility command for install/strip + +build VulkanMemoryAllocator/CMakeFiles/RelWithDebInfo/install/strip.util: CUSTOM_COMMAND VulkanMemoryAllocator/all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build VulkanMemoryAllocator/install/strip$:RelWithDebInfo: phony VulkanMemoryAllocator/CMakeFiles/RelWithDebInfo/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build CppModule/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/ccmake -S/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp -B/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build CppModule/edit_cache: phony CppModule/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CppModule/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake --regenerate-during-build -S/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp -B/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build CppModule/rebuild_cache: phony CppModule/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for install + +build CppModule/CMakeFiles/Debug/install.util: CUSTOM_COMMAND CppModule/all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build CppModule/install$:Debug: phony CppModule/CMakeFiles/Debug/install.util + + +############################################# +# Utility command for install + +build CppModule/CMakeFiles/Release/install.util: CUSTOM_COMMAND CppModule/all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build CppModule/install$:Release: phony CppModule/CMakeFiles/Release/install.util + + +############################################# +# Utility command for install + +build CppModule/CMakeFiles/RelWithDebInfo/install.util: CUSTOM_COMMAND CppModule/all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 + +build CppModule/install$:RelWithDebInfo: phony CppModule/CMakeFiles/RelWithDebInfo/install.util + + +############################################# +# Utility command for install/local + +build CppModule/CMakeFiles/Debug/install/local.util: CUSTOM_COMMAND CppModule/all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build CppModule/install/local$:Debug: phony CppModule/CMakeFiles/Debug/install/local.util + + +############################################# +# Utility command for install/local + +build CppModule/CMakeFiles/Release/install/local.util: CUSTOM_COMMAND CppModule/all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build CppModule/install/local$:Release: phony CppModule/CMakeFiles/Release/install/local.util + + +############################################# +# Utility command for install/local + +build CppModule/CMakeFiles/RelWithDebInfo/install/local.util: CUSTOM_COMMAND CppModule/all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 + +build CppModule/install/local$:RelWithDebInfo: phony CppModule/CMakeFiles/RelWithDebInfo/install/local.util + + +############################################# +# Utility command for install/strip + +build CppModule/CMakeFiles/Debug/install/strip.util: CUSTOM_COMMAND CppModule/all$:Debug + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=Debug -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build CppModule/install/strip$:Debug: phony CppModule/CMakeFiles/Debug/install/strip.util + + +############################################# +# Utility command for install/strip + +build CppModule/CMakeFiles/Release/install/strip.util: CUSTOM_COMMAND CppModule/all$:Release + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=Release -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build CppModule/install/strip$:Release: phony CppModule/CMakeFiles/Release/install/strip.util + + +############################################# +# Utility command for install/strip + +build CppModule/CMakeFiles/RelWithDebInfo/install/strip.util: CUSTOM_COMMAND CppModule/all$:RelWithDebInfo + COMMAND = cd /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -DBUILD_TYPE=RelWithDebInfo -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 + +build CppModule/install/strip$:RelWithDebInfo: phony CppModule/CMakeFiles/RelWithDebInfo/install/strip.util + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= +# ============================================================================= +# ============================================================================= +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build CMakeFiles/impl-Debug.ninja build-Debug.ninja CMakeFiles/impl-Release.ninja build-Release.ninja CMakeFiles/impl-RelWithDebInfo.ninja build-RelWithDebInfo.ninja build.ninja: RERUN_CMAKE | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule/CMakeLists.txt /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/CMakeLists.txt /usr/share/cmake/Modules/CMakeCInformation.cmake /usr/share/cmake/Modules/CMakeCXXInformation.cmake /usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake/Modules/CMakeGenericSystem.cmake /usr/share/cmake/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake/Modules/CMakeLanguageInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake/Modules/Compiler/Clang-C.cmake /usr/share/cmake/Modules/Compiler/Clang-CXX.cmake /usr/share/cmake/Modules/Compiler/Clang.cmake /usr/share/cmake/Modules/Compiler/GNU.cmake /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake/Modules/FindPackageMessage.cmake /usr/share/cmake/Modules/FindVulkan.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-C.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU.cmake /usr/share/cmake/Modules/Platform/Linux-Initialize.cmake /usr/share/cmake/Modules/Platform/Linux.cmake /usr/share/cmake/Modules/Platform/UnixPaths.cmake /usr/share/cmake/VulkanHeaders/VulkanHeadersConfig.cmake /usr/share/cmake/VulkanHeaders/VulkanHeadersConfigVersion.cmake CMakeCache.txt CMakeFiles/3.30.0/CMakeCCompiler.cmake CMakeFiles/3.30.0/CMakeCXXCompiler.cmake CMakeFiles/3.30.0/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule/CMakeLists.txt /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/CMakeLists.txt /usr/share/cmake/Modules/CMakeCInformation.cmake /usr/share/cmake/Modules/CMakeCXXInformation.cmake /usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake/Modules/CMakeGenericSystem.cmake /usr/share/cmake/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake/Modules/CMakeLanguageInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake/Modules/Compiler/Clang-C.cmake /usr/share/cmake/Modules/Compiler/Clang-CXX.cmake /usr/share/cmake/Modules/Compiler/Clang.cmake /usr/share/cmake/Modules/Compiler/GNU.cmake /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake/Modules/FindPackageMessage.cmake /usr/share/cmake/Modules/FindVulkan.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-C.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU.cmake /usr/share/cmake/Modules/Platform/Linux-Initialize.cmake /usr/share/cmake/Modules/Platform/Linux.cmake /usr/share/cmake/Modules/Platform/UnixPaths.cmake /usr/share/cmake/VulkanHeaders/VulkanHeadersConfig.cmake /usr/share/cmake/VulkanHeaders/VulkanHeadersConfigVersion.cmake CMakeCache.txt CMakeFiles/3.30.0/CMakeCCompiler.cmake CMakeFiles/3.30.0/CMakeCXXCompiler.cmake CMakeFiles/3.30.0/CMakeSystem.cmake: phony + + +############################################# +# Clean byproducts. + +build CMakeFiles/cmake_byproducts_for_clean_target: phony + + +############################################# +# Clean byproducts. + +build CMakeFiles/cmake_byproducts_for_clean_target$:Debug: phony CppModule/Debug/libVulkan-Hpp-Module.a CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Clean byproducts. + +build CMakeFiles/cmake_byproducts_for_clean_target$:Release: phony CppModule/Release/libVulkan-Hpp-Module.a CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Clean byproducts. + +build CMakeFiles/cmake_byproducts_for_clean_target$:RelWithDebInfo: phony CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Print all primary targets available. + +build help: HELP + diff --git a/build/CMakeFiles/impl-Debug.ninja b/build/CMakeFiles/impl-Debug.ninja new file mode 100644 index 0000000..ea4fb48 --- /dev/null +++ b/build/CMakeFiles/impl-Debug.ninja @@ -0,0 +1,170 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains build statements specific to the "Debug" +# configuration. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: VulkanMemoryAllocator-Hpp +# Configurations: Debug, Release, RelWithDebInfo +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include common file. + +include CMakeFiles/common.ninja + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target Vulkan-Hpp-Module + + +############################################# +# Order-only phony target for Vulkan-Hpp-Module + +build cmake_object_order_depends_target_Vulkan-Hpp-Module_DEBUG: phony || . + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi: CXX_SCAN__Vulkan-Hpp-Module_Debug /usr/include/vulkan/vulkan.cppm || cmake_object_order_depends_target_Vulkan-Hpp-Module_DEBUG + DEFINES = -DCMAKE_INTDIR=\"Debug\" + DEP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi.d + DYNDEP_INTERMEDIATE_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi + FLAGS = -g -std=gnu++20 + OBJ_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o + PREPROCESSED_OUTPUT_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi.i + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o: CXX_COMPILER__Vulkan-Hpp-Module_scanned_Debug /usr/include/vulkan/vulkan.cppm | CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.modmap || cmake_object_order_depends_target_Vulkan-Hpp-Module_DEBUG CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXX.dd + DEFINES = -DCMAKE_INTDIR=\"Debug\" + DEP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.d + DYNDEP_MODULE_MAP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.modmap + FLAGS = -g -std=gnu++20 + OBJECT_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug + OBJECT_FILE_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan + dyndep = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXX.dd + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXX.dd | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXModules.json CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.modmap: CXX_DYNDEP__Vulkan-Hpp-Module_Debug CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXDependInfo.json + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target Vulkan-Hpp-Module + + +############################################# +# Link the static library CppModule/Debug/libVulkan-Hpp-Module.a + +build CppModule/Debug/libVulkan-Hpp-Module.a: CXX_STATIC_LIBRARY_LINKER__Vulkan-Hpp-Module_Debug CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = CppModule/Debug/libVulkan-Hpp-Module.a + TARGET_PDB = Vulkan-Hpp-Module.a.dbg + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target VulkanMemoryAllocator-Hpp-Module + + +############################################# +# Order-only phony target for VulkanMemoryAllocator-Hpp-Module + +build cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_DEBUG: phony || cmake_object_order_depends_target_Vulkan-Hpp-Module_DEBUG + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi: CXX_SCAN__VulkanMemoryAllocator-Hpp-Module_Debug /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm || cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_DEBUG + DEFINES = -DVMA_USE_VULKAN_HPP_MODULE=1 -DCMAKE_INTDIR=\"Debug\" + DEP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi.d + DYNDEP_INTERMEDIATE_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi + FLAGS = -g -std=gnu++20 -w + INCLUDES = -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include + OBJ_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o + PREPROCESSED_OUTPUT_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi.i + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o: CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_scanned_Debug /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm | CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.modmap || cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_DEBUG CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXX.dd + DEFINES = -DVMA_USE_VULKAN_HPP_MODULE=1 -DCMAKE_INTDIR=\"Debug\" + DEP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.d + DYNDEP_MODULE_MAP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.modmap + FLAGS = -g -std=gnu++20 -w + INCLUDES = -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include + OBJECT_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug + OBJECT_FILE_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src + dyndep = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXX.dd + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXX.dd | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXModules.json CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.modmap: CXX_DYNDEP__VulkanMemoryAllocator-Hpp-Module_Debug CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXDependInfo.json /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXModules.json + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target VulkanMemoryAllocator-Hpp-Module + + +############################################# +# Link the static library CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + +build CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a: CXX_STATIC_LIBRARY_LINKER__VulkanMemoryAllocator-Hpp-Module_Debug CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o || CppModule/Debug/libVulkan-Hpp-Module.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + TARGET_PDB = VulkanMemoryAllocator-Hpp-Module.a.dbg + +build Vulkan-Hpp-Module$:Debug: phony CppModule/Debug/libVulkan-Hpp-Module.a + +build VulkanMemoryAllocator-Hpp-Module$:Debug: phony CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + +build libVulkan-Hpp-Module.a$:Debug: phony CppModule/Debug/libVulkan-Hpp-Module.a + +build libVulkanMemoryAllocator-Hpp-Module.a$:Debug: phony CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + +build all$:Debug: phony VulkanMemoryAllocator/all$:Debug CppModule/all$:Debug + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule + +build CppModule/all$:Debug: phony CppModule/Debug/libVulkan-Hpp-Module.a CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator + +build VulkanMemoryAllocator/all$:Debug: phony + + +############################################# +# Clean all the built files. + +build clean$:Debug: CLEAN + FILE_ARG = -f CMakeFiles/impl-Debug.ninja + TARGETS = CMakeFiles/cmake_byproducts_for_clean_target:Debug CMakeFiles/cmake_byproducts_for_clean_target + diff --git a/build/CMakeFiles/impl-RelWithDebInfo.ninja b/build/CMakeFiles/impl-RelWithDebInfo.ninja new file mode 100644 index 0000000..51dbaaf --- /dev/null +++ b/build/CMakeFiles/impl-RelWithDebInfo.ninja @@ -0,0 +1,170 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains build statements specific to the "RelWithDebInfo" +# configuration. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: VulkanMemoryAllocator-Hpp +# Configurations: Debug, Release, RelWithDebInfo +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = RelWithDebInfo +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include common file. + +include CMakeFiles/common.ninja + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target Vulkan-Hpp-Module + + +############################################# +# Order-only phony target for Vulkan-Hpp-Module + +build cmake_object_order_depends_target_Vulkan-Hpp-Module_RELWITHDEBINFO: phony || . + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.ddi: CXX_SCAN__Vulkan-Hpp-Module_RelWithDebInfo /usr/include/vulkan/vulkan.cppm || cmake_object_order_depends_target_Vulkan-Hpp-Module_RELWITHDEBINFO + DEFINES = -DCMAKE_INTDIR=\"RelWithDebInfo\" + DEP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.ddi.d + DYNDEP_INTERMEDIATE_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.ddi + FLAGS = -O2 -g -DNDEBUG -std=gnu++20 + OBJ_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o + PREPROCESSED_OUTPUT_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.ddi.i + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o: CXX_COMPILER__Vulkan-Hpp-Module_scanned_RelWithDebInfo /usr/include/vulkan/vulkan.cppm | CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.modmap || cmake_object_order_depends_target_Vulkan-Hpp-Module_RELWITHDEBINFO CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXX.dd + DEFINES = -DCMAKE_INTDIR=\"RelWithDebInfo\" + DEP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.d + DYNDEP_MODULE_MAP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.modmap + FLAGS = -O2 -g -DNDEBUG -std=gnu++20 + OBJECT_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo + OBJECT_FILE_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan + dyndep = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXX.dd + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXX.dd | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXXModules.json CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.modmap: CXX_DYNDEP__Vulkan-Hpp-Module_RelWithDebInfo CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o.ddi | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target Vulkan-Hpp-Module + + +############################################# +# Link the static library CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a + +build CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a: CXX_STATIC_LIBRARY_LINKER__Vulkan-Hpp-Module_RelWithDebInfo CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o + LANGUAGE_COMPILE_FLAGS = -O2 -g -DNDEBUG + OBJECT_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a + TARGET_PDB = Vulkan-Hpp-Module.a.dbg + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target VulkanMemoryAllocator-Hpp-Module + + +############################################# +# Order-only phony target for VulkanMemoryAllocator-Hpp-Module + +build cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_RELWITHDEBINFO: phony || cmake_object_order_depends_target_Vulkan-Hpp-Module_RELWITHDEBINFO + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.ddi: CXX_SCAN__VulkanMemoryAllocator-Hpp-Module_RelWithDebInfo /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm || cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_RELWITHDEBINFO + DEFINES = -DVMA_USE_VULKAN_HPP_MODULE=1 -DCMAKE_INTDIR=\"RelWithDebInfo\" + DEP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.ddi.d + DYNDEP_INTERMEDIATE_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.ddi + FLAGS = -O2 -g -DNDEBUG -std=gnu++20 -w + INCLUDES = -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include + OBJ_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o + PREPROCESSED_OUTPUT_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.ddi.i + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o: CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_scanned_RelWithDebInfo /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm | CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.modmap || cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_RELWITHDEBINFO CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXX.dd + DEFINES = -DVMA_USE_VULKAN_HPP_MODULE=1 -DCMAKE_INTDIR=\"RelWithDebInfo\" + DEP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.d + DYNDEP_MODULE_MAP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.modmap + FLAGS = -O2 -g -DNDEBUG -std=gnu++20 -w + INCLUDES = -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include + OBJECT_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo + OBJECT_FILE_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src + dyndep = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXX.dd + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXX.dd | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXXModules.json CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.modmap: CXX_DYNDEP__VulkanMemoryAllocator-Hpp-Module_RelWithDebInfo CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o.ddi | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXXModules.json + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target VulkanMemoryAllocator-Hpp-Module + + +############################################# +# Link the static library CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + +build CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a: CXX_STATIC_LIBRARY_LINKER__VulkanMemoryAllocator-Hpp-Module_RelWithDebInfo CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o || CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a + LANGUAGE_COMPILE_FLAGS = -O2 -g -DNDEBUG + OBJECT_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + TARGET_PDB = VulkanMemoryAllocator-Hpp-Module.a.dbg + +build Vulkan-Hpp-Module$:RelWithDebInfo: phony CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a + +build VulkanMemoryAllocator-Hpp-Module$:RelWithDebInfo: phony CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + +build libVulkan-Hpp-Module.a$:RelWithDebInfo: phony CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a + +build libVulkanMemoryAllocator-Hpp-Module.a$:RelWithDebInfo: phony CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + +build all$:RelWithDebInfo: phony VulkanMemoryAllocator/all$:RelWithDebInfo CppModule/all$:RelWithDebInfo + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule + +build CppModule/all$:RelWithDebInfo: phony CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator + +build VulkanMemoryAllocator/all$:RelWithDebInfo: phony + + +############################################# +# Clean all the built files. + +build clean$:RelWithDebInfo: CLEAN + FILE_ARG = -f CMakeFiles/impl-RelWithDebInfo.ninja + TARGETS = CMakeFiles/cmake_byproducts_for_clean_target:RelWithDebInfo CMakeFiles/cmake_byproducts_for_clean_target + diff --git a/build/CMakeFiles/impl-Release.ninja b/build/CMakeFiles/impl-Release.ninja new file mode 100644 index 0000000..79080ee --- /dev/null +++ b/build/CMakeFiles/impl-Release.ninja @@ -0,0 +1,170 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains build statements specific to the "Release" +# configuration. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: VulkanMemoryAllocator-Hpp +# Configurations: Debug, Release, RelWithDebInfo +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Release +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include common file. + +include CMakeFiles/common.ninja + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target Vulkan-Hpp-Module + + +############################################# +# Order-only phony target for Vulkan-Hpp-Module + +build cmake_object_order_depends_target_Vulkan-Hpp-Module_RELEASE: phony || . + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.ddi: CXX_SCAN__Vulkan-Hpp-Module_Release /usr/include/vulkan/vulkan.cppm || cmake_object_order_depends_target_Vulkan-Hpp-Module_RELEASE + DEFINES = -DCMAKE_INTDIR=\"Release\" + DEP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.ddi.d + DYNDEP_INTERMEDIATE_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.ddi + FLAGS = -O3 -DNDEBUG -std=gnu++20 + OBJ_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o + PREPROCESSED_OUTPUT_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.ddi.i + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o: CXX_COMPILER__Vulkan-Hpp-Module_scanned_Release /usr/include/vulkan/vulkan.cppm | CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.modmap || cmake_object_order_depends_target_Vulkan-Hpp-Module_RELEASE CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXX.dd + DEFINES = -DCMAKE_INTDIR=\"Release\" + DEP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.d + DYNDEP_MODULE_MAP_FILE = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.modmap + FLAGS = -O3 -DNDEBUG -std=gnu++20 + OBJECT_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release + OBJECT_FILE_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan + dyndep = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXX.dd + +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXX.dd | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXXModules.json CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.modmap: CXX_DYNDEP__Vulkan-Hpp-Module_Release CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o.ddi | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXXDependInfo.json + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target Vulkan-Hpp-Module + + +############################################# +# Link the static library CppModule/Release/libVulkan-Hpp-Module.a + +build CppModule/Release/libVulkan-Hpp-Module.a: CXX_STATIC_LIBRARY_LINKER__Vulkan-Hpp-Module_Release CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o + LANGUAGE_COMPILE_FLAGS = -O3 -DNDEBUG + OBJECT_DIR = CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = CppModule/Release/libVulkan-Hpp-Module.a + TARGET_PDB = Vulkan-Hpp-Module.a.dbg + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target VulkanMemoryAllocator-Hpp-Module + + +############################################# +# Order-only phony target for VulkanMemoryAllocator-Hpp-Module + +build cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_RELEASE: phony || cmake_object_order_depends_target_Vulkan-Hpp-Module_RELEASE + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.ddi: CXX_SCAN__VulkanMemoryAllocator-Hpp-Module_Release /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm || cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_RELEASE + DEFINES = -DVMA_USE_VULKAN_HPP_MODULE=1 -DCMAKE_INTDIR=\"Release\" + DEP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.ddi.d + DYNDEP_INTERMEDIATE_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.ddi + FLAGS = -O3 -DNDEBUG -std=gnu++20 -w + INCLUDES = -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include + OBJ_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o + PREPROCESSED_OUTPUT_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.ddi.i + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o: CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_scanned_Release /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm | CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.modmap || cmake_object_order_depends_target_VulkanMemoryAllocator-Hpp-Module_RELEASE CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXX.dd + DEFINES = -DVMA_USE_VULKAN_HPP_MODULE=1 -DCMAKE_INTDIR=\"Release\" + DEP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.d + DYNDEP_MODULE_MAP_FILE = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.modmap + FLAGS = -O3 -DNDEBUG -std=gnu++20 -w + INCLUDES = -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include -I/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include + OBJECT_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release + OBJECT_FILE_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src + dyndep = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXX.dd + +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXX.dd | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXXModules.json CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.modmap: CXX_DYNDEP__VulkanMemoryAllocator-Hpp-Module_Release CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o.ddi | /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXXDependInfo.json /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXXModules.json + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target VulkanMemoryAllocator-Hpp-Module + + +############################################# +# Link the static library CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + +build CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a: CXX_STATIC_LIBRARY_LINKER__VulkanMemoryAllocator-Hpp-Module_Release CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o || CppModule/Release/libVulkan-Hpp-Module.a + LANGUAGE_COMPILE_FLAGS = -O3 -DNDEBUG + OBJECT_DIR = CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + TARGET_PDB = VulkanMemoryAllocator-Hpp-Module.a.dbg + +build Vulkan-Hpp-Module$:Release: phony CppModule/Release/libVulkan-Hpp-Module.a + +build VulkanMemoryAllocator-Hpp-Module$:Release: phony CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + +build libVulkan-Hpp-Module.a$:Release: phony CppModule/Release/libVulkan-Hpp-Module.a + +build libVulkanMemoryAllocator-Hpp-Module.a$:Release: phony CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + +build all$:Release: phony VulkanMemoryAllocator/all$:Release CppModule/all$:Release + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule + +build CppModule/all$:Release: phony CppModule/Release/libVulkan-Hpp-Module.a CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator + +build VulkanMemoryAllocator/all$:Release: phony + + +############################################# +# Clean all the built files. + +build clean$:Release: CLEAN + FILE_ARG = -f CMakeFiles/impl-Release.ninja + TARGETS = CMakeFiles/cmake_byproducts_for_clean_target:Release CMakeFiles/cmake_byproducts_for_clean_target + diff --git a/build/CMakeFiles/rules.ninja b/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..43c5aad --- /dev/null +++ b/build/CMakeFiles/rules.ninja @@ -0,0 +1,339 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: VulkanMemoryAllocator-Hpp +# Configurations: Debug, Release, RelWithDebInfo +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for generating CXX dependencies. + +rule CXX_SCAN__Vulkan-Hpp-Module_Debug + depfile = $DEP_FILE + command = "/usr/bin/clang-scan-deps" -format=p1689 -- /usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -x c++ $in -c -o $OBJ_FILE -resource-dir "/usr/lib/clang/18" -MT $DYNDEP_INTERMEDIATE_FILE -MD -MF $DEP_FILE > $DYNDEP_INTERMEDIATE_FILE.tmp && mv $DYNDEP_INTERMEDIATE_FILE.tmp $DYNDEP_INTERMEDIATE_FILE + description = Scanning $in for CXX dependencies + + +############################################# +# Rule to generate ninja dyndep files for CXX. + +rule CXX_DYNDEP__Vulkan-Hpp-Module_Debug + command = /usr/bin/cmake -E cmake_ninja_dyndep --tdi=CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXDependInfo.json --lang=CXX --modmapfmt=clang --dd=$out @$out.rsp + description = Generating CXX dyndep file $out + rspfile = $out.rsp + rspfile_content = $in + restat = 1 + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Vulkan-Hpp-Module_scanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE @$DYNDEP_MODULE_MAP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Vulkan-Hpp-Module_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__Vulkan-Hpp-Module_Debug + command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/llvm-ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/llvm-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for generating CXX dependencies. + +rule CXX_SCAN__Vulkan-Hpp-Module_Release + depfile = $DEP_FILE + command = "/usr/bin/clang-scan-deps" -format=p1689 -- /usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -x c++ $in -c -o $OBJ_FILE -resource-dir "/usr/lib/clang/18" -MT $DYNDEP_INTERMEDIATE_FILE -MD -MF $DEP_FILE > $DYNDEP_INTERMEDIATE_FILE.tmp && mv $DYNDEP_INTERMEDIATE_FILE.tmp $DYNDEP_INTERMEDIATE_FILE + description = Scanning $in for CXX dependencies + + +############################################# +# Rule to generate ninja dyndep files for CXX. + +rule CXX_DYNDEP__Vulkan-Hpp-Module_Release + command = /usr/bin/cmake -E cmake_ninja_dyndep --tdi=CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXXDependInfo.json --lang=CXX --modmapfmt=clang --dd=$out @$out.rsp + description = Generating CXX dyndep file $out + rspfile = $out.rsp + rspfile_content = $in + restat = 1 + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Vulkan-Hpp-Module_scanned_Release + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE @$DYNDEP_MODULE_MAP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Vulkan-Hpp-Module_unscanned_Release + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__Vulkan-Hpp-Module_Release + command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/llvm-ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/llvm-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for generating CXX dependencies. + +rule CXX_SCAN__Vulkan-Hpp-Module_RelWithDebInfo + depfile = $DEP_FILE + command = "/usr/bin/clang-scan-deps" -format=p1689 -- /usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -x c++ $in -c -o $OBJ_FILE -resource-dir "/usr/lib/clang/18" -MT $DYNDEP_INTERMEDIATE_FILE -MD -MF $DEP_FILE > $DYNDEP_INTERMEDIATE_FILE.tmp && mv $DYNDEP_INTERMEDIATE_FILE.tmp $DYNDEP_INTERMEDIATE_FILE + description = Scanning $in for CXX dependencies + + +############################################# +# Rule to generate ninja dyndep files for CXX. + +rule CXX_DYNDEP__Vulkan-Hpp-Module_RelWithDebInfo + command = /usr/bin/cmake -E cmake_ninja_dyndep --tdi=CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json --lang=CXX --modmapfmt=clang --dd=$out @$out.rsp + description = Generating CXX dyndep file $out + rspfile = $out.rsp + rspfile_content = $in + restat = 1 + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Vulkan-Hpp-Module_scanned_RelWithDebInfo + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE @$DYNDEP_MODULE_MAP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Vulkan-Hpp-Module_unscanned_RelWithDebInfo + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__Vulkan-Hpp-Module_RelWithDebInfo + command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/llvm-ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/llvm-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for generating CXX dependencies. + +rule CXX_SCAN__VulkanMemoryAllocator-Hpp-Module_Debug + depfile = $DEP_FILE + command = "/usr/bin/clang-scan-deps" -format=p1689 -- /usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -x c++ $in -c -o $OBJ_FILE -resource-dir "/usr/lib/clang/18" -MT $DYNDEP_INTERMEDIATE_FILE -MD -MF $DEP_FILE > $DYNDEP_INTERMEDIATE_FILE.tmp && mv $DYNDEP_INTERMEDIATE_FILE.tmp $DYNDEP_INTERMEDIATE_FILE + description = Scanning $in for CXX dependencies + + +############################################# +# Rule to generate ninja dyndep files for CXX. + +rule CXX_DYNDEP__VulkanMemoryAllocator-Hpp-Module_Debug + command = /usr/bin/cmake -E cmake_ninja_dyndep --tdi=CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXDependInfo.json --lang=CXX --modmapfmt=clang --dd=$out @$out.rsp + description = Generating CXX dyndep file $out + rspfile = $out.rsp + rspfile_content = $in + restat = 1 + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_scanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE @$DYNDEP_MODULE_MAP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__VulkanMemoryAllocator-Hpp-Module_Debug + command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/llvm-ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/llvm-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for generating CXX dependencies. + +rule CXX_SCAN__VulkanMemoryAllocator-Hpp-Module_Release + depfile = $DEP_FILE + command = "/usr/bin/clang-scan-deps" -format=p1689 -- /usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -x c++ $in -c -o $OBJ_FILE -resource-dir "/usr/lib/clang/18" -MT $DYNDEP_INTERMEDIATE_FILE -MD -MF $DEP_FILE > $DYNDEP_INTERMEDIATE_FILE.tmp && mv $DYNDEP_INTERMEDIATE_FILE.tmp $DYNDEP_INTERMEDIATE_FILE + description = Scanning $in for CXX dependencies + + +############################################# +# Rule to generate ninja dyndep files for CXX. + +rule CXX_DYNDEP__VulkanMemoryAllocator-Hpp-Module_Release + command = /usr/bin/cmake -E cmake_ninja_dyndep --tdi=CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXXDependInfo.json --lang=CXX --modmapfmt=clang --dd=$out @$out.rsp + description = Generating CXX dyndep file $out + rspfile = $out.rsp + rspfile_content = $in + restat = 1 + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_scanned_Release + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE @$DYNDEP_MODULE_MAP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_unscanned_Release + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__VulkanMemoryAllocator-Hpp-Module_Release + command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/llvm-ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/llvm-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for generating CXX dependencies. + +rule CXX_SCAN__VulkanMemoryAllocator-Hpp-Module_RelWithDebInfo + depfile = $DEP_FILE + command = "/usr/bin/clang-scan-deps" -format=p1689 -- /usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -x c++ $in -c -o $OBJ_FILE -resource-dir "/usr/lib/clang/18" -MT $DYNDEP_INTERMEDIATE_FILE -MD -MF $DEP_FILE > $DYNDEP_INTERMEDIATE_FILE.tmp && mv $DYNDEP_INTERMEDIATE_FILE.tmp $DYNDEP_INTERMEDIATE_FILE + description = Scanning $in for CXX dependencies + + +############################################# +# Rule to generate ninja dyndep files for CXX. + +rule CXX_DYNDEP__VulkanMemoryAllocator-Hpp-Module_RelWithDebInfo + command = /usr/bin/cmake -E cmake_ninja_dyndep --tdi=CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json --lang=CXX --modmapfmt=clang --dd=$out @$out.rsp + description = Generating CXX dyndep file $out + rspfile = $out.rsp + rspfile_content = $in + restat = 1 + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_scanned_RelWithDebInfo + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE @$DYNDEP_MODULE_MAP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__VulkanMemoryAllocator-Hpp-Module_unscanned_RelWithDebInfo + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/lib/ccache/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__VulkanMemoryAllocator-Hpp-Module_RelWithDebInfo + command = $PRE_LINK && /usr/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/llvm-ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/llvm-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = /usr/bin/cmake --regenerate-during-build -S/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp -B/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = /usr/bin/ninja $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = /usr/bin/ninja -t targets + description = All primary targets available: + diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXX.dd b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXX.dd new file mode 100644 index 0000000..73238d7 --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXX.dd @@ -0,0 +1,4 @@ +ninja_dyndep_version = 1.0 +build CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o | CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm: dyndep + restat = 1 + diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXDependInfo.json b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXDependInfo.json new file mode 100644 index 0000000..6a1e962 --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXDependInfo.json @@ -0,0 +1,30 @@ +{ + "bmi-installation" : null, + "compiler-frontend-variant" : "GNU", + "compiler-id" : "Clang", + "compiler-simulate-id" : "", + "config" : "Debug", + "cxx-modules" : + { + "CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o" : + { + "bmi-only" : false, + "destination" : null, + "name" : "CXX_MODULES", + "relative-directory" : "", + "source" : "/usr/include/vulkan/vulkan.cppm", + "type" : "CXX_MODULES", + "visibility" : "PUBLIC" + } + }, + "dir-cur-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule", + "dir-cur-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule", + "dir-top-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build", + "dir-top-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp", + "exports" : [], + "forward-modules-from-target-dirs" : [], + "include-dirs" : [], + "language" : "CXX", + "linked-target-dirs" : [], + "module-dir" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug" +} \ No newline at end of file diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXModules.json b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXModules.json new file mode 100644 index 0000000..b3ee4b9 --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/CXXModules.json @@ -0,0 +1,19 @@ +{ + "modules" : + { + "vulkan_hpp" : + { + "bmi" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm", + "is-private" : false + } + }, + "references" : + { + "vulkan_hpp" : + { + "lookup-method" : "by-name", + "path" : "CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm" + } + }, + "usages" : {} +} \ No newline at end of file diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o new file mode 100644 index 0000000..efd4e6e Binary files /dev/null and b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o differ diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi new file mode 100644 index 0000000..7fb1d0e --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi @@ -0,0 +1,16 @@ +{ + "revision": 0, + "rules": [ + { + "primary-output": "CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o", + "provides": [ + { + "is-interface": true, + "logical-name": "vulkan_hpp", + "source-path": "/usr/include/vulkan/vulkan.cppm" + } + ] + } + ], + "version": 1 +} diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi.d b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi.d new file mode 100644 index 0000000..8367743 --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi.d @@ -0,0 +1,276 @@ +CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.ddi: \ + /usr/include/vulkan/vulkan.cppm /usr/include/vulkan/vulkan.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/algorithm \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_algobase.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ + /usr/include/stdc-predef.h /usr/include/sys/cdefs.h \ + /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ + /usr/include/gnu/stubs-64.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/pstl/pstl_config.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/functexcept.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/exception_defines.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/cpp_type_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/type_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/numeric_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_pair.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/type_traits \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/version.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/move.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/utility.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/compare \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/concepts \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_iterator_base_types.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/iterator_concepts.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ptr_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_cmp.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_iterator_base_funcs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/concept_check.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/debug/assertions.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_iterator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/new \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/exception.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_construct.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/debug/debug.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/predefined_ops.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bit \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_algo.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/algorithmfwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/initializer_list \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_heap.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/uniform_int_dist.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_tempbuf.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstdlib \ + /usr/include/stdlib.h /usr/include/bits/libc-header-start.h \ + /usr/lib/clang/18/include/stddef.h \ + /usr/lib/clang/18/include/__stddef_size_t.h \ + /usr/lib/clang/18/include/__stddef_wchar_t.h \ + /usr/lib/clang/18/include/__stddef_null.h \ + /usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \ + /usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \ + /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h /usr/include/sys/types.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \ + /usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \ + /usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/struct_mutex.h /usr/include/bits/struct_rwlock.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/std_abs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_algo.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_algobase.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_base.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/max_size_type.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/numbers \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/invoke.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_util.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/pstl/glue_algorithm_defs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/pstl/execution_defs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/array \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/range_access.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/string \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/requires_hosted.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stringfwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/memoryfwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/char_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/postypes.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cwchar \ + /usr/include/wchar.h /usr/lib/clang/18/include/stdarg.h \ + /usr/lib/clang/18/include/__stdarg___gnuc_va_list.h \ + /usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/allocator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/new_allocator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/localefwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/clocale \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/iosfwd \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cctype \ + /usr/include/ctype.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ostream_insert.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/cxxabi_forced.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_function.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward/binders.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/refwrap.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/basic_string.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/alloc_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/alloc_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/string_view \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/functional_hash.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/hash_bytes.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/string_view.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/string_conversions.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstdio \ + /usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__fpos64_t.h \ + /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cerrno \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/charconv.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/basic_string.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/memory_resource.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstddef \ + /usr/lib/clang/18/include/__stddef_ptrdiff_t.h \ + /usr/lib/clang/18/include/__stddef_nullptr_t.h \ + /usr/lib/clang/18/include/__stddef_max_align_t.h \ + /usr/lib/clang/18/include/__stddef_offsetof.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/uses_allocator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/uses_allocator_args.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/tuple \ + /usr/include/vulkan/vulkan.h /usr/include/vulkan/vk_platform.h \ + /usr/lib/clang/18/include/stdint.h /usr/include/stdint.h \ + /usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \ + /usr/include/vulkan/vulkan_core.h \ + /usr/include/vk_video/vulkan_video_codec_h264std.h \ + /usr/include/vk_video/vulkan_video_codecs_common.h \ + /usr/include/vk_video/vulkan_video_codec_h264std_encode.h \ + /usr/include/vk_video/vulkan_video_codec_h265std.h \ + /usr/include/vk_video/vulkan_video_codec_h265std_encode.h \ + /usr/include/vk_video/vulkan_video_codec_h264std_decode.h \ + /usr/include/vk_video/vulkan_video_codec_h265std_decode.h \ + /usr/include/vk_video/vulkan_video_codec_av1std.h \ + /usr/include/vk_video/vulkan_video_codec_av1std_decode.h \ + /usr/include/vulkan/vulkan_hpp_macros.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/version \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/vector \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_uninitialized.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_vector.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_bvector.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/vector.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/system_error \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/stdexcept \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/exception \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/exception_ptr.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/cxxabi_init_exception.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/typeinfo \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/nested_exception.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cassert \ + /usr/include/assert.h /usr/include/dlfcn.h /usr/include/bits/dlfcn.h \ + /usr/include/bits/dl_find_object.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/span \ + /usr/include/vulkan/vulkan_enums.hpp \ + /usr/include/vulkan/vulkan_to_string.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/format \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/charconv \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/limits \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/locale \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/locale_classes.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/atomicity.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/cpu-set.h /usr/include/time.h \ + /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/locale_classes.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/locale_facets.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cwctype \ + /usr/include/wctype.h /usr/include/bits/wctype-wchar.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/ctype_base.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ios_base.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/streambuf \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/streambuf.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/streambuf_iterator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/ctype_inline.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/locale_facets.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/locale_facets_nonio.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ctime \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/time_members.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/messages_members.h \ + /usr/include/libintl.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/codecvt.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/locale_facets_nonio.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/locale_conv.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/optional \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/enable_special_members.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/variant \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/parse_numbers.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/aligned_buffer.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/unicode.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstdint \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/unicode-data.h \ + /usr/include/vulkan/vulkan_handles.hpp \ + /usr/include/vulkan/vulkan_structs.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstring \ + /usr/include/vulkan/vulkan_funcs.hpp \ + /usr/include/vulkan/vulkan_extension_inspection.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/map \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_tree.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/node_handle.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_map.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_multimap.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/erase_if.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/set \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_set.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_multiset.h \ + /usr/include/vulkan/vulkan_format_traits.hpp \ + /usr/include/vulkan/vulkan_hash.hpp \ + /usr/include/vulkan/vulkan_raii.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/memory \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_raw_storage_iter.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/align.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/unique_ptr.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ostream \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ios \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/basic_ios.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/basic_ios.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ostream.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/shared_ptr.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/shared_ptr_base.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/allocated_ptr.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/concurrence.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/shared_ptr_atomic.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/atomic_base.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/atomic_lockfree_defines.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/atomic_wait.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/climits \ + /usr/lib/clang/18/include/limits.h /usr/include/limits.h \ + /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \ + /usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \ + /usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/bits/getopt_posix.h /usr/include/bits/getopt_core.h \ + /usr/include/bits/unistd_ext.h /usr/include/linux/close_range.h \ + /usr/include/syscall.h /usr/include/sys/syscall.h \ + /usr/include/asm/unistd.h /usr/include/asm/unistd_64.h \ + /usr/include/bits/syscall.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/std_mutex.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward/auto_ptr.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_uninitialized.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/pstl/glue_memory_defs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/utility \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_relops.h \ + /usr/include/vulkan/vulkan_shared.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/atomic diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.modmap b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.modmap new file mode 100644 index 0000000..52c42ee --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/usr/include/vulkan/vulkan.cppm.o.modmap @@ -0,0 +1,2 @@ +-x c++-module +-fmodule-output=CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm new file mode 100644 index 0000000..b87f985 Binary files /dev/null and b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm differ diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json new file mode 100644 index 0000000..23a4762 --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json @@ -0,0 +1,30 @@ +{ + "bmi-installation" : null, + "compiler-frontend-variant" : "GNU", + "compiler-id" : "Clang", + "compiler-simulate-id" : "", + "config" : "RelWithDebInfo", + "cxx-modules" : + { + "CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo/usr/include/vulkan/vulkan.cppm.o" : + { + "bmi-only" : false, + "destination" : null, + "name" : "CXX_MODULES", + "relative-directory" : "", + "source" : "/usr/include/vulkan/vulkan.cppm", + "type" : "CXX_MODULES", + "visibility" : "PUBLIC" + } + }, + "dir-cur-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule", + "dir-cur-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule", + "dir-top-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build", + "dir-top-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp", + "exports" : [], + "forward-modules-from-target-dirs" : [], + "include-dirs" : [], + "language" : "CXX", + "linked-target-dirs" : [], + "module-dir" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo" +} \ No newline at end of file diff --git a/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXXDependInfo.json b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXXDependInfo.json new file mode 100644 index 0000000..f235ad0 --- /dev/null +++ b/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/CXXDependInfo.json @@ -0,0 +1,30 @@ +{ + "bmi-installation" : null, + "compiler-frontend-variant" : "GNU", + "compiler-id" : "Clang", + "compiler-simulate-id" : "", + "config" : "Release", + "cxx-modules" : + { + "CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release/usr/include/vulkan/vulkan.cppm.o" : + { + "bmi-only" : false, + "destination" : null, + "name" : "CXX_MODULES", + "relative-directory" : "", + "source" : "/usr/include/vulkan/vulkan.cppm", + "type" : "CXX_MODULES", + "visibility" : "PUBLIC" + } + }, + "dir-cur-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule", + "dir-cur-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule", + "dir-top-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build", + "dir-top-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp", + "exports" : [], + "forward-modules-from-target-dirs" : [], + "include-dirs" : [], + "language" : "CXX", + "linked-target-dirs" : [], + "module-dir" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release" +} \ No newline at end of file diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXX.dd b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXX.dd new file mode 100644 index 0000000..9d1ccf6 --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXX.dd @@ -0,0 +1,4 @@ +ninja_dyndep_version = 1.0 +build CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o | CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/vk_mem_alloc_hpp.pcm: dyndep | CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm + restat = 1 + diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXDependInfo.json b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXDependInfo.json new file mode 100644 index 0000000..ad438d4 --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXDependInfo.json @@ -0,0 +1,37 @@ +{ + "bmi-installation" : null, + "compiler-frontend-variant" : "GNU", + "compiler-id" : "Clang", + "compiler-simulate-id" : "", + "config" : "Debug", + "cxx-modules" : + { + "CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o" : + { + "bmi-only" : false, + "destination" : null, + "name" : "CXX_MODULES", + "relative-directory" : "", + "source" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm", + "type" : "CXX_MODULES", + "visibility" : "PUBLIC" + } + }, + "dir-cur-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule", + "dir-cur-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule", + "dir-top-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build", + "dir-top-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp", + "exports" : [], + "forward-modules-from-target-dirs" : [], + "include-dirs" : + [ + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include", + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include" + ], + "language" : "CXX", + "linked-target-dirs" : + [ + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug" + ], + "module-dir" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug" +} \ No newline at end of file diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXModules.json b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXModules.json new file mode 100644 index 0000000..0996d64 --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/CXXModules.json @@ -0,0 +1,30 @@ +{ + "modules" : + { + "vk_mem_alloc_hpp" : + { + "bmi" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/vk_mem_alloc_hpp.pcm", + "is-private" : false + } + }, + "references" : + { + "vk_mem_alloc_hpp" : + { + "lookup-method" : "by-name", + "path" : "CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/vk_mem_alloc_hpp.pcm" + }, + "vulkan_hpp" : + { + "lookup-method" : "by-name", + "path" : "CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm" + } + }, + "usages" : + { + "vk_mem_alloc_hpp" : + [ + "vulkan_hpp" + ] + } +} \ No newline at end of file diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o new file mode 100644 index 0000000..bc05cd8 Binary files /dev/null and b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o differ diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi new file mode 100644 index 0000000..4c3a836 --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi @@ -0,0 +1,21 @@ +{ + "revision": 0, + "rules": [ + { + "primary-output": "CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o", + "provides": [ + { + "is-interface": true, + "logical-name": "vk_mem_alloc_hpp", + "source-path": "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm" + } + ], + "requires": [ + { + "logical-name": "vulkan_hpp" + } + ] + } + ], + "version": 1 +} diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi.d b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi.d new file mode 100644 index 0000000..d971cd6 --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi.d @@ -0,0 +1,212 @@ +CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.ddi: \ + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm \ + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include/vk_mem_alloc.h \ + /usr/include/vulkan/vulkan.h /usr/include/vulkan/vk_platform.h \ + /usr/lib/clang/18/include/stddef.h \ + /usr/lib/clang/18/include/__stddef_ptrdiff_t.h \ + /usr/lib/clang/18/include/__stddef_size_t.h \ + /usr/lib/clang/18/include/__stddef_wchar_t.h \ + /usr/lib/clang/18/include/__stddef_null.h \ + /usr/lib/clang/18/include/__stddef_nullptr_t.h \ + /usr/lib/clang/18/include/__stddef_max_align_t.h \ + /usr/lib/clang/18/include/__stddef_offsetof.h \ + /usr/lib/clang/18/include/stdint.h /usr/include/stdint.h \ + /usr/include/bits/libc-header-start.h /usr/include/features.h \ + /usr/include/features-time64.h /usr/include/bits/wordsize.h \ + /usr/include/bits/timesize.h /usr/include/stdc-predef.h \ + /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ + /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ + /usr/include/bits/types.h /usr/include/bits/typesizes.h \ + /usr/include/bits/time64.h /usr/include/bits/wchar.h \ + /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ + /usr/include/bits/stdint-least.h /usr/include/vulkan/vulkan_core.h \ + /usr/include/vk_video/vulkan_video_codec_h264std.h \ + /usr/include/vk_video/vulkan_video_codecs_common.h \ + /usr/include/vk_video/vulkan_video_codec_h264std_encode.h \ + /usr/include/vk_video/vulkan_video_codec_h265std.h \ + /usr/include/vk_video/vulkan_video_codec_h265std_encode.h \ + /usr/include/vk_video/vulkan_video_codec_h264std_decode.h \ + /usr/include/vk_video/vulkan_video_codec_h265std_decode.h \ + /usr/include/vk_video/vulkan_video_codec_av1std.h \ + /usr/include/vk_video/vulkan_video_codec_av1std_decode.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstdint \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++config.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/os_defines.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/pstl/pstl_config.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstdlib \ + /usr/include/stdlib.h /usr/include/bits/waitflags.h \ + /usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \ + /usr/include/bits/floatn-common.h /usr/include/bits/types/locale_t.h \ + /usr/include/bits/types/__locale_t.h /usr/include/sys/types.h \ + /usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \ + /usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \ + /usr/include/endian.h /usr/include/bits/endian.h \ + /usr/include/bits/endianness.h /usr/include/bits/byteswap.h \ + /usr/include/bits/uintn-identity.h /usr/include/sys/select.h \ + /usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \ + /usr/include/bits/types/__sigset_t.h \ + /usr/include/bits/types/struct_timeval.h \ + /usr/include/bits/types/struct_timespec.h \ + /usr/include/bits/pthreadtypes.h \ + /usr/include/bits/thread-shared-types.h \ + /usr/include/bits/pthreadtypes-arch.h \ + /usr/include/bits/atomic_wide_counter.h \ + /usr/include/bits/struct_mutex.h /usr/include/bits/struct_rwlock.h \ + /usr/include/alloca.h /usr/include/bits/stdlib-float.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/std_abs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstring \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/version.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cinttypes \ + /usr/lib/clang/18/include/inttypes.h /usr/include/inttypes.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/utility \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_relops.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_pair.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/type_traits \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/move.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/utility.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/compare \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/concepts \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/initializer_list \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/numeric_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/cpp_type_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/type_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bit \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstdio \ + /usr/include/stdio.h /usr/lib/clang/18/include/stdarg.h \ + /usr/lib/clang/18/include/__stdarg___gnuc_va_list.h \ + /usr/include/bits/types/__fpos_t.h \ + /usr/include/bits/types/__mbstate_t.h \ + /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ + /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ + /usr/include/bits/types/cookie_io_functions_t.h \ + /usr/include/bits/stdio_lim.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cassert \ + /usr/include/assert.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/algorithm \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_algobase.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/functexcept.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/exception_defines.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_iterator_base_types.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/iterator_concepts.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ptr_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_cmp.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_iterator_base_funcs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/concept_check.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/debug/assertions.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_iterator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/new \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/exception.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_construct.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/debug/debug.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/predefined_ops.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_algo.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/algorithmfwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_heap.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/uniform_int_dist.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_tempbuf.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_algo.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_algobase.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_base.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/max_size_type.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/numbers \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/invoke.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ranges_util.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/pstl/glue_algorithm_defs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/pstl/execution_defs.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/mutex \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/requires_hosted.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/tuple \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/uses_allocator.h \ + /usr/include/errno.h /usr/include/bits/errno.h \ + /usr/include/linux/errno.h /usr/include/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/bits/types/error_t.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/chrono.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ratio \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/limits \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ctime \ + /usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \ + /usr/include/bits/types/struct_tm.h \ + /usr/include/bits/types/struct_itimerspec.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/parse_numbers.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/std_mutex.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/gthr.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \ + /usr/include/bits/types/struct_sched_param.h \ + /usr/include/bits/cpu-set.h /usr/include/bits/setjmp.h \ + /usr/include/bits/types/struct___jmp_buf_tag.h \ + /usr/include/bits/pthread_stack_min-dynamic.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/unique_lock.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/error_constants.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cerrno \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/atomicity.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/atomic_word.h \ + /usr/include/sys/single_threaded.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/shared_mutex \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/atomic \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/atomic_base.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/atomic_lockfree_defines.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/atomic_wait.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/functional_hash.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/hash_bytes.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/climits \ + /usr/lib/clang/18/include/limits.h /usr/include/limits.h \ + /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \ + /usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \ + /usr/include/bits/xopen_lim.h /usr/include/bits/uio_lim.h \ + /usr/include/unistd.h /usr/include/bits/posix_opt.h \ + /usr/include/bits/environments.h /usr/include/bits/confname.h \ + /usr/include/bits/getopt_posix.h /usr/include/bits/getopt_core.h \ + /usr/include/bits/unistd_ext.h /usr/include/linux/close_range.h \ + /usr/include/syscall.h /usr/include/sys/syscall.h \ + /usr/include/asm/unistd.h /usr/include/asm/unistd_64.h \ + /usr/include/bits/syscall.h /usr/include/vulkan/vulkan_hpp_macros.hpp \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/version \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/string \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stringfwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/memoryfwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/char_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/postypes.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cwchar \ + /usr/include/wchar.h /usr/include/bits/types/wint_t.h \ + /usr/include/bits/types/mbstate_t.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/allocator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++allocator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/new_allocator.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/localefwd.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/x86_64-pc-linux-gnu/bits/c++locale.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/clocale \ + /usr/include/locale.h /usr/include/bits/locale.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/iosfwd \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cctype \ + /usr/include/ctype.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/ostream_insert.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/cxxabi_forced.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_function.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/backward/binders.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/refwrap.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/range_access.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/basic_string.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/alloc_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/alloc_traits.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/string_view \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/string_view.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/ext/string_conversions.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/charconv.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/basic_string.tcc \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/memory_resource.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/cstddef \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/uses_allocator_args.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/vector \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_uninitialized.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_vector.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/stl_bvector.h \ + /usr/lib64/gcc/x86_64-pc-linux-gnu/14.1.1/../../../../include/c++/14.1.1/bits/vector.tcc \ + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc.hpp \ + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_enums.hpp \ + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_handles.hpp \ + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_structs.hpp \ + /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_funcs.hpp diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.modmap b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.modmap new file mode 100644 index 0000000..b6cbdbf --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/__/src/vk_mem_alloc.cppm.o.modmap @@ -0,0 +1,3 @@ +-x c++-module +-fmodule-output=CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Debug/vk_mem_alloc_hpp.pcm +-fmodule-file=vulkan_hpp=CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Debug/vulkan_hpp.pcm diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json new file mode 100644 index 0000000..bf7b53c --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/CXXDependInfo.json @@ -0,0 +1,37 @@ +{ + "bmi-installation" : null, + "compiler-frontend-variant" : "GNU", + "compiler-id" : "Clang", + "compiler-simulate-id" : "", + "config" : "RelWithDebInfo", + "cxx-modules" : + { + "CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo/__/src/vk_mem_alloc.cppm.o" : + { + "bmi-only" : false, + "destination" : null, + "name" : "CXX_MODULES", + "relative-directory" : "", + "source" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm", + "type" : "CXX_MODULES", + "visibility" : "PUBLIC" + } + }, + "dir-cur-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule", + "dir-cur-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule", + "dir-top-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build", + "dir-top-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp", + "exports" : [], + "forward-modules-from-target-dirs" : [], + "include-dirs" : + [ + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include", + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include" + ], + "language" : "CXX", + "linked-target-dirs" : + [ + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/RelWithDebInfo" + ], + "module-dir" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/RelWithDebInfo" +} \ No newline at end of file diff --git a/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXXDependInfo.json b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXXDependInfo.json new file mode 100644 index 0000000..25f6a92 --- /dev/null +++ b/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/CXXDependInfo.json @@ -0,0 +1,37 @@ +{ + "bmi-installation" : null, + "compiler-frontend-variant" : "GNU", + "compiler-id" : "Clang", + "compiler-simulate-id" : "", + "config" : "Release", + "cxx-modules" : + { + "CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release/__/src/vk_mem_alloc.cppm.o" : + { + "bmi-only" : false, + "destination" : null, + "name" : "CXX_MODULES", + "relative-directory" : "", + "source" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/src/vk_mem_alloc.cppm", + "type" : "CXX_MODULES", + "visibility" : "PUBLIC" + } + }, + "dir-cur-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule", + "dir-cur-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule", + "dir-top-bld" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build", + "dir-top-src" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp", + "exports" : [], + "forward-modules-from-target-dirs" : [], + "include-dirs" : + [ + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include", + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator/include" + ], + "language" : "CXX", + "linked-target-dirs" : + [ + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/Vulkan-Hpp-Module.dir/Release" + ], + "module-dir" : "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/CMakeFiles/VulkanMemoryAllocator-Hpp-Module.dir/Release" +} \ No newline at end of file diff --git a/build/CppModule/Debug/libVulkan-Hpp-Module.a b/build/CppModule/Debug/libVulkan-Hpp-Module.a new file mode 100644 index 0000000..156f823 Binary files /dev/null and b/build/CppModule/Debug/libVulkan-Hpp-Module.a differ diff --git a/build/CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a b/build/CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a new file mode 100644 index 0000000..53a8f94 Binary files /dev/null and b/build/CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a differ diff --git a/build/CppModule/cmake_install.cmake b/build/CppModule/cmake_install.cmake new file mode 100644 index 0000000..97eda43 --- /dev/null +++ b/build/CppModule/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/CppModule + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/llvm-objdump") +endif() + diff --git a/build/VulkanMemoryAllocator/cmake_install.cmake b/build/VulkanMemoryAllocator/cmake_install.cmake new file mode 100644 index 0000000..dacddfb --- /dev/null +++ b/build/VulkanMemoryAllocator/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/VulkanMemoryAllocator + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/llvm-objdump") +endif() + diff --git a/build/build-Debug.ninja b/build/build-Debug.ninja new file mode 100644 index 0000000..a1011c0 --- /dev/null +++ b/build/build-Debug.ninja @@ -0,0 +1,59 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains aliases specific to the "Debug" +# configuration. + +include CMakeFiles/impl-Debug.ninja + +build install: phony install$:Debug + +build install/local: phony install/local$:Debug + +build install/strip: phony install/strip$:Debug + +build VulkanMemoryAllocator/install: phony VulkanMemoryAllocator/install$:Debug + +build VulkanMemoryAllocator/install/local: phony VulkanMemoryAllocator/install/local$:Debug + +build VulkanMemoryAllocator/install/strip: phony VulkanMemoryAllocator/install/strip$:Debug + +build CppModule/install: phony CppModule/install$:Debug + +build CppModule/install/local: phony CppModule/install/local$:Debug + +build CppModule/install/strip: phony CppModule/install/strip$:Debug + +build Vulkan-Hpp-Module: phony CppModule/Debug/libVulkan-Hpp-Module.a + +build VulkanMemoryAllocator-Hpp-Module: phony CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + +build libVulkan-Hpp-Module.a: phony CppModule/Debug/libVulkan-Hpp-Module.a + +build libVulkanMemoryAllocator-Hpp-Module.a: phony CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + +build all: phony all$:Debug + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule + +build CppModule/all: phony CppModule/all$:Debug + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator + +build VulkanMemoryAllocator/all: phony VulkanMemoryAllocator/all$:Debug + +build clean: phony clean$:Debug + + +############################################# +# Make the all target the default. + +default all diff --git a/build/build-RelWithDebInfo.ninja b/build/build-RelWithDebInfo.ninja new file mode 100644 index 0000000..083023b --- /dev/null +++ b/build/build-RelWithDebInfo.ninja @@ -0,0 +1,59 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains aliases specific to the "RelWithDebInfo" +# configuration. + +include CMakeFiles/impl-RelWithDebInfo.ninja + +build install: phony install$:RelWithDebInfo + +build install/local: phony install/local$:RelWithDebInfo + +build install/strip: phony install/strip$:RelWithDebInfo + +build VulkanMemoryAllocator/install: phony VulkanMemoryAllocator/install$:RelWithDebInfo + +build VulkanMemoryAllocator/install/local: phony VulkanMemoryAllocator/install/local$:RelWithDebInfo + +build VulkanMemoryAllocator/install/strip: phony VulkanMemoryAllocator/install/strip$:RelWithDebInfo + +build CppModule/install: phony CppModule/install$:RelWithDebInfo + +build CppModule/install/local: phony CppModule/install/local$:RelWithDebInfo + +build CppModule/install/strip: phony CppModule/install/strip$:RelWithDebInfo + +build Vulkan-Hpp-Module: phony CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a + +build VulkanMemoryAllocator-Hpp-Module: phony CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + +build libVulkan-Hpp-Module.a: phony CppModule/RelWithDebInfo/libVulkan-Hpp-Module.a + +build libVulkanMemoryAllocator-Hpp-Module.a: phony CppModule/RelWithDebInfo/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + +build all: phony all$:RelWithDebInfo + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule + +build CppModule/all: phony CppModule/all$:RelWithDebInfo + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator + +build VulkanMemoryAllocator/all: phony VulkanMemoryAllocator/all$:RelWithDebInfo + +build clean: phony clean$:RelWithDebInfo + + +############################################# +# Make the all target the default. + +default all diff --git a/build/build-Release.ninja b/build/build-Release.ninja new file mode 100644 index 0000000..afa9fdc --- /dev/null +++ b/build/build-Release.ninja @@ -0,0 +1,59 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# This file contains aliases specific to the "Release" +# configuration. + +include CMakeFiles/impl-Release.ninja + +build install: phony install$:Release + +build install/local: phony install/local$:Release + +build install/strip: phony install/strip$:Release + +build VulkanMemoryAllocator/install: phony VulkanMemoryAllocator/install$:Release + +build VulkanMemoryAllocator/install/local: phony VulkanMemoryAllocator/install/local$:Release + +build VulkanMemoryAllocator/install/strip: phony VulkanMemoryAllocator/install/strip$:Release + +build CppModule/install: phony CppModule/install$:Release + +build CppModule/install/local: phony CppModule/install/local$:Release + +build CppModule/install/strip: phony CppModule/install/strip$:Release + +build Vulkan-Hpp-Module: phony CppModule/Release/libVulkan-Hpp-Module.a + +build VulkanMemoryAllocator-Hpp-Module: phony CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + +build libVulkan-Hpp-Module.a: phony CppModule/Release/libVulkan-Hpp-Module.a + +build libVulkanMemoryAllocator-Hpp-Module.a: phony CppModule/Release/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + +build all: phony all$:Release + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule + +build CppModule/all: phony CppModule/all$:Release + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator + +build VulkanMemoryAllocator/all: phony VulkanMemoryAllocator/all$:Release + +build clean: phony clean$:Release + + +############################################# +# Make the all target the default. + +default all diff --git a/build/build.ninja b/build/build.ninja new file mode 100644 index 0000000..97150b2 --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,76 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja Multi-Config" Generator, CMake Version 3.30 + +# Build using rules for 'Debug'. + +include CMakeFiles/impl-Debug.ninja + +build install: phony install$:Debug + +build install$:all: phony install$:Debug install$:Release install$:RelWithDebInfo + +build install/local: phony install/local$:Debug + +build install/local$:all: phony install/local$:Debug install/local$:Release install/local$:RelWithDebInfo + +build install/strip: phony install/strip$:Debug + +build install/strip$:all: phony install/strip$:Debug install/strip$:Release install/strip$:RelWithDebInfo + +build VulkanMemoryAllocator/install: phony VulkanMemoryAllocator/install$:Debug + +build VulkanMemoryAllocator/install$:all: phony VulkanMemoryAllocator/install$:Debug VulkanMemoryAllocator/install$:Release VulkanMemoryAllocator/install$:RelWithDebInfo + +build VulkanMemoryAllocator/install/local: phony VulkanMemoryAllocator/install/local$:Debug + +build VulkanMemoryAllocator/install/local$:all: phony VulkanMemoryAllocator/install/local$:Debug VulkanMemoryAllocator/install/local$:Release VulkanMemoryAllocator/install/local$:RelWithDebInfo + +build VulkanMemoryAllocator/install/strip: phony VulkanMemoryAllocator/install/strip$:Debug + +build VulkanMemoryAllocator/install/strip$:all: phony VulkanMemoryAllocator/install/strip$:Debug VulkanMemoryAllocator/install/strip$:Release VulkanMemoryAllocator/install/strip$:RelWithDebInfo + +build CppModule/install: phony CppModule/install$:Debug + +build CppModule/install$:all: phony CppModule/install$:Debug CppModule/install$:Release CppModule/install$:RelWithDebInfo + +build CppModule/install/local: phony CppModule/install/local$:Debug + +build CppModule/install/local$:all: phony CppModule/install/local$:Debug CppModule/install/local$:Release CppModule/install/local$:RelWithDebInfo + +build CppModule/install/strip: phony CppModule/install/strip$:Debug + +build CppModule/install/strip$:all: phony CppModule/install/strip$:Debug CppModule/install/strip$:Release CppModule/install/strip$:RelWithDebInfo + +build Vulkan-Hpp-Module: phony CppModule/Debug/libVulkan-Hpp-Module.a + +build VulkanMemoryAllocator-Hpp-Module: phony CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + +build libVulkan-Hpp-Module.a: phony CppModule/Debug/libVulkan-Hpp-Module.a + +build libVulkanMemoryAllocator-Hpp-Module.a: phony CppModule/Debug/libVulkanMemoryAllocator-Hpp-Module.a + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build + +build all: phony all$:Debug + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule + +build CppModule/all: phony CppModule/all$:Debug + + +############################################# +# Folder: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator + +build VulkanMemoryAllocator/all: phony VulkanMemoryAllocator/all$:Debug + +build clean: phony clean$:Debug + + +############################################# +# Make the all target the default. + +default all diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..6dfba3c --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,83 @@ +# Install script for directory: /home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/llvm-objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE FILE FILES + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_enums.hpp" + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_funcs.hpp" + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_handles.hpp" + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc_structs.hpp" + "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/include/vk_mem_alloc.hpp" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/VulkanMemoryAllocator-Hpp" TYPE FILE FILES "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/cmake/VulkanMemoryAllocator-HppConfig.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/VulkanMemoryAllocator/cmake_install.cmake") + include("/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/CppModule/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") + file(WRITE "/home/kuba/Desktop/gitproj/VulkanMemoryAllocator-Hpp/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/src/vk_mem_alloc.cppm b/src/vk_mem_alloc.cppm index bb936cd..eb2a144 100644 --- a/src/vk_mem_alloc.cppm +++ b/src/vk_mem_alloc.cppm @@ -6,12 +6,23 @@ module; #define VMA_USE_VULKAN_HPP_MODULE 0 #endif +#ifndef VMA_USE_STD_MODULE +#define VMA_USE_STD_MODULE 0 +#endif + #define VMA_IMPLEMENTATION #include -#if !VMA_USE_VULKAN_HPP_MODULE +#if VMA_USE_VULKAN_HPP_MODULE +#include +#else #include -#endif // !VMA_USE_VULKAN_HPP_MODULE +#endif + +#if !VMA_USE_STD_MODULE +#include +#include +#endif export module vk_mem_alloc_hpp; @@ -19,6 +30,10 @@ export module vk_mem_alloc_hpp; import vulkan_hpp; #endif +#if VMA_USE_STD_MODULE +import std.compat; +#endif + #include "vk_mem_alloc.hpp"