From 14d53ec335d752dde04dbfd1b05867f7a961e0ac Mon Sep 17 00:00:00 2001 From: kosakseb Date: Mon, 4 Dec 2023 13:37:10 +0100 Subject: [PATCH 01/67] added basic simde cmake compile --- CMakeLists.txt | 178 ++++++++++++++++++--------------- CMakeLists.txt.in | 15 --- cmake_modules/googletest.cmake | 74 ++++++++++++++ cmake_modules/simde.cmake | 13 +++ headers/VarIntG8IU.h | 12 +-- headers/horizontalbitpacking.h | 8 +- src/streamvbyte.c | 3 +- src/varintdecode.c | 3 +- 8 files changed, 197 insertions(+), 109 deletions(-) delete mode 100644 CMakeLists.txt.in create mode 100644 cmake_modules/googletest.cmake create mode 100644 cmake_modules/simde.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 118fc00..132514b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ # # Copyright (c) 2012 Louis Dionne # -cmake_minimum_required(VERSION 3.0) -set (CMAKE_CXX_STANDARD 11) # for constexpr specifier and other goodies +cmake_minimum_required(VERSION 3.7) +set (CMAKE_CXX_STANDARD 17) # for constexpr specifier and other goodies if (NOT CMAKE_BUILD_TYPE) message(STATUS "No build type selected, default to Release") @@ -23,7 +23,8 @@ set(PROJECT_DESCRIPTION "The FastPFOR C++ library: Fast integer compression") set(PROJECT_VERSION "0.1.9") include(DetectCPUFeatures) -# +include(CheckCXXCompilerFlag) + # Runs compiler with "-dumpversion" and parses major/minor # version with a regex. # @@ -54,57 +55,105 @@ endif() MESSAGE( STATUS "CMAKE_CXX_COMPILER_ID: " ${CMAKE_CXX_COMPILER_ID} ) MESSAGE( STATUS "CMAKE_C_COMPILER: " ${CMAKE_C_COMPILER} ) MESSAGE( STATUS "CXX_COMPILER_VERSION: " ${CXX_COMPILER_VERSION} ) -if( SUPPORT_SSE42 ) - MESSAGE( STATUS "SSE 4.2 support detected" ) -else() - MESSAGE( STATUS "SSE 4.2 support not detected" ) -endif() -if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") - # require at least gcc 4.7 - if (CXX_COMPILER_VERSION VERSION_LESS 4.7) - message(STATUS "GCC version must be at least 4.7!") +# here we divide into x86 or arm + +if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64") + if( SUPPORT_SSE42 ) + MESSAGE( STATUS "SSE 4.2 support detected" ) + else() + MESSAGE( STATUS "SSE 4.2 support not detected" ) endif() - # Uncomment the following lines to see how the code compiles without AVX,SSE4.2 and/or SSE2 - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=x86-64") - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=core2") - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.2") - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c99 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native") -elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Intel") - if (CXX_COMPILER_VERSION VERSION_LESS 14.0.1) - message(STATUS "Intel version must be at least 14.0.1!") + + if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") + # require at least gcc 4.7 + if (CXX_COMPILER_VERSION VERSION_LESS 4.7) + message(STATUS "GCC version must be at least 4.7!") + endif() + # Uncomment the following lines to see how the code compiles without AVX,SSE4.2 and/or SSE2 + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=x86-64") + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=core2") + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.2") + set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c99 -march=native") + set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native") + elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Intel") + if (CXX_COMPILER_VERSION VERSION_LESS 14.0.1) + message(STATUS "Intel version must be at least 14.0.1!") + endif() + set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_CXX_FLAGS_DEBUG "-Wall -ggdb -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_C_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c99 -march=native") + set (CMAKE_C_FLAGS_DEBUG "-Wall -ggdb -std=c99 -march=native") + elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") + if (CXX_COMPILER_VERSION VERSION_LESS 4.2.1) + message(STATUS "Clang version must be at least 4.2.1!" ) + endif() + set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") + set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") + set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c99 -msse4.1 -march=native") + set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c99 -msse4.1 -march=native") + elseif(WIN32) + # TODO add support for later versions? + if(NOT MSVC12) + message(STATUS "On Windows, only MSVC version 12 is supported!") + endif() + else () + message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") endif() - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -ggdb -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c99 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -ggdb -std=c99 -march=native") -elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") - if (CXX_COMPILER_VERSION VERSION_LESS 4.2.1) - message(STATUS "Clang version must be at least 4.2.1!" ) +elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "arm") + CHECK_CXX_COMPILER_FLAG("-mfpu=neon" COMPILER_SUPPORTS_NEON) + + if( COMPILER_SUPPORTS_NEON ) + MESSAGE( STATUS "Neon support detected" ) + else() + MESSAGE(FATAL_ERROR "Neon support not detected" ) endif() - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c99 -msse4.1 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c99 -msse4.1 -march=native") -elseif(WIN32) - # TODO add support for later versions? - if(NOT MSVC12) - message(STATUS "On Windows, only MSVC version 12 is supported!") + + # we have to install simde + # for arm otherwise the library is not usable + + include("${CMAKE_MODULE_PATH}/simde.cmake") + + if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") + # require at least gcc 4.7 + if (CXX_COMPILER_VERSION VERSION_LESS 4.7) + message(STATUS "GCC version must be at least 4.7!") + endif() + # Uncomment the following lines to see how the code compiles without AVX,SSE4.2 and/or SSE2 + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=x86-64") + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=core2") + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.2") + set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c99 -march=native") + set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native") + elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Intel") + if (CXX_COMPILER_VERSION VERSION_LESS 14.0.1) + message(STATUS "Intel version must be at least 14.0.1!") + endif() + set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_CXX_FLAGS_DEBUG "-Wall -ggdb -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_C_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c99 -march=native") + set (CMAKE_C_FLAGS_DEBUG "-Wall -ggdb -std=c99 -march=native") + elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") + if (CXX_COMPILER_VERSION VERSION_LESS 4.2.1) + message(STATUS "Clang version must be at least 4.2.1!" ) + endif() + set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c++11 -DHAVE_CXX0X-march=native") + set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c++11 -DHAVE_CXX0X -march=native") + set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c99-march=native") + set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c99 -march=native") + elseif(WIN32) + message(FATAL_ERROR "Please, use Linux or MacOS!") + else () + message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") endif() -else () - message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") +else() + message(FATAL_ERROR "Please, x86 or arm!") endif() -MESSAGE( STATUS "CMAKE_CXX_FLAGS_DEBUG: " ${CMAKE_CXX_FLAGS_DEBUG} ) -MESSAGE( STATUS "CMAKE_CXX_FLAGS_RELEASE: " ${CMAKE_CXX_FLAGS_RELEASE} ) -MESSAGE( STATUS "CMAKE_C_FLAGS_DEBUG: " ${CMAKE_C_FLAGS_DEBUG} ) -MESSAGE( STATUS "CMAKE_C_FLAGS_RELEASE: " ${CMAKE_C_FLAGS_RELEASE} ) - - - # library target include_directories(headers) @@ -151,39 +200,7 @@ else() target_link_libraries(inmemorybenchmarksnappy FastPFOR ${snappy_LIBRARIES}) endif() -# Download and unpack googletest at configure time -configure_file(CMakeLists.txt.in googletest-download/CMakeLists.txt) -execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" . - RESULT_VARIABLE result - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download ) -if(result) - message(FATAL_ERROR "CMake step for googletest failed: ${result}") -endif() -execute_process(COMMAND ${CMAKE_COMMAND} --build . - RESULT_VARIABLE result - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/googletest-download ) -if(result) - message(FATAL_ERROR "Build step for googletest failed: ${result}") -endif() - -# Prevent GoogleTest from overriding our compiler/linker options -# when building with Visual Studio -set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) - -# Add googletest directly to our build. This adds -# the following targets: gtest, gtest_main, gmock -# and gmock_main -add_subdirectory(${CMAKE_CURRENT_BINARY_DIR}/googletest-src - ${CMAKE_CURRENT_BINARY_DIR}/googletest-build - EXCLUDE_FROM_ALL) - -# The gtest/gmock targets carry header search path -# dependencies automatically when using CMake 2.8.11 or -# later. Otherwise we have to add them here ourselves. -if(CMAKE_VERSION VERSION_LESS 2.8.11) - include_directories("${gtest_SOURCE_DIR}/include" - "${gmock_SOURCE_DIR}/include") -endif() +include("${CMAKE_MODULE_PATH}/googletest.cmake") add_executable(codecs src/codecs.cpp) target_link_libraries(codecs FastPFOR) @@ -209,7 +226,6 @@ enable_testing() add_test("unit" unit) add_test("FastPFOR_unittest" FastPFOR_unittest) - include(GNUInstallDirs) install(TARGETS FastPFOR EXPORT FastPFORExport diff --git a/CMakeLists.txt.in b/CMakeLists.txt.in deleted file mode 100644 index e022d7a..0000000 --- a/CMakeLists.txt.in +++ /dev/null @@ -1,15 +0,0 @@ -cmake_minimum_required(VERSION 2.8.2) - -project(googletest-download NONE) - -include(ExternalProject) -ExternalProject_Add(googletest - GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG main - SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src" - BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build" - CONFIGURE_COMMAND "" - BUILD_COMMAND "" - INSTALL_COMMAND "" - TEST_COMMAND "" -) diff --git a/cmake_modules/googletest.cmake b/cmake_modules/googletest.cmake new file mode 100644 index 0000000..d5b528c --- /dev/null +++ b/cmake_modules/googletest.cmake @@ -0,0 +1,74 @@ +# --------------------------------------------------------------------------- +# btrblocks +# --------------------------------------------------------------------------- + +include(ExternalProject) +find_package(Git REQUIRED) +find_package(Threads REQUIRED) + +# Get googletest +ExternalProject_Add( + googletest + PREFIX "vendor/gtm" + GIT_REPOSITORY "https://github.com/google/googletest.git" + GIT_TAG release-1.8.0 + TIMEOUT 10 + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + UPDATE_COMMAND "" +) + +# Build gtest +ExternalProject_Add( + gtest_src + PREFIX "vendor/gtm" + SOURCE_DIR "vendor/gtm/src/googletest/googletest" + INSTALL_DIR "vendor/gtm/gtest" + CMAKE_ARGS + -DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/vendor/gtm/gtest + -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} + -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} + -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} + DOWNLOAD_COMMAND "" + UPDATE_COMMAND "" +) + +# Build gmock +ExternalProject_Add( + gmock_src + PREFIX "vendor/gtm" + SOURCE_DIR "vendor/gtm/src/googletest/googlemock" + INSTALL_DIR "vendor/gtm/gmock" + CMAKE_ARGS + -DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/vendor/gtm/gmock + -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} + -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} + -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} + DOWNLOAD_COMMAND "" + UPDATE_COMMAND "" +) + +# Prepare gtest +ExternalProject_Get_Property(gtest_src install_dir) +set(GTEST_INCLUDE_DIR ${install_dir}/include) +set(GTEST_LIBRARY_PATH ${install_dir}/lib/libgtest.a) +file(MAKE_DIRECTORY ${GTEST_INCLUDE_DIR}) +add_library(gtest STATIC IMPORTED) +set_property(TARGET gtest PROPERTY IMPORTED_LOCATION ${GTEST_LIBRARY_PATH}) +set_property(TARGET gtest APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${GTEST_INCLUDE_DIR}) + +# Prepare gmock +ExternalProject_Get_Property(gmock_src install_dir) +set(GMOCK_INCLUDE_DIR ${install_dir}/include) +set(GMOCK_LIBRARY_PATH ${install_dir}/lib/libgmock.a) +file(MAKE_DIRECTORY ${GMOCK_INCLUDE_DIR}) +add_library(gmock STATIC IMPORTED) +set_property(TARGET gmock PROPERTY IMPORTED_LOCATION ${GMOCK_LIBRARY_PATH}) +set_property(TARGET gmock APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${GMOCK_INCLUDE_DIR}) + +# Dependencies +add_dependencies(gtest_src googletest) +add_dependencies(gmock_src googletest) +add_dependencies(gtest gtest_src) +add_dependencies(gmock gmock_src) diff --git a/cmake_modules/simde.cmake b/cmake_modules/simde.cmake new file mode 100644 index 0000000..6107b9c --- /dev/null +++ b/cmake_modules/simde.cmake @@ -0,0 +1,13 @@ +include(FetchContent) +FetchContent_Declare( + simde + GIT_REPOSITORY https://github.com/simd-everywhere/simde.git + GIT_TAG master +) +FetchContent_MakeAvailable(simde) + +add_library(simde INTERFACE IMPORTED GLOBAL) +target_include_directories(simde INTERFACE "${simde_SOURCE_DIR}") + +# Enables native aliases. Not ideal but makes it easier to convert old code. +target_compile_definitions(simde INTERFACE SIMDE_ENABLE_NATIVE_ALIASES) \ No newline at end of file diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index c7d772a..53fd5f8 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -3,12 +3,12 @@ * Apache License Version 2.0 http://www.apache.org/licenses/. */ #if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) -#ifndef _MSC_VER -#pragma message \ - "Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler" -#else -#pragma message("Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler") -#endif + #ifndef VARINTG8IU_H__ + #define VARINTG8IU_H__ + #define SIMDE_ENABLE_NATIVE_ALIASES + #include + #include "codecs.h" + #pragma message("Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler via simde") #else #ifndef VARINTG8IU_H__ #define VARINTG8IU_H__ diff --git a/headers/horizontalbitpacking.h b/headers/horizontalbitpacking.h index 88bbf5c..bcddb4a 100644 --- a/headers/horizontalbitpacking.h +++ b/headers/horizontalbitpacking.h @@ -22,12 +22,10 @@ #define HORIZONTALBITPACKING_H_ #if !defined(__SSE4_1__) && !(defined(_MSC_VER) && defined(__AVX__)) + #define SIMDE_ENABLE_NATIVE_ALIASES + #include -#ifndef _MSC_VER -#pragma message "No SSSE4.1 support? try adding -msse4.1 or the equivalent on your compiler" -#else -#pragma message("No SSSE4.1 support? try adding -msse4.1 or the equivalent on your compiler") -#endif + #pragma message("No SSSE4.1 support? switched to simde") #endif #include "common.h" diff --git a/src/streamvbyte.c b/src/streamvbyte.c index 655b916..c0bbef4 100644 --- a/src/streamvbyte.c +++ b/src/streamvbyte.c @@ -16,7 +16,8 @@ #include #elif defined(__GNUC__) && defined(__ARM_NEON__) /* GCC-compatible compiler, targeting ARM with NEON */ - #include + #define SIMDE_ENABLE_NATIVE_ALIASES + #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ #include diff --git a/src/varintdecode.c b/src/varintdecode.c index e106a2a..ebf505a 100644 --- a/src/varintdecode.c +++ b/src/varintdecode.c @@ -11,7 +11,8 @@ #include #elif defined(__GNUC__) && defined(__ARM_NEON__) /* GCC-compatible compiler, targeting ARM with NEON */ - #include + #define SIMDE_ENABLE_NATIVE_ALIASES + #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ #include From 1c26f26efe4d7097d81d2bb63da4a9583677993e Mon Sep 17 00:00:00 2001 From: seb711 Date: Mon, 4 Dec 2023 14:25:34 +0100 Subject: [PATCH 02/67] added arm cmake dependent compiling --- CMakeLists.txt | 4 ++- headers/VarIntG8IU.h | 14 +++++----- headers/common.h | 5 ++++ headers/cpubenchmark.h | 11 ++++++++ headers/horizontalbitpacking.h | 1 - headers/simdgroupsimple.h | 49 +++++++++++++++++++-------------- headers/vsencoding.h | 8 ++++++ src/simdbitpacking.cpp | 16 +++++++---- src/simdunalignedbitpacking.cpp | 23 +++++++++------- src/streamvbyte.c | 1 - src/varintdecode.c | 1 - 11 files changed, 86 insertions(+), 47 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 132514b..d317b46 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -154,7 +154,6 @@ else() message(FATAL_ERROR "Please, x86 or arm!") endif() - # library target include_directories(headers) add_library(FastPFOR STATIC @@ -169,6 +168,9 @@ add_library(FastPFOR STATIC src/streamvbyte.c) set_target_properties(FastPFOR PROPERTIES POSITION_INDEPENDENT_CODE TRUE) +if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm") + target_link_libraries(FastPFOR PUBLIC simde) +endif() # other executables add_executable(gapstats src/gapstats.cpp) diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index 53fd5f8..b222e4c 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -2,17 +2,17 @@ * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ -#if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) - #ifndef VARINTG8IU_H__ - #define VARINTG8IU_H__ - #define SIMDE_ENABLE_NATIVE_ALIASES - #include - #include "codecs.h" - #pragma message("Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler via simde") +#if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) && !(defined(__ARM_NEON__)) +#pragma message("Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler via simde") #else #ifndef VARINTG8IU_H__ #define VARINTG8IU_H__ +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include +#elif defined(__GNUC__) && defined(__ARM_NEON__) +/* GCC-compatible compiler, targeting ARM with NEON */ +#include +#endif #include "codecs.h" #ifdef __GNUC__ #define PREDICT_FALSE(x) (__builtin_expect(x, 0)) diff --git a/headers/common.h b/headers/common.h index f741c5b..ae34649 100644 --- a/headers/common.h +++ b/headers/common.h @@ -10,7 +10,12 @@ // C headers (sorted) #include #include +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include +#elif defined(__GNUC__) && defined(__ARM_NEON__) +#include +#endif + #include #include #include diff --git a/headers/cpubenchmark.h b/headers/cpubenchmark.h index 5fbfdc7..44dc718 100644 --- a/headers/cpubenchmark.h +++ b/headers/cpubenchmark.h @@ -66,7 +66,18 @@ inline unsigned long long rdtsc() { static __inline__ unsigned long long startRDTSC(void) { return rdtsc(); } static __inline__ unsigned long long stopRDTSCP(void) { return rdtsc(); } +#elif defined(__aarch64__) + inline uint64_t rdtsc() { + uint64_t cycles; + asm volatile("mrs %0, cntvct_el0" + : "=r"(cycles)); /* output */ + return cycles; + } + + static __inline__ uint64_t startRDTSC(void) { return rdtsc(); } + + static __inline__ uint64_t stopRDTSCP(void) { return rdtsc(); } #elif(defined(__arm__) || defined(__ppc__) || defined(__ppc64__)) // for PPC we should be able to use tbl, but I could not find diff --git a/headers/horizontalbitpacking.h b/headers/horizontalbitpacking.h index bcddb4a..d346148 100644 --- a/headers/horizontalbitpacking.h +++ b/headers/horizontalbitpacking.h @@ -22,7 +22,6 @@ #define HORIZONTALBITPACKING_H_ #if !defined(__SSE4_1__) && !(defined(_MSC_VER) && defined(__AVX__)) - #define SIMDE_ENABLE_NATIVE_ALIASES #include #pragma message("No SSSE4.1 support? switched to simde") diff --git a/headers/simdgroupsimple.h b/headers/simdgroupsimple.h index c210e47..58a03c5 100644 --- a/headers/simdgroupsimple.h +++ b/headers/simdgroupsimple.h @@ -151,18 +151,22 @@ class SIMDGroupSimple : public IntegerCODEC { * function is called at most once per array to compress. Hence, top * efficiency is not that crucial here. */ - inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, - __m128i *&out) { - // Since we have to produce exactly one compressed vector anyway, we can - // use the highest bit width allowing us to pack all n values. - const unsigned b = 32 / n; - __m128i comprBlock = _mm_loadu_si128(in++); - for (size_t k = 1; k < n; k++) - comprBlock = _mm_or_si128(comprBlock, - _mm_slli_epi32(_mm_loadu_si128(in++), k * b)); - _mm_storeu_si128(out++, comprBlock); - } +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) + inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, + __m128i *&out) { + // Since we have to produce exactly one compressed vector anyway, we can + // use the highest bit width allowing us to pack all n values. + const unsigned b = 32 / n; + __m128i comprBlock = _mm_loadu_si128(in++); + for (size_t k = 1; k < n; k++) + comprBlock = _mm_or_si128(comprBlock, + _mm_slli_epi32(_mm_loadu_si128(in++), k * b)); + _mm_storeu_si128(out++, comprBlock); + } +#elif defined(__GNUC__) && defined(__ARM_NEON__) + // TODO: HERE INSERT +#endif /** * The following ten functions pack a certain amount of uncompressed data. * The function unrolledPacking_#n_#b packs #n quads, i.e., 4x #n integers, @@ -347,17 +351,22 @@ class SIMDGroupSimple : public IntegerCODEC { * function is called at most once per array to decompress. Hence, top * efficiency is not that crucial here. */ - inline static void decomprIncompleteBlock(const uint8_t &n, + +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) + inline static void decomprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { - // We choose the bit width consistent with comprIncompleteBlock(). - const unsigned b = 32 / n; - const __m128i mask = _mm_set1_epi32((static_cast(1) << b) - 1); - const __m128i comprBlock = _mm_loadu_si128(in++); - for (size_t k = 0; k < n; k++) - _mm_storeu_si128(out++, - _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); - } + // We choose the bit width consistent with comprIncompleteBlock(). + const unsigned b = 32 / n; + const __m128i mask = _mm_set1_epi32((static_cast(1) << b) - 1); + const __m128i comprBlock = _mm_loadu_si128(in++); + for (size_t k = 0; k < n; k++) + _mm_storeu_si128(out++, + _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); + } +#elif defined(__GNUC__) && defined(__ARM_NEON__) + // TODO: HERE INSERT +#endif /** * The following ten functions unpack a certain amount of compressed data. diff --git a/headers/vsencoding.h b/headers/vsencoding.h index 0fc1aad..ed84151 100644 --- a/headers/vsencoding.h +++ b/headers/vsencoding.h @@ -329,6 +329,14 @@ inline void __vseblocks_copy16(const uint32_t *src, uint32_t *dest) { memcpy(dest, src, 16 * sizeof(uint32_t)); } +inline void __vseblocks_zero32(uint32_t *dest) { + memset(dest, 0, 32 * sizeof(uint32_t)); +} +#elif defined(__aarch64__) +inline void __vseblocks_copy16(const uint32_t *src, uint32_t *dest) { + memcpy(dest, src, 16 * sizeof(uint32_t)); +} + inline void __vseblocks_zero32(uint32_t *dest) { memset(dest, 0, 32 * sizeof(uint32_t)); } diff --git a/src/simdbitpacking.cpp b/src/simdbitpacking.cpp index 974d45b..953ba70 100644 --- a/src/simdbitpacking.cpp +++ b/src/simdbitpacking.cpp @@ -8923,14 +8923,15 @@ static void __SIMD_fastpack16_32(const uint32_t *__restrict__ _in, } } + static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, uint32_t *__restrict__ _out) { - __m128i *out = reinterpret_cast<__m128i *>(_out); - __m128i InReg1 = _mm_loadu_si128(in); - __m128i InReg2 = InReg1; - __m128i OutReg1, OutReg2, OutReg3, OutReg4; - const __m128i mask = _mm_set1_epi32(1); - + __m128i *out = reinterpret_cast<__m128i *>(_out); + __m128i InReg1 = _mm_loadu_si128(in); + __m128i InReg2 = InReg1; + __m128i OutReg1, OutReg2, OutReg3, OutReg4; + const __m128i mask = _mm_set1_epi32(1); +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) unsigned shift = 0; for (unsigned i = 0; i < 8; ++i) { @@ -8943,6 +8944,9 @@ static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } +#elif defined(__GNUC__) && defined(__ARM_NEON__) + // TODO: HERE INSERT +#endif } static void __SIMD_fastunpack2_32(const __m128i *__restrict__ in, diff --git a/src/simdunalignedbitpacking.cpp b/src/simdunalignedbitpacking.cpp index 469ca6e..f08558e 100644 --- a/src/simdunalignedbitpacking.cpp +++ b/src/simdunalignedbitpacking.cpp @@ -8923,15 +8923,15 @@ static void __SIMD_fastpack16_32(const uint32_t *__restrict__ _in, } } -static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, - uint32_t *__restrict__ _out) { - __m128i *out = reinterpret_cast<__m128i *>(_out); - __m128i InReg1 = _mm_loadu_si128(in); - __m128i InReg2 = InReg1; - __m128i OutReg1, OutReg2, OutReg3, OutReg4; - const __m128i mask = _mm_set1_epi32(1); - - unsigned shift = 0; + static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, + uint32_t *__restrict__ _out) { + __m128i *out = reinterpret_cast<__m128i *>(_out); + __m128i InReg1 = _mm_loadu_si128(in); + __m128i InReg2 = InReg1; + __m128i OutReg1, OutReg2, OutReg3, OutReg4; + const __m128i mask = _mm_set1_epi32(1); +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) + unsigned shift = 0; for (unsigned i = 0; i < 8; ++i) { OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, shift++), mask); @@ -8943,7 +8943,10 @@ static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } -} +#elif defined(__GNUC__) && defined(__ARM_NEON__) + // TODO: HERE INSERT +#endif + } static void __SIMD_fastunpack2_32(const __m128i *__restrict__ in, uint32_t *__restrict__ _out) { diff --git a/src/streamvbyte.c b/src/streamvbyte.c index c0bbef4..cf1651e 100644 --- a/src/streamvbyte.c +++ b/src/streamvbyte.c @@ -16,7 +16,6 @@ #include #elif defined(__GNUC__) && defined(__ARM_NEON__) /* GCC-compatible compiler, targeting ARM with NEON */ - #define SIMDE_ENABLE_NATIVE_ALIASES #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ diff --git a/src/varintdecode.c b/src/varintdecode.c index ebf505a..c6badf5 100644 --- a/src/varintdecode.c +++ b/src/varintdecode.c @@ -11,7 +11,6 @@ #include #elif defined(__GNUC__) && defined(__ARM_NEON__) /* GCC-compatible compiler, targeting ARM with NEON */ - #define SIMDE_ENABLE_NATIVE_ALIASES #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ From 7481e68e1f5c5b1d88f1514d6d9836c827ed88ea Mon Sep 17 00:00:00 2001 From: kosakseb Date: Mon, 4 Dec 2023 14:34:27 +0100 Subject: [PATCH 03/67] added unrolling various methods --- headers/simdgroupsimple.h | 2112 +++++++++++++++++++------------ src/simdbitpacking.cpp | 65 +- src/simdunalignedbitpacking.cpp | 65 +- 3 files changed, 1458 insertions(+), 784 deletions(-) diff --git a/headers/simdgroupsimple.h b/headers/simdgroupsimple.h index 58a03c5..d0970a5 100644 --- a/headers/simdgroupsimple.h +++ b/headers/simdgroupsimple.h @@ -99,805 +99,1353 @@ namespace FastPForLib { * be compressed is a multiple of four, so it should be used with * CompositeCodec. */ -template -class SIMDGroupSimple : public IntegerCODEC { -public: - using IntegerCODEC::encodeArray; - using IntegerCODEC::decodeArray; - - // Tell CompositeCodec that this implementation can only handle input sizes - // which are multiples of four. - static const uint32_t BlockSize = 4; - - // The header consists of three 32-bit integers. - static const uint32_t countHeader32 = 3; - - // Lookup table. Key: a selector, value: the number of quads to be packed - // into one compressed block with the specified selector. - static const uint8_t tableNum[]; - // Lookup table. Key: a selector, value: the mask required in the pattern - // selection algorithm. Note that unlike in the paper, we look up the mask - // directly instead of the bit width. - static const uint32_t tableMask[]; - - /** - * Extracts the pos-th 4-bit selector from the selectors area, which starts - * at inSelArea8. Note that, as described in the original paper, two - * selectors are stored in each byte in the selectors area. - */ - inline static uint8_t extractSel(const uint8_t *const &inSelArea8, - const size_t &pos) { - // We either need to extract the lower or the upper four bits of the - // respective selector byte. - return (pos & 1) - ? ((inSelArea8[pos >> 1]) >> 4) - : ((inSelArea8[pos >> 1]) & 0b1111); - } + template + class SIMDGroupSimple : public IntegerCODEC { + public: + using IntegerCODEC::encodeArray; + using IntegerCODEC::decodeArray; + + // Tell CompositeCodec that this implementation can only handle input sizes + // which are multiples of four. + static const uint32_t BlockSize = 4; + + // The header consists of three 32-bit integers. + static const uint32_t countHeader32 = 3; + + // Lookup table. Key: a selector, value: the number of quads to be packed + // into one compressed block with the specified selector. + static const uint8_t tableNum[]; + // Lookup table. Key: a selector, value: the mask required in the pattern + // selection algorithm. Note that unlike in the paper, we look up the mask + // directly instead of the bit width. + static const uint32_t tableMask[]; + + /** + * Extracts the pos-th 4-bit selector from the selectors area, which starts + * at inSelArea8. Note that, as described in the original paper, two + * selectors are stored in each byte in the selectors area. + */ + inline static uint8_t extractSel(const uint8_t *const &inSelArea8, + const size_t &pos) { + // We either need to extract the lower or the upper four bits of the + // respective selector byte. + return (pos & 1) + ? ((inSelArea8[pos >> 1]) >> 4) + : ((inSelArea8[pos >> 1]) & 0b1111); + } + + /** + * Utility function to calculate the number of padding bytes needed after the + * selectors area in order to guarantee the 16-byte alignment required for + * SSE-store instructions in the data area. + */ + inline static size_t getCountPadBytes(const size_t &countSelArea8) { + const size_t offset = (countHeader32 * sizeof(uint32_t) + + countSelArea8 + sizeof(uint8_t)) % sizeof(__m128i); + return offset ? (sizeof(__m128i) - offset) : 0; + } + + /** + * This function is used to compress the n quads, i.e. 4x n integers, in the + * last input block, if that last block is not "full". Note that this + * function is called at most once per array to compress. Hence, top + * efficiency is not that crucial here. + */ - /** - * Utility function to calculate the number of padding bytes needed after the - * selectors area in order to guarantee the 16-byte alignment required for - * SSE-store instructions in the data area. - */ - inline static size_t getCountPadBytes(const size_t &countSelArea8) { - const size_t offset = (countHeader32 * sizeof(uint32_t) + - countSelArea8 + sizeof(uint8_t)) % sizeof(__m128i); - return offset ? (sizeof(__m128i) - offset) : 0; - } +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) - /** - * This function is used to compress the n quads, i.e. 4x n integers, in the - * last input block, if that last block is not "full". Note that this - * function is called at most once per array to compress. Hence, top - * efficiency is not that crucial here. - */ + inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, + __m128i *&out) { + // Since we have to produce exactly one compressed vector anyway, we can + // use the highest bit width allowing us to pack all n values. + const unsigned b = 32 / n; + __m128i comprBlock = _mm_loadu_si128(in++); + for (size_t k = 1; k < n; k++) + comprBlock = _mm_or_si128(comprBlock, + _mm_slli_epi32(_mm_loadu_si128(in++), k * b)); + _mm_storeu_si128(out++, comprBlock); + } -#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) - inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, - __m128i *&out) { - // Since we have to produce exactly one compressed vector anyway, we can - // use the highest bit width allowing us to pack all n values. - const unsigned b = 32 / n; - __m128i comprBlock = _mm_loadu_si128(in++); - for (size_t k = 1; k < n; k++) - comprBlock = _mm_or_si128(comprBlock, - _mm_slli_epi32(_mm_loadu_si128(in++), k * b)); - _mm_storeu_si128(out++, comprBlock); - } #elif defined(__GNUC__) && defined(__ARM_NEON__) - // TODO: HERE INSERT + inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, + __m128i *&out) { + // Since we have to produce exactly one compressed vector anyway, we can + // use the highest bit width allowing us to pack all n values. + const unsigned b = 32 / n; + __m128i comprBlock = _mm_load_si128(in++); + for (size_t k = 1; k < n; k++) + comprBlock = _mm_or_si128(comprBlock, + mm_slli_epi32_unrolled(_mm_load_si128(in++), k * b)); + _mm_store_si128(out++, comprBlock); + } + + inline static __m128i mm_slli_epi32_unrolled(__m128i comprBlock, unsigned int n) { + switch (n) { + case 0: return _mm_slli_epi32(comprBlock, 0); + case 1: return _mm_slli_epi32(comprBlock, 1); + case 2: return _mm_slli_epi32(comprBlock, 2); + case 3: return _mm_slli_epi32(comprBlock, 3); + case 4: return _mm_slli_epi32(comprBlock, 4); + case 5: return _mm_slli_epi32(comprBlock, 5); + case 6: return _mm_slli_epi32(comprBlock, 6); + case 7: return _mm_slli_epi32(comprBlock, 7); + case 8: return _mm_slli_epi32(comprBlock, 8); + case 9: return _mm_slli_epi32(comprBlock, 9); + case 10: return _mm_slli_epi32(comprBlock, 10); + case 11: return _mm_slli_epi32(comprBlock, 11); + case 12: return _mm_slli_epi32(comprBlock, 12); + case 13: return _mm_slli_epi32(comprBlock, 13); + case 14: return _mm_slli_epi32(comprBlock, 14); + case 15: return _mm_slli_epi32(comprBlock, 15); + case 16: return _mm_slli_epi32(comprBlock, 16); + case 17: return _mm_slli_epi32(comprBlock, 17); + case 18: return _mm_slli_epi32(comprBlock, 18); + case 19: return _mm_slli_epi32(comprBlock, 19); + case 20: return _mm_slli_epi32(comprBlock, 20); + case 21: return _mm_slli_epi32(comprBlock, 21); + case 22: return _mm_slli_epi32(comprBlock, 22); + case 23: return _mm_slli_epi32(comprBlock, 23); + case 24: return _mm_slli_epi32(comprBlock, 24); + case 25: return _mm_slli_epi32(comprBlock, 25); + case 26: return _mm_slli_epi32(comprBlock, 26); + case 27: return _mm_slli_epi32(comprBlock, 27); + case 28: return _mm_slli_epi32(comprBlock, 28); + case 29: return _mm_slli_epi32(comprBlock, 29); + case 30: return _mm_slli_epi32(comprBlock, 30); + case 31: return _mm_slli_epi32(comprBlock, 31); + case 32: return _mm_slli_epi32(comprBlock, 32); + case 33: return _mm_slli_epi32(comprBlock, 33); + case 34: return _mm_slli_epi32(comprBlock, 34); + case 35: return _mm_slli_epi32(comprBlock, 35); + case 36: return _mm_slli_epi32(comprBlock, 36); + case 37: return _mm_slli_epi32(comprBlock, 37); + case 38: return _mm_slli_epi32(comprBlock, 38); + case 39: return _mm_slli_epi32(comprBlock, 39); + case 40: return _mm_slli_epi32(comprBlock, 40); + case 41: return _mm_slli_epi32(comprBlock, 41); + case 42: return _mm_slli_epi32(comprBlock, 42); + case 43: return _mm_slli_epi32(comprBlock, 43); + case 44: return _mm_slli_epi32(comprBlock, 44); + case 45: return _mm_slli_epi32(comprBlock, 45); + case 46: return _mm_slli_epi32(comprBlock, 46); + case 47: return _mm_slli_epi32(comprBlock, 47); + case 48: return _mm_slli_epi32(comprBlock, 48); + case 49: return _mm_slli_epi32(comprBlock, 49); + case 50: return _mm_slli_epi32(comprBlock, 50); + case 51: return _mm_slli_epi32(comprBlock, 51); + case 52: return _mm_slli_epi32(comprBlock, 52); + case 53: return _mm_slli_epi32(comprBlock, 53); + case 54: return _mm_slli_epi32(comprBlock, 54); + case 55: return _mm_slli_epi32(comprBlock, 55); + case 56: return _mm_slli_epi32(comprBlock, 56); + case 57: return _mm_slli_epi32(comprBlock, 57); + case 58: return _mm_slli_epi32(comprBlock, 58); + case 59: return _mm_slli_epi32(comprBlock, 59); + case 60: return _mm_slli_epi32(comprBlock, 60); + case 61: return _mm_slli_epi32(comprBlock, 61); + case 62: return _mm_slli_epi32(comprBlock, 62); + case 63: return _mm_slli_epi32(comprBlock, 63); + case 64: return _mm_slli_epi32(comprBlock, 64); + case 65: return _mm_slli_epi32(comprBlock, 65); + case 66: return _mm_slli_epi32(comprBlock, 66); + case 67: return _mm_slli_epi32(comprBlock, 67); + case 68: return _mm_slli_epi32(comprBlock, 68); + case 69: return _mm_slli_epi32(comprBlock, 69); + case 70: return _mm_slli_epi32(comprBlock, 70); + case 71: return _mm_slli_epi32(comprBlock, 71); + case 72: return _mm_slli_epi32(comprBlock, 72); + case 73: return _mm_slli_epi32(comprBlock, 73); + case 74: return _mm_slli_epi32(comprBlock, 74); + case 75: return _mm_slli_epi32(comprBlock, 75); + case 76: return _mm_slli_epi32(comprBlock, 76); + case 77: return _mm_slli_epi32(comprBlock, 77); + case 78: return _mm_slli_epi32(comprBlock, 78); + case 79: return _mm_slli_epi32(comprBlock, 79); + case 80: return _mm_slli_epi32(comprBlock, 80); + case 81: return _mm_slli_epi32(comprBlock, 81); + case 82: return _mm_slli_epi32(comprBlock, 82); + case 83: return _mm_slli_epi32(comprBlock, 83); + case 84: return _mm_slli_epi32(comprBlock, 84); + case 85: return _mm_slli_epi32(comprBlock, 85); + case 86: return _mm_slli_epi32(comprBlock, 86); + case 87: return _mm_slli_epi32(comprBlock, 87); + case 88: return _mm_slli_epi32(comprBlock, 88); + case 89: return _mm_slli_epi32(comprBlock, 89); + case 90: return _mm_slli_epi32(comprBlock, 90); + case 91: return _mm_slli_epi32(comprBlock, 91); + case 92: return _mm_slli_epi32(comprBlock, 92); + case 93: return _mm_slli_epi32(comprBlock, 93); + case 94: return _mm_slli_epi32(comprBlock, 94); + case 95: return _mm_slli_epi32(comprBlock, 95); + case 96: return _mm_slli_epi32(comprBlock, 96); + case 97: return _mm_slli_epi32(comprBlock, 97); + case 98: return _mm_slli_epi32(comprBlock, 98); + case 99: return _mm_slli_epi32(comprBlock, 99); + case 100: return _mm_slli_epi32(comprBlock, 100); + case 101: return _mm_slli_epi32(comprBlock, 101); + case 102: return _mm_slli_epi32(comprBlock, 102); + case 103: return _mm_slli_epi32(comprBlock, 103); + case 104: return _mm_slli_epi32(comprBlock, 104); + case 105: return _mm_slli_epi32(comprBlock, 105); + case 106: return _mm_slli_epi32(comprBlock, 106); + case 107: return _mm_slli_epi32(comprBlock, 107); + case 108: return _mm_slli_epi32(comprBlock, 108); + case 109: return _mm_slli_epi32(comprBlock, 109); + case 110: return _mm_slli_epi32(comprBlock, 110); + case 111: return _mm_slli_epi32(comprBlock, 111); + case 112: return _mm_slli_epi32(comprBlock, 112); + case 113: return _mm_slli_epi32(comprBlock, 113); + case 114: return _mm_slli_epi32(comprBlock, 114); + case 115: return _mm_slli_epi32(comprBlock, 115); + case 116: return _mm_slli_epi32(comprBlock, 116); + case 117: return _mm_slli_epi32(comprBlock, 117); + case 118: return _mm_slli_epi32(comprBlock, 118); + case 119: return _mm_slli_epi32(comprBlock, 119); + case 120: return _mm_slli_epi32(comprBlock, 120); + case 121: return _mm_slli_epi32(comprBlock, 121); + case 122: return _mm_slli_epi32(comprBlock, 122); + case 123: return _mm_slli_epi32(comprBlock, 123); + case 124: return _mm_slli_epi32(comprBlock, 124); + case 125: return _mm_slli_epi32(comprBlock, 125); + case 126: return _mm_slli_epi32(comprBlock, 126); + case 127: return _mm_slli_epi32(comprBlock, 127); + case 128: return _mm_slli_epi32(comprBlock, 128); + case 129: return _mm_slli_epi32(comprBlock, 129); + case 130: return _mm_slli_epi32(comprBlock, 130); + case 131: return _mm_slli_epi32(comprBlock, 131); + case 132: return _mm_slli_epi32(comprBlock, 132); + case 133: return _mm_slli_epi32(comprBlock, 133); + case 134: return _mm_slli_epi32(comprBlock, 134); + case 135: return _mm_slli_epi32(comprBlock, 135); + case 136: return _mm_slli_epi32(comprBlock, 136); + case 137: return _mm_slli_epi32(comprBlock, 137); + case 138: return _mm_slli_epi32(comprBlock, 138); + case 139: return _mm_slli_epi32(comprBlock, 139); + case 140: return _mm_slli_epi32(comprBlock, 140); + case 141: return _mm_slli_epi32(comprBlock, 141); + case 142: return _mm_slli_epi32(comprBlock, 142); + case 143: return _mm_slli_epi32(comprBlock, 143); + case 144: return _mm_slli_epi32(comprBlock, 144); + case 145: return _mm_slli_epi32(comprBlock, 145); + case 146: return _mm_slli_epi32(comprBlock, 146); + case 147: return _mm_slli_epi32(comprBlock, 147); + case 148: return _mm_slli_epi32(comprBlock, 148); + case 149: return _mm_slli_epi32(comprBlock, 149); + case 150: return _mm_slli_epi32(comprBlock, 150); + case 151: return _mm_slli_epi32(comprBlock, 151); + case 152: return _mm_slli_epi32(comprBlock, 152); + case 153: return _mm_slli_epi32(comprBlock, 153); + case 154: return _mm_slli_epi32(comprBlock, 154); + case 155: return _mm_slli_epi32(comprBlock, 155); + case 156: return _mm_slli_epi32(comprBlock, 156); + case 157: return _mm_slli_epi32(comprBlock, 157); + case 158: return _mm_slli_epi32(comprBlock, 158); + case 159: return _mm_slli_epi32(comprBlock, 159); + case 160: return _mm_slli_epi32(comprBlock, 160); + case 161: return _mm_slli_epi32(comprBlock, 161); + case 162: return _mm_slli_epi32(comprBlock, 162); + case 163: return _mm_slli_epi32(comprBlock, 163); + case 164: return _mm_slli_epi32(comprBlock, 164); + case 165: return _mm_slli_epi32(comprBlock, 165); + case 166: return _mm_slli_epi32(comprBlock, 166); + case 167: return _mm_slli_epi32(comprBlock, 167); + case 168: return _mm_slli_epi32(comprBlock, 168); + case 169: return _mm_slli_epi32(comprBlock, 169); + case 170: return _mm_slli_epi32(comprBlock, 170); + case 171: return _mm_slli_epi32(comprBlock, 171); + case 172: return _mm_slli_epi32(comprBlock, 172); + case 173: return _mm_slli_epi32(comprBlock, 173); + case 174: return _mm_slli_epi32(comprBlock, 174); + case 175: return _mm_slli_epi32(comprBlock, 175); + case 176: return _mm_slli_epi32(comprBlock, 176); + case 177: return _mm_slli_epi32(comprBlock, 177); + case 178: return _mm_slli_epi32(comprBlock, 178); + case 179: return _mm_slli_epi32(comprBlock, 179); + case 180: return _mm_slli_epi32(comprBlock, 180); + case 181: return _mm_slli_epi32(comprBlock, 181); + case 182: return _mm_slli_epi32(comprBlock, 182); + case 183: return _mm_slli_epi32(comprBlock, 183); + case 184: return _mm_slli_epi32(comprBlock, 184); + case 185: return _mm_slli_epi32(comprBlock, 185); + case 186: return _mm_slli_epi32(comprBlock, 186); + case 187: return _mm_slli_epi32(comprBlock, 187); + case 188: return _mm_slli_epi32(comprBlock, 188); + case 189: return _mm_slli_epi32(comprBlock, 189); + case 190: return _mm_slli_epi32(comprBlock, 190); + case 191: return _mm_slli_epi32(comprBlock, 191); + case 192: return _mm_slli_epi32(comprBlock, 192); + case 193: return _mm_slli_epi32(comprBlock, 193); + case 194: return _mm_slli_epi32(comprBlock, 194); + case 195: return _mm_slli_epi32(comprBlock, 195); + case 196: return _mm_slli_epi32(comprBlock, 196); + case 197: return _mm_slli_epi32(comprBlock, 197); + case 198: return _mm_slli_epi32(comprBlock, 198); + case 199: return _mm_slli_epi32(comprBlock, 199); + case 200: return _mm_slli_epi32(comprBlock, 200); + case 201: return _mm_slli_epi32(comprBlock, 201); + case 202: return _mm_slli_epi32(comprBlock, 202); + case 203: return _mm_slli_epi32(comprBlock, 203); + case 204: return _mm_slli_epi32(comprBlock, 204); + case 205: return _mm_slli_epi32(comprBlock, 205); + case 206: return _mm_slli_epi32(comprBlock, 206); + case 207: return _mm_slli_epi32(comprBlock, 207); + case 208: return _mm_slli_epi32(comprBlock, 208); + case 209: return _mm_slli_epi32(comprBlock, 209); + case 210: return _mm_slli_epi32(comprBlock, 210); + case 211: return _mm_slli_epi32(comprBlock, 211); + case 212: return _mm_slli_epi32(comprBlock, 212); + case 213: return _mm_slli_epi32(comprBlock, 213); + case 214: return _mm_slli_epi32(comprBlock, 214); + case 215: return _mm_slli_epi32(comprBlock, 215); + case 216: return _mm_slli_epi32(comprBlock, 216); + case 217: return _mm_slli_epi32(comprBlock, 217); + case 218: return _mm_slli_epi32(comprBlock, 218); + case 219: return _mm_slli_epi32(comprBlock, 219); + case 220: return _mm_slli_epi32(comprBlock, 220); + case 221: return _mm_slli_epi32(comprBlock, 221); + case 222: return _mm_slli_epi32(comprBlock, 222); + case 223: return _mm_slli_epi32(comprBlock, 223); + case 224: return _mm_slli_epi32(comprBlock, 224); + case 225: return _mm_slli_epi32(comprBlock, 225); + case 226: return _mm_slli_epi32(comprBlock, 226); + case 227: return _mm_slli_epi32(comprBlock, 227); + case 228: return _mm_slli_epi32(comprBlock, 228); + case 229: return _mm_slli_epi32(comprBlock, 229); + case 230: return _mm_slli_epi32(comprBlock, 230); + case 231: return _mm_slli_epi32(comprBlock, 231); + case 232: return _mm_slli_epi32(comprBlock, 232); + case 233: return _mm_slli_epi32(comprBlock, 233); + case 234: return _mm_slli_epi32(comprBlock, 234); + case 235: return _mm_slli_epi32(comprBlock, 235); + case 236: return _mm_slli_epi32(comprBlock, 236); + case 237: return _mm_slli_epi32(comprBlock, 237); + case 238: return _mm_slli_epi32(comprBlock, 238); + case 239: return _mm_slli_epi32(comprBlock, 239); + case 240: return _mm_slli_epi32(comprBlock, 240); + case 241: return _mm_slli_epi32(comprBlock, 241); + case 242: return _mm_slli_epi32(comprBlock, 242); + case 243: return _mm_slli_epi32(comprBlock, 243); + case 244: return _mm_slli_epi32(comprBlock, 244); + case 245: return _mm_slli_epi32(comprBlock, 245); + case 246: return _mm_slli_epi32(comprBlock, 246); + case 247: return _mm_slli_epi32(comprBlock, 247); + case 248: return _mm_slli_epi32(comprBlock, 248); + case 249: return _mm_slli_epi32(comprBlock, 249); + case 250: return _mm_slli_epi32(comprBlock, 250); + case 251: return _mm_slli_epi32(comprBlock, 251); + case 252: return _mm_slli_epi32(comprBlock, 252); + case 253: return _mm_slli_epi32(comprBlock, 253); + case 254: return _mm_slli_epi32(comprBlock, 254); + case 255: return _mm_slli_epi32(comprBlock, 255); + default: return _mm_srli_epi32(comprBlock, 255); + } + } #endif - /** - * The following ten functions pack a certain amount of uncompressed data. - * The function unrolledPacking_#n_#b packs #n quads, i.e., 4x #n integers, - * into one 128-bit compressed block. - */ - - inline static __m128i unrolledPacking_32_1(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 1)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 2)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 3)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 4)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 5)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 7)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 9)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 11)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 13)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 14)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 15)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 17)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 19)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 21)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 22)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 23)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 25)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 26)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 27)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 28)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 29)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 30)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 31)); - return res; - } - - inline static __m128i unrolledPacking_16_2(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 2)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 4)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 14)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 22)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 26)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 28)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 30)); - return res; - } - - inline static __m128i unrolledPacking_10_3(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 3)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 9)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 15)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 21)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 27)); - return res; - } - - inline static __m128i unrolledPacking_8_4(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 4)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 28)); - return res; - } - - inline static __m128i unrolledPacking_6_5(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 5)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 15)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 25)); - return res; - } - - inline static __m128i unrolledPacking_5_6(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); - return res; - } - - inline static __m128i unrolledPacking_4_8(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); - return res; - } - - inline static __m128i unrolledPacking_3_10(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); - return res; - } - - inline static __m128i unrolledPacking_2_16(const __m128i *&in) { - __m128i res = _mm_loadu_si128(in++); - res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); - return res; - } - inline static __m128i unrolledPacking_1_32(const __m128i *&in) { - return _mm_loadu_si128(in++); - } + /** + * The following ten functions pack a certain amount of uncompressed data. + * The function unrolledPacking_#n_#b packs #n quads, i.e., 4x #n integers, + * into one 128-bit compressed block. + */ + + inline static __m128i unrolledPacking_32_1(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 1)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 2)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 3)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 4)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 5)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 7)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 9)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 11)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 13)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 14)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 15)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 17)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 19)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 21)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 22)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 23)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 25)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 26)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 27)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 28)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 29)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 30)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 31)); + return res; + } + + inline static __m128i unrolledPacking_16_2(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 2)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 4)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 14)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 22)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 26)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 28)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 30)); + return res; + } + + inline static __m128i unrolledPacking_10_3(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 3)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 9)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 15)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 21)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 27)); + return res; + } + + inline static __m128i unrolledPacking_8_4(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 4)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 28)); + return res; + } + + inline static __m128i unrolledPacking_6_5(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 5)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 15)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 25)); + return res; + } + + inline static __m128i unrolledPacking_5_6(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 6)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 12)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 18)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); + return res; + } + + inline static __m128i unrolledPacking_4_8(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 8)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 24)); + return res; + } + + inline static __m128i unrolledPacking_3_10(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 10)); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 20)); + return res; + } + + inline static __m128i unrolledPacking_2_16(const __m128i *&in) { + __m128i res = _mm_loadu_si128(in++); + res = _mm_or_si128(res, _mm_slli_epi32(_mm_loadu_si128(in++), 16)); + return res; + } + + inline static __m128i unrolledPacking_1_32(const __m128i *&in) { + return _mm_loadu_si128(in++); + } + + /** + * Compresses n quads, i.e. 4x n integers. Thereby, n must correspond to one + * of the ten compression modes presented in the original paper. + */ + inline static void comprCompleteBlock(const uint8_t &n, const __m128i *&in, + __m128i *&out) { + __m128i res = _mm_setzero_si128(); + + // In the following, b means the bit width. + + switch (n) { + case 32: // b = 1 + res = unrolledPacking_32_1(in); + break; + case 16: // b = 2 + res = unrolledPacking_16_2(in); + break; + case 10: // b = 3 + res = unrolledPacking_10_3(in); + break; + case 8: // b = 4 + res = unrolledPacking_8_4(in); + break; + case 6: // b = 5 + res = unrolledPacking_6_5(in); + break; + case 5: // b = 6 + res = unrolledPacking_5_6(in); + break; + case 4: // b = 8 + res = unrolledPacking_4_8(in); + break; + case 3: // b = 10 + res = unrolledPacking_3_10(in); + break; + case 2: // b = 16 + res = unrolledPacking_2_16(in); + break; + case 1: // b = 32 + res = unrolledPacking_1_32(in); + break; + } + + _mm_storeu_si128(out++, res); + } + + /** + * This function is used to decompress the n quads, i.e. 4x n integers, in + * the last input block, if that last block is not "full". Note that this + * function is called at most once per array to decompress. Hence, top + * efficiency is not that crucial here. + */ - /** - * Compresses n quads, i.e. 4x n integers. Thereby, n must correspond to one - * of the ten compression modes presented in the original paper. - */ - inline static void comprCompleteBlock(const uint8_t &n, const __m128i *&in, - __m128i *&out) { - __m128i res = _mm_setzero_si128(); - - // In the following, b means the bit width. - - switch (n) { - case 32: // b = 1 - res = unrolledPacking_32_1(in); - break; - case 16: // b = 2 - res = unrolledPacking_16_2(in); - break; - case 10: // b = 3 - res = unrolledPacking_10_3(in); - break; - case 8: // b = 4 - res = unrolledPacking_8_4(in); - break; - case 6: // b = 5 - res = unrolledPacking_6_5(in); - break; - case 5: // b = 6 - res = unrolledPacking_5_6(in); - break; - case 4: // b = 8 - res = unrolledPacking_4_8(in); - break; - case 3: // b = 10 - res = unrolledPacking_3_10(in); - break; - case 2: // b = 16 - res = unrolledPacking_2_16(in); - break; - case 1: // b = 32 - res = unrolledPacking_1_32(in); - break; - } - - _mm_storeu_si128(out++, res); - } +#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) - /** - * This function is used to decompress the n quads, i.e. 4x n integers, in - * the last input block, if that last block is not "full". Note that this - * function is called at most once per array to decompress. Hence, top - * efficiency is not that crucial here. - */ + inline static void decomprIncompleteBlock(const uint8_t &n, + const __m128i *&in, + __m128i *&out) { + // We choose the bit width consistent with comprIncompleteBlock(). + const unsigned b = 32 / n; + const __m128i mask = _mm_set1_epi32((static_cast(1) << b) - 1); + const __m128i comprBlock = _mm_loadu_si128(in++); + for (size_t k = 0; k < n; k++) + _mm_storeu_si128(out++, + _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); + } -#if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) +#elif defined(__GNUC__) && defined(__ARM_NEON__) inline static void decomprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { - // We choose the bit width consistent with comprIncompleteBlock(). - const unsigned b = 32 / n; - const __m128i mask = _mm_set1_epi32((static_cast(1) << b) - 1); - const __m128i comprBlock = _mm_loadu_si128(in++); - for (size_t k = 0; k < n; k++) - _mm_storeu_si128(out++, - _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); - } -#elif defined(__GNUC__) && defined(__ARM_NEON__) - // TODO: HERE INSERT -#endif - - /** - * The following ten functions unpack a certain amount of compressed data. - * The function unrolledUnpacking_#n_#b unpacks #n quads, i.e., 4x #n - * integers, from one 128-bit compressed block. - */ - - inline static void unrolledUnpacking_32_1(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32(1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock, mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 1), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 2), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 3), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 4), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 5), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 7), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 9), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 11), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 13), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 14), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 15), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 17), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 19), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 21), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 22), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 23), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 25), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 26), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 27), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 28), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 29), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 30), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 31), mask)); + // We choose the bit width consistent with comprIncompleteBlock(). + const unsigned b = 32 / n; + const __m128i mask = _mm_set1_epi32((static_cast(1) << b) - 1); + const __m128i comprBlock = _mm_load_si128(in++); + for (size_t k = 0; k < n; k++) + _mm_store_si128(out++, + _mm_and_si128(mm_srli_epi32_unrolled(comprBlock, k * b), mask)); } - inline static void unrolledUnpacking_16_2(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 2) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock , mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 2), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 4), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 14), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 22), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 26), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 28), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 30), mask)); + inline static __m128i mm_srli_epi32_unrolled(__m128i comprBlock, unsigned int n) { + switch (n) { + case 0:return _mm_srli_epi32(comprBlock, 0); + case 1:return _mm_srli_epi32(comprBlock, 1); + case 2:return _mm_srli_epi32(comprBlock, 2); + case 3:return _mm_srli_epi32(comprBlock, 3); + case 4:return _mm_srli_epi32(comprBlock, 4); + case 5:return _mm_srli_epi32(comprBlock, 5); + case 6:return _mm_srli_epi32(comprBlock, 6); + case 7:return _mm_srli_epi32(comprBlock, 7); + case 8:return _mm_srli_epi32(comprBlock, 8); + case 9:return _mm_srli_epi32(comprBlock, 9); + case 10:return _mm_srli_epi32(comprBlock, 10); + case 11:return _mm_srli_epi32(comprBlock, 11); + case 12:return _mm_srli_epi32(comprBlock, 12); + case 13:return _mm_srli_epi32(comprBlock, 13); + case 14:return _mm_srli_epi32(comprBlock, 14); + case 15:return _mm_srli_epi32(comprBlock, 15); + case 16:return _mm_srli_epi32(comprBlock, 16); + case 17:return _mm_srli_epi32(comprBlock, 17); + case 18:return _mm_srli_epi32(comprBlock, 18); + case 19:return _mm_srli_epi32(comprBlock, 19); + case 20:return _mm_srli_epi32(comprBlock, 20); + case 21:return _mm_srli_epi32(comprBlock, 21); + case 22:return _mm_srli_epi32(comprBlock, 22); + case 23:return _mm_srli_epi32(comprBlock, 23); + case 24:return _mm_srli_epi32(comprBlock, 24); + case 25:return _mm_srli_epi32(comprBlock, 25); + case 26:return _mm_srli_epi32(comprBlock, 26); + case 27:return _mm_srli_epi32(comprBlock, 27); + case 28:return _mm_srli_epi32(comprBlock, 28); + case 29:return _mm_srli_epi32(comprBlock, 29); + case 30:return _mm_srli_epi32(comprBlock, 30); + case 31:return _mm_srli_epi32(comprBlock, 31); + case 32:return _mm_srli_epi32(comprBlock, 32); + case 33:return _mm_srli_epi32(comprBlock, 33); + case 34:return _mm_srli_epi32(comprBlock, 34); + case 35:return _mm_srli_epi32(comprBlock, 35); + case 36:return _mm_srli_epi32(comprBlock, 36); + case 37:return _mm_srli_epi32(comprBlock, 37); + case 38:return _mm_srli_epi32(comprBlock, 38); + case 39:return _mm_srli_epi32(comprBlock, 39); + case 40:return _mm_srli_epi32(comprBlock, 40); + case 41:return _mm_srli_epi32(comprBlock, 41); + case 42:return _mm_srli_epi32(comprBlock, 42); + case 43:return _mm_srli_epi32(comprBlock, 43); + case 44:return _mm_srli_epi32(comprBlock, 44); + case 45:return _mm_srli_epi32(comprBlock, 45); + case 46:return _mm_srli_epi32(comprBlock, 46); + case 47:return _mm_srli_epi32(comprBlock, 47); + case 48:return _mm_srli_epi32(comprBlock, 48); + case 49:return _mm_srli_epi32(comprBlock, 49); + case 50:return _mm_srli_epi32(comprBlock, 50); + case 51:return _mm_srli_epi32(comprBlock, 51); + case 52:return _mm_srli_epi32(comprBlock, 52); + case 53:return _mm_srli_epi32(comprBlock, 53); + case 54:return _mm_srli_epi32(comprBlock, 54); + case 55:return _mm_srli_epi32(comprBlock, 55); + case 56:return _mm_srli_epi32(comprBlock, 56); + case 57:return _mm_srli_epi32(comprBlock, 57); + case 58:return _mm_srli_epi32(comprBlock, 58); + case 59:return _mm_srli_epi32(comprBlock, 59); + case 60:return _mm_srli_epi32(comprBlock, 60); + case 61:return _mm_srli_epi32(comprBlock, 61); + case 62:return _mm_srli_epi32(comprBlock, 62); + case 63:return _mm_srli_epi32(comprBlock, 63); + case 64:return _mm_srli_epi32(comprBlock, 64); + case 65:return _mm_srli_epi32(comprBlock, 65); + case 66:return _mm_srli_epi32(comprBlock, 66); + case 67:return _mm_srli_epi32(comprBlock, 67); + case 68:return _mm_srli_epi32(comprBlock, 68); + case 69:return _mm_srli_epi32(comprBlock, 69); + case 70:return _mm_srli_epi32(comprBlock, 70); + case 71:return _mm_srli_epi32(comprBlock, 71); + case 72:return _mm_srli_epi32(comprBlock, 72); + case 73:return _mm_srli_epi32(comprBlock, 73); + case 74:return _mm_srli_epi32(comprBlock, 74); + case 75:return _mm_srli_epi32(comprBlock, 75); + case 76:return _mm_srli_epi32(comprBlock, 76); + case 77:return _mm_srli_epi32(comprBlock, 77); + case 78:return _mm_srli_epi32(comprBlock, 78); + case 79:return _mm_srli_epi32(comprBlock, 79); + case 80:return _mm_srli_epi32(comprBlock, 80); + case 81:return _mm_srli_epi32(comprBlock, 81); + case 82:return _mm_srli_epi32(comprBlock, 82); + case 83:return _mm_srli_epi32(comprBlock, 83); + case 84:return _mm_srli_epi32(comprBlock, 84); + case 85:return _mm_srli_epi32(comprBlock, 85); + case 86:return _mm_srli_epi32(comprBlock, 86); + case 87:return _mm_srli_epi32(comprBlock, 87); + case 88:return _mm_srli_epi32(comprBlock, 88); + case 89:return _mm_srli_epi32(comprBlock, 89); + case 90:return _mm_srli_epi32(comprBlock, 90); + case 91:return _mm_srli_epi32(comprBlock, 91); + case 92:return _mm_srli_epi32(comprBlock, 92); + case 93:return _mm_srli_epi32(comprBlock, 93); + case 94:return _mm_srli_epi32(comprBlock, 94); + case 95:return _mm_srli_epi32(comprBlock, 95); + case 96:return _mm_srli_epi32(comprBlock, 96); + case 97:return _mm_srli_epi32(comprBlock, 97); + case 98:return _mm_srli_epi32(comprBlock, 98); + case 99:return _mm_srli_epi32(comprBlock, 99); + case 100:return _mm_srli_epi32(comprBlock, 100); + case 101:return _mm_srli_epi32(comprBlock, 101); + case 102:return _mm_srli_epi32(comprBlock, 102); + case 103:return _mm_srli_epi32(comprBlock, 103); + case 104:return _mm_srli_epi32(comprBlock, 104); + case 105:return _mm_srli_epi32(comprBlock, 105); + case 106:return _mm_srli_epi32(comprBlock, 106); + case 107:return _mm_srli_epi32(comprBlock, 107); + case 108:return _mm_srli_epi32(comprBlock, 108); + case 109:return _mm_srli_epi32(comprBlock, 109); + case 110:return _mm_srli_epi32(comprBlock, 110); + case 111:return _mm_srli_epi32(comprBlock, 111); + case 112:return _mm_srli_epi32(comprBlock, 112); + case 113:return _mm_srli_epi32(comprBlock, 113); + case 114:return _mm_srli_epi32(comprBlock, 114); + case 115:return _mm_srli_epi32(comprBlock, 115); + case 116:return _mm_srli_epi32(comprBlock, 116); + case 117:return _mm_srli_epi32(comprBlock, 117); + case 118:return _mm_srli_epi32(comprBlock, 118); + case 119:return _mm_srli_epi32(comprBlock, 119); + case 120:return _mm_srli_epi32(comprBlock, 120); + case 121:return _mm_srli_epi32(comprBlock, 121); + case 122:return _mm_srli_epi32(comprBlock, 122); + case 123:return _mm_srli_epi32(comprBlock, 123); + case 124:return _mm_srli_epi32(comprBlock, 124); + case 125:return _mm_srli_epi32(comprBlock, 125); + case 126:return _mm_srli_epi32(comprBlock, 126); + case 127:return _mm_srli_epi32(comprBlock, 127); + case 128:return _mm_srli_epi32(comprBlock, 128); + case 129:return _mm_srli_epi32(comprBlock, 129); + case 130:return _mm_srli_epi32(comprBlock, 130); + case 131:return _mm_srli_epi32(comprBlock, 131); + case 132:return _mm_srli_epi32(comprBlock, 132); + case 133:return _mm_srli_epi32(comprBlock, 133); + case 134:return _mm_srli_epi32(comprBlock, 134); + case 135:return _mm_srli_epi32(comprBlock, 135); + case 136:return _mm_srli_epi32(comprBlock, 136); + case 137:return _mm_srli_epi32(comprBlock, 137); + case 138:return _mm_srli_epi32(comprBlock, 138); + case 139:return _mm_srli_epi32(comprBlock, 139); + case 140:return _mm_srli_epi32(comprBlock, 140); + case 141:return _mm_srli_epi32(comprBlock, 141); + case 142:return _mm_srli_epi32(comprBlock, 142); + case 143:return _mm_srli_epi32(comprBlock, 143); + case 144:return _mm_srli_epi32(comprBlock, 144); + case 145:return _mm_srli_epi32(comprBlock, 145); + case 146:return _mm_srli_epi32(comprBlock, 146); + case 147:return _mm_srli_epi32(comprBlock, 147); + case 148:return _mm_srli_epi32(comprBlock, 148); + case 149:return _mm_srli_epi32(comprBlock, 149); + case 150:return _mm_srli_epi32(comprBlock, 150); + case 151:return _mm_srli_epi32(comprBlock, 151); + case 152:return _mm_srli_epi32(comprBlock, 152); + case 153:return _mm_srli_epi32(comprBlock, 153); + case 154:return _mm_srli_epi32(comprBlock, 154); + case 155:return _mm_srli_epi32(comprBlock, 155); + case 156:return _mm_srli_epi32(comprBlock, 156); + case 157:return _mm_srli_epi32(comprBlock, 157); + case 158:return _mm_srli_epi32(comprBlock, 158); + case 159:return _mm_srli_epi32(comprBlock, 159); + case 160:return _mm_srli_epi32(comprBlock, 160); + case 161:return _mm_srli_epi32(comprBlock, 161); + case 162:return _mm_srli_epi32(comprBlock, 162); + case 163:return _mm_srli_epi32(comprBlock, 163); + case 164:return _mm_srli_epi32(comprBlock, 164); + case 165:return _mm_srli_epi32(comprBlock, 165); + case 166:return _mm_srli_epi32(comprBlock, 166); + case 167:return _mm_srli_epi32(comprBlock, 167); + case 168:return _mm_srli_epi32(comprBlock, 168); + case 169:return _mm_srli_epi32(comprBlock, 169); + case 170:return _mm_srli_epi32(comprBlock, 170); + case 171:return _mm_srli_epi32(comprBlock, 171); + case 172:return _mm_srli_epi32(comprBlock, 172); + case 173:return _mm_srli_epi32(comprBlock, 173); + case 174:return _mm_srli_epi32(comprBlock, 174); + case 175:return _mm_srli_epi32(comprBlock, 175); + case 176:return _mm_srli_epi32(comprBlock, 176); + case 177:return _mm_srli_epi32(comprBlock, 177); + case 178:return _mm_srli_epi32(comprBlock, 178); + case 179:return _mm_srli_epi32(comprBlock, 179); + case 180:return _mm_srli_epi32(comprBlock, 180); + case 181:return _mm_srli_epi32(comprBlock, 181); + case 182:return _mm_srli_epi32(comprBlock, 182); + case 183:return _mm_srli_epi32(comprBlock, 183); + case 184:return _mm_srli_epi32(comprBlock, 184); + case 185:return _mm_srli_epi32(comprBlock, 185); + case 186:return _mm_srli_epi32(comprBlock, 186); + case 187:return _mm_srli_epi32(comprBlock, 187); + case 188:return _mm_srli_epi32(comprBlock, 188); + case 189:return _mm_srli_epi32(comprBlock, 189); + case 190:return _mm_srli_epi32(comprBlock, 190); + case 191:return _mm_srli_epi32(comprBlock, 191); + case 192:return _mm_srli_epi32(comprBlock, 192); + case 193:return _mm_srli_epi32(comprBlock, 193); + case 194:return _mm_srli_epi32(comprBlock, 194); + case 195:return _mm_srli_epi32(comprBlock, 195); + case 196:return _mm_srli_epi32(comprBlock, 196); + case 197:return _mm_srli_epi32(comprBlock, 197); + case 198:return _mm_srli_epi32(comprBlock, 198); + case 199:return _mm_srli_epi32(comprBlock, 199); + case 200:return _mm_srli_epi32(comprBlock, 200); + case 201:return _mm_srli_epi32(comprBlock, 201); + case 202:return _mm_srli_epi32(comprBlock, 202); + case 203:return _mm_srli_epi32(comprBlock, 203); + case 204:return _mm_srli_epi32(comprBlock, 204); + case 205:return _mm_srli_epi32(comprBlock, 205); + case 206:return _mm_srli_epi32(comprBlock, 206); + case 207:return _mm_srli_epi32(comprBlock, 207); + case 208:return _mm_srli_epi32(comprBlock, 208); + case 209:return _mm_srli_epi32(comprBlock, 209); + case 210:return _mm_srli_epi32(comprBlock, 210); + case 211:return _mm_srli_epi32(comprBlock, 211); + case 212:return _mm_srli_epi32(comprBlock, 212); + case 213:return _mm_srli_epi32(comprBlock, 213); + case 214:return _mm_srli_epi32(comprBlock, 214); + case 215:return _mm_srli_epi32(comprBlock, 215); + case 216:return _mm_srli_epi32(comprBlock, 216); + case 217:return _mm_srli_epi32(comprBlock, 217); + case 218:return _mm_srli_epi32(comprBlock, 218); + case 219:return _mm_srli_epi32(comprBlock, 219); + case 220:return _mm_srli_epi32(comprBlock, 220); + case 221:return _mm_srli_epi32(comprBlock, 221); + case 222:return _mm_srli_epi32(comprBlock, 222); + case 223:return _mm_srli_epi32(comprBlock, 223); + case 224:return _mm_srli_epi32(comprBlock, 224); + case 225:return _mm_srli_epi32(comprBlock, 225); + case 226:return _mm_srli_epi32(comprBlock, 226); + case 227:return _mm_srli_epi32(comprBlock, 227); + case 228:return _mm_srli_epi32(comprBlock, 228); + case 229:return _mm_srli_epi32(comprBlock, 229); + case 230:return _mm_srli_epi32(comprBlock, 230); + case 231:return _mm_srli_epi32(comprBlock, 231); + case 232:return _mm_srli_epi32(comprBlock, 232); + case 233:return _mm_srli_epi32(comprBlock, 233); + case 234:return _mm_srli_epi32(comprBlock, 234); + case 235:return _mm_srli_epi32(comprBlock, 235); + case 236:return _mm_srli_epi32(comprBlock, 236); + case 237:return _mm_srli_epi32(comprBlock, 237); + case 238:return _mm_srli_epi32(comprBlock, 238); + case 239:return _mm_srli_epi32(comprBlock, 239); + case 240:return _mm_srli_epi32(comprBlock, 240); + case 241:return _mm_srli_epi32(comprBlock, 241); + case 242:return _mm_srli_epi32(comprBlock, 242); + case 243:return _mm_srli_epi32(comprBlock, 243); + case 244:return _mm_srli_epi32(comprBlock, 244); + case 245:return _mm_srli_epi32(comprBlock, 245); + case 246:return _mm_srli_epi32(comprBlock, 246); + case 247:return _mm_srli_epi32(comprBlock, 247); + case 248:return _mm_srli_epi32(comprBlock, 248); + case 249:return _mm_srli_epi32(comprBlock, 249); + case 250:return _mm_srli_epi32(comprBlock, 250); + case 251:return _mm_srli_epi32(comprBlock, 251); + case 252:return _mm_srli_epi32(comprBlock, 252); + case 253:return _mm_srli_epi32(comprBlock, 253); + case 254:return _mm_srli_epi32(comprBlock, 254); + case 255:return _mm_srli_epi32(comprBlock, 255); + default: _mm_srli_epi32(comprBlock, 255); break; } - - inline static void unrolledUnpacking_10_3(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 3) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock , mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 3), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 9), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 15), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 21), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 27), mask)); - } - - inline static void unrolledUnpacking_8_4(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 4) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock, mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 4), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 28), mask)); - } - - inline static void unrolledUnpacking_6_5(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 5) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock, mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 5), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 15), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 25), mask)); - } - - inline static void unrolledUnpacking_5_6(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 6) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock, mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); - } - - inline static void unrolledUnpacking_4_8(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 8) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock, mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); - } - - inline static void unrolledUnpacking_3_10(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 10) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock, mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); - } - - inline static void unrolledUnpacking_2_16(const __m128i &comprBlock, - __m128i *&out) { - const __m128i mask = _mm_set1_epi32((static_cast(1) << 16) - 1); - _mm_storeu_si128(out++, _mm_and_si128( comprBlock, mask)); - _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); - } - - inline static void unrolledUnpacking_1_32(const __m128i &comprBlock, - __m128i *&out) { - _mm_storeu_si128(out++, comprBlock); - } - - /** - * Decompresses n quads, i.e. 4x n integers. Thereby, n must correspond to - * one of the ten compression modes presented in the original paper. - */ - inline static void decomprCompleteBlock(const uint8_t &n,const __m128i *&in, - __m128i *&out) { - const __m128i comprBlock = _mm_loadu_si128(in++); - - switch (n) { - case 32: // b = 1 - unrolledUnpacking_32_1(comprBlock, out); - break; - case 16: // b = 2 - unrolledUnpacking_16_2(comprBlock, out); - break; - case 10: // b = 3 - unrolledUnpacking_10_3(comprBlock, out); - break; - case 8: // b = 4 - unrolledUnpacking_8_4(comprBlock, out); - break; - case 6: // b = 5 - unrolledUnpacking_6_5(comprBlock, out); - break; - case 5: // b = 6 - unrolledUnpacking_5_6(comprBlock, out); - break; - case 4: // b = 8 - unrolledUnpacking_4_8(comprBlock, out); - break; - case 3: // b = 10 - unrolledUnpacking_3_10(comprBlock, out); - break; - case 2: // b = 16 - unrolledUnpacking_2_16(comprBlock, out); - break; - case 1: // b = 32 - unrolledUnpacking_1_32(comprBlock, out); - break; - } - } - - /** - * The original variant of the compression part of the algorithm. - */ - inline static void encodeArrayInternal_woRingBuf(const uint32_t *in, - const size_t len, - uint32_t *out, - size_t &nvalue) { - // The start of the header. - uint32_t *const outHeader32 = out; - // The start of the selectors area. - uint8_t *outSelArea8 = - reinterpret_cast(outHeader32 + countHeader32); - uint8_t *const initOutSelArea8 = outSelArea8; - - // The number of input quads, i.e., groups of four integers. Note that we - // assume the number of input integers to be a multiple of four. - const size_t countIn128 = len * sizeof(uint32_t) / sizeof(__m128i); - - // Step 1: Generation of the quad max array - // ======================================== - uint32_t *quadMaxArray = new uint32_t[countIn128]; - for (size_t i = 0; i < len; i += 4) { - const uint32_t pseudoQuadMax = in[i] | in[i + 1] | in[i + 2] | in[i + 3]; - quadMaxArray[i >> 2] = pseudoQuadMax; - } - - // Step 2: Pattern selection algorithm - // =================================== - // As described in the paper. - size_t l = countIn128; - size_t j = 0; - size_t pos = 0; - // Whether we have an even number of selectors so far. - bool even = true; - while (l > 0) { - uint8_t i; - for (i = 0; i <= 9; i++) { - const uint8_t n = tableNum[i]; - // Unlike the original pattern selection algorithm, we look up the mask - // directly instead of calculating it from a looked up bit width. - const uint32_t mask = tableMask[i]; - pos = 0; - const size_t maxPos = std::min(static_cast(n), l); - while (pos < maxPos && quadMaxArray[j + pos] <= mask) - pos++; - if (pos == maxPos) - break; - } - l -= pos; - j += pos; - // Store the selector. - if (even) - *outSelArea8 = i; - else - *outSelArea8++ |= (i << 4); - even = !even; - } - if (!even) - // The last used byte in the selectors area was touched, but not finished. - outSelArea8++; - // The number of quads in the last block. - const uint8_t countQuadsLastBlock = static_cast(pos); - *outSelArea8 = countQuadsLastBlock; - - delete[] quadMaxArray; - - // The number of bytes actually used for the selectors area. - const size_t countSelArea8Used = outSelArea8 - initOutSelArea8; - // The total number of selectors. - const int countSels = countSelArea8Used * 2 - (even ? 0 : 1); - - // The number of bytes that could be required for the selectors area in the - // worst case. - const size_t countSelArea8WorstCase = countIn128 / 2 + (countIn128 & 1); - - // Depending on whether we want to leave the "pessimistic gap" between the - // selectors area and the data area, we either reserve the true or the - // worst-case number of bytes for the selectors area. Note that this has no - // effect on the amount of data that we actually have to write. - const size_t countSelArea8 = - pessimisticGap ? countSelArea8WorstCase : countSelArea8Used; - - const size_t countPadBytes = getCountPadBytes(countSelArea8); - // The start of the data area. - __m128i *outDataArea128 = reinterpret_cast<__m128i *>(initOutSelArea8 + - countSelArea8 + sizeof(uint8_t) + countPadBytes); - const __m128i *const initOutDataArea128 = outDataArea128; - uint8_t* pad8 = (uint8_t*)outDataArea128 - countPadBytes; - while (pad8 < (uint8_t*)outDataArea128) - *pad8++ = 0; // clear padding bytes - - const __m128i *in128 = reinterpret_cast(in); - - // Step 3: Packing the uncompressed integers - // ========================================= - // Iterate over the selectors obtained from the pattern selection algorithm - // and compress the blocks accordingly. The last block is always treated - // specially, since it might not be "full". - for (int m = 0; m < countSels - 1; m++) { - const uint8_t i = extractSel(initOutSelArea8, m); - const size_t n = tableNum[i]; - comprCompleteBlock(n, in128, outDataArea128); - } - if (countQuadsLastBlock) - comprIncompleteBlock(countQuadsLastBlock, in128, outDataArea128); - - // Write some meta data to the header. - outHeader32[0] = len; - outHeader32[1] = countSels; - outHeader32[2] = countSelArea8; - - // The position of the last byte written to the output relative to the - // start of the output. Note that the actual number of written bytes might - // be slightly lower due to the inserted padding. However, it might even be - // significantly lower, if pessimisticGap is true. - const size_t nbytes = countHeader32 * sizeof(uint32_t) + - countSelArea8 + sizeof(uint8_t) + countPadBytes + - (outDataArea128 - initOutDataArea128) * sizeof(__m128i); - // Rounding the number of bytes to full 32-bit integers. - nvalue = div_roundup(nbytes, sizeof(uint32_t)); - } - - /** - * The variant of the compression part using a ring buffer for the pseudo - * quad max values. - */ - inline static void encodeArrayInternal_wRingBuf(const uint32_t *in, - const size_t len, - uint32_t *out, - size_t &nvalue) { - // The start of the header. - uint32_t *const outHeader32 = out; - // The start of the selectors area. - uint8_t *outSelArea8 = - reinterpret_cast(outHeader32 + countHeader32); - uint8_t *const initOutSelArea8 = outSelArea8; - - // The number of input quads, i.e., groups of four integers. Note that we - // assume the number of input integers to be a multiple of four. - const size_t countIn128 = len * sizeof(uint32_t) / sizeof(__m128i); - - // Maximum size of the quad max ring buffer. Note that to determine the - // next selector, we need to consider at most 32 pseudo quad max values, - // since that is the maximum number of input quads to be packed into one - // compressed block. - const size_t rbMaxSize = 32; - // The quad max ring buffer. - uint32_t quadMaxRb[rbMaxSize]; - // The current position and number of valid elements in the ring buffer. - size_t rbPos = 0; - size_t rbSize = 0; - - // The number of bytes that could be required for the selectors area in the - // worst case. In this implementation we immediately compress a block when - // we have determined the selector. Hence, we do not know the total number - // of selectors before we start the actual compression, such that we need - // to assume the worst case in order to guarantee that the selectors area - // and the data area do not overlap. - const size_t countSelArea8WorstCase = countIn128 / 2 + (countIn128 & 1); - size_t countPadBytes_wGap = getCountPadBytes(countSelArea8WorstCase); - - // The start of the data area. - __m128i *outDataArea128_wGap = - reinterpret_cast<__m128i *>(initOutSelArea8 + countSelArea8WorstCase + - sizeof(uint8_t) + countPadBytes_wGap); - __m128i *const initOutDataArea128_wGap = outDataArea128_wGap; - - const __m128i *in128 = reinterpret_cast(in); - const __m128i *const endIn128 = in128 + countIn128; - - // The following loop interleaves all three steps of the original - // algorithm: (1) the generation of the pseudo quad max values, (2) the - // pattern selection algorithm, and (3) the packing of the input blocks. - - // Whether we have an even number of selectors so far. - bool even = true; - size_t pos = 0; - while (in128 < endIn128) { - // Step 1: Refill the quad max ring buffer. - const size_t countRemainingIn128 = static_cast(endIn128 - in128); - const size_t rbSizeToReach = std::min(rbMaxSize, countRemainingIn128); - for (; rbSize < rbSizeToReach; rbSize++) { - const uint32_t *const in32 = - reinterpret_cast(in128 + rbSize); - const uint32_t pseudoQuadMax = in32[0] | in32[1] | in32[2] | in32[3]; - quadMaxRb[(rbPos + rbSize) % rbMaxSize] = pseudoQuadMax; - } - - // Step 2: Determine the next selector. - pos = 0; - uint8_t i; - uint8_t n; - for (i = 0; i <= 9; i++) { - n = tableNum[i]; - const uint32_t mask = tableMask[i]; - pos = 0; - const size_t maxPos = std::min(static_cast(n), rbSize); - while (pos < maxPos && quadMaxRb[(rbPos + pos) % rbMaxSize] <= mask) - pos++; - if (pos == maxPos) - break; - } - // Store the selector. - if (even) - *outSelArea8 = i; - else - *outSelArea8++ |= (i << 4); - even = !even; - - // Step 3: Compress the block. - if (pos == n) { - comprCompleteBlock(n, in128, outDataArea128_wGap); - rbPos = (rbPos + n) % rbMaxSize; - rbSize -= n; - // Refilling the ring buffer only here (and once before the loop) does - // not seem to yield any benefit. - } - else - // This can only happen for the last block/selector - comprIncompleteBlock(rbSize, in128, outDataArea128_wGap); - } - if (!even) - // The last used byte in the selectors area was touched, but not finished. - outSelArea8++; - - // The number of quads in the last, possibly non-"full" block. - const uint8_t countQuadsLastBlock = static_cast(pos); - *outSelArea8 = countQuadsLastBlock; - - // The number of bytes actually used for the selectors area. - const size_t countSelArea8Used = outSelArea8 - initOutSelArea8; - // The total number of selectors. - const size_t countSels = countSelArea8Used * 2 - (even ? 0 : 1); - - // Up to here, we have a gap between the last used byte of the selectors - // area and the first byte of the data area (unless all data elements were - // packed with 32 bits each, which is the worst case). If specified so, we - // remove this gap by copying the data area directly behind the used bytes - // of the selectors area. - const size_t countSelArea8 = - pessimisticGap ? countSelArea8WorstCase : countSelArea8Used; - const size_t countDataArea128 = - outDataArea128_wGap - initOutDataArea128_wGap; - size_t actualPaddingBytes; - if (pessimisticGap) - actualPaddingBytes = countPadBytes_wGap; - else { - const size_t countPadBytes_woGap = getCountPadBytes(countSelArea8Used); - actualPaddingBytes = countPadBytes_woGap; - __m128i *const outDataArea128_woGap = - reinterpret_cast<__m128i *>(initOutSelArea8 + countSelArea8Used + - sizeof(uint8_t) + countPadBytes_woGap); - if (outDataArea128_woGap != outDataArea128_wGap) - for (unsigned i = 0; i < countDataArea128; i++) - _mm_storeu_si128(outDataArea128_woGap + i, - _mm_loadu_si128(initOutDataArea128_wGap + i)); - } - - // Write some meta data to the header. - outHeader32[0] = len; - outHeader32[1] = countSels; - outHeader32[2] = countSelArea8; - - // The position of the last byte written to the output relative to the - // start of the output. Note that the actual number of written bytes might - // be slightly lower due to the inserted padding. However, it might even be - // significantly lower, if pessimisticGap is true. - const size_t nbytes = countHeader32 * sizeof(uint32_t) + - countSelArea8 + sizeof(uint8_t) + actualPaddingBytes + - countDataArea128 * sizeof(__m128i); - // Rounding the number of bytes to full 32-bit integers. - nvalue = div_roundup(nbytes, sizeof(uint32_t)); - } - - void encodeArray(const uint32_t *in, const size_t len, uint32_t *out, - size_t &nvalue) { - checkifdivisibleby(len, BlockSize); - - if (useRingBuf) - encodeArrayInternal_wRingBuf(in, len, out, nvalue); - else - encodeArrayInternal_woRingBuf(in, len, out, nvalue); - } - - const uint32_t *decodeArray(const uint32_t *in, const size_t, - uint32_t *out, size_t &nvalue) { - // The start of the header. - const uint32_t *const inHeader32 = in; - nvalue = inHeader32[0]; - const int countSels = inHeader32[1]; - // The number of bytes reserved for the selectors area. This contains the - // bytes actually used for the selectors as well as the "pessimistic gap", - // if specified so. - const size_t countSelArea8 = inHeader32[2]; - - // The start of the selectors area. - const uint8_t *const inSelArea8 = - reinterpret_cast(inHeader32 + countHeader32); - - // The number of bytes actually used within the selectors area. - const size_t countSelArea8Used = countSels / 2 + (countSels & 1); - - const size_t countPadBytes = getCountPadBytes(countSelArea8); - // The start of the data area. - const __m128i *inDataArea128 = - reinterpret_cast(inSelArea8 + countSelArea8 + - sizeof(uint8_t) + countPadBytes); - - __m128i *out128 = reinterpret_cast<__m128i *>(out); - - // Iterate over the selectors and unpack the compressed blocks accordingly. - // The last block is always treated specially, since it might not be "full". - for (int m = 0; m < countSels - 1; m++) { - const uint8_t i = extractSel(inSelArea8, m); - const size_t n = tableNum[i]; - decomprCompleteBlock(n, inDataArea128, out128); - } - const uint8_t countQuadsLastBlock = inSelArea8[countSelArea8Used]; - if (countQuadsLastBlock) - decomprIncompleteBlock(countQuadsLastBlock, inDataArea128, out128); - - return reinterpret_cast(inDataArea128); } +#endif - virtual std::string name() const { - return useRingBuf ? "SIMDGroupSimple_RingBuf" : "SIMDGroupSimple"; - } -}; - -template -const uint8_t SIMDGroupSimple::tableNum[] = { - 32, 16, 10, 8, 6, 5, 4, 3, 2, 1 -}; -template -const uint32_t SIMDGroupSimple::tableMask[] = { - (static_cast(1) << 1) - 1, - (static_cast(1) << 2) - 1, - (static_cast(1) << 3) - 1, - (static_cast(1) << 4) - 1, - (static_cast(1) << 5) - 1, - (static_cast(1) << 6) - 1, - (static_cast(1) << 8) - 1, - (static_cast(1) << 10) - 1, - (static_cast(1) << 16) - 1, - (static_cast(1) << 32) - 1, -}; + /** + * The following ten functions unpack a certain amount of compressed data. + * The function unrolledUnpacking_#n_#b unpacks #n quads, i.e., 4x #n + * integers, from one 128-bit compressed block. + */ + + inline static void unrolledUnpacking_32_1(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32(1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 1), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 2), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 3), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 4), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 5), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 7), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 9), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 11), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 13), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 14), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 15), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 17), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 19), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 21), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 22), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 23), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 25), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 26), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 27), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 28), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 29), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 30), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 31), mask)); + } + + inline static void unrolledUnpacking_16_2(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 2) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 2), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 4), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 14), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 22), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 26), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 28), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 30), mask)); + } + + inline static void unrolledUnpacking_10_3(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 3) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 3), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 9), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 15), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 21), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 27), mask)); + } + + inline static void unrolledUnpacking_8_4(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 4) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 4), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 28), mask)); + } + + inline static void unrolledUnpacking_6_5(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 5) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 5), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 15), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 25), mask)); + } + + inline static void unrolledUnpacking_5_6(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 6) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 6), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 12), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 18), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); + } + + inline static void unrolledUnpacking_4_8(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 8) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 8), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 24), mask)); + } + + inline static void unrolledUnpacking_3_10(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 10) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 10), mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 20), mask)); + } + + inline static void unrolledUnpacking_2_16(const __m128i &comprBlock, + __m128i *&out) { + const __m128i mask = _mm_set1_epi32((static_cast(1) << 16) - 1); + _mm_storeu_si128(out++, _mm_and_si128(comprBlock, mask)); + _mm_storeu_si128(out++, _mm_and_si128(_mm_srli_epi32(comprBlock, 16), mask)); + } + + inline static void unrolledUnpacking_1_32(const __m128i &comprBlock, + __m128i *&out) { + _mm_storeu_si128(out++, comprBlock); + } + + /** + * Decompresses n quads, i.e. 4x n integers. Thereby, n must correspond to + * one of the ten compression modes presented in the original paper. + */ + inline static void decomprCompleteBlock(const uint8_t &n, const __m128i *&in, + __m128i *&out) { + const __m128i comprBlock = _mm_loadu_si128(in++); + + switch (n) { + case 32: // b = 1 + unrolledUnpacking_32_1(comprBlock, out); + break; + case 16: // b = 2 + unrolledUnpacking_16_2(comprBlock, out); + break; + case 10: // b = 3 + unrolledUnpacking_10_3(comprBlock, out); + break; + case 8: // b = 4 + unrolledUnpacking_8_4(comprBlock, out); + break; + case 6: // b = 5 + unrolledUnpacking_6_5(comprBlock, out); + break; + case 5: // b = 6 + unrolledUnpacking_5_6(comprBlock, out); + break; + case 4: // b = 8 + unrolledUnpacking_4_8(comprBlock, out); + break; + case 3: // b = 10 + unrolledUnpacking_3_10(comprBlock, out); + break; + case 2: // b = 16 + unrolledUnpacking_2_16(comprBlock, out); + break; + case 1: // b = 32 + unrolledUnpacking_1_32(comprBlock, out); + break; + } + } + + /** + * The original variant of the compression part of the algorithm. + */ + inline static void encodeArrayInternal_woRingBuf(const uint32_t *in, + const size_t len, + uint32_t *out, + size_t &nvalue) { + // The start of the header. + uint32_t *const outHeader32 = out; + // The start of the selectors area. + uint8_t *outSelArea8 = + reinterpret_cast(outHeader32 + countHeader32); + uint8_t *const initOutSelArea8 = outSelArea8; + + // The number of input quads, i.e., groups of four integers. Note that we + // assume the number of input integers to be a multiple of four. + const size_t countIn128 = len * sizeof(uint32_t) / sizeof(__m128i); + + // Step 1: Generation of the quad max array + // ======================================== + uint32_t *quadMaxArray = new uint32_t[countIn128]; + for (size_t i = 0; i < len; i += 4) { + const uint32_t pseudoQuadMax = in[i] | in[i + 1] | in[i + 2] | in[i + 3]; + quadMaxArray[i >> 2] = pseudoQuadMax; + } + + // Step 2: Pattern selection algorithm + // =================================== + // As described in the paper. + size_t l = countIn128; + size_t j = 0; + size_t pos = 0; + // Whether we have an even number of selectors so far. + bool even = true; + while (l > 0) { + uint8_t i; + for (i = 0; i <= 9; i++) { + const uint8_t n = tableNum[i]; + // Unlike the original pattern selection algorithm, we look up the mask + // directly instead of calculating it from a looked up bit width. + const uint32_t mask = tableMask[i]; + pos = 0; + const size_t maxPos = std::min(static_cast(n), l); + while (pos < maxPos && quadMaxArray[j + pos] <= mask) + pos++; + if (pos == maxPos) + break; + } + l -= pos; + j += pos; + // Store the selector. + if (even) + *outSelArea8 = i; + else + *outSelArea8++ |= (i << 4); + even = !even; + } + if (!even) + // The last used byte in the selectors area was touched, but not finished. + outSelArea8++; + // The number of quads in the last block. + const uint8_t countQuadsLastBlock = static_cast(pos); + *outSelArea8 = countQuadsLastBlock; + + delete[] quadMaxArray; + + // The number of bytes actually used for the selectors area. + const size_t countSelArea8Used = outSelArea8 - initOutSelArea8; + // The total number of selectors. + const int countSels = countSelArea8Used * 2 - (even ? 0 : 1); + + // The number of bytes that could be required for the selectors area in the + // worst case. + const size_t countSelArea8WorstCase = countIn128 / 2 + (countIn128 & 1); + + // Depending on whether we want to leave the "pessimistic gap" between the + // selectors area and the data area, we either reserve the true or the + // worst-case number of bytes for the selectors area. Note that this has no + // effect on the amount of data that we actually have to write. + const size_t countSelArea8 = + pessimisticGap ? countSelArea8WorstCase : countSelArea8Used; + + const size_t countPadBytes = getCountPadBytes(countSelArea8); + // The start of the data area. + __m128i *outDataArea128 = reinterpret_cast<__m128i *>(initOutSelArea8 + + countSelArea8 + sizeof(uint8_t) + countPadBytes); + const __m128i *const initOutDataArea128 = outDataArea128; + uint8_t *pad8 = (uint8_t *) outDataArea128 - countPadBytes; + while (pad8 < (uint8_t *) outDataArea128) + *pad8++ = 0; // clear padding bytes + + const __m128i *in128 = reinterpret_cast(in); + + // Step 3: Packing the uncompressed integers + // ========================================= + // Iterate over the selectors obtained from the pattern selection algorithm + // and compress the blocks accordingly. The last block is always treated + // specially, since it might not be "full". + for (int m = 0; m < countSels - 1; m++) { + const uint8_t i = extractSel(initOutSelArea8, m); + const size_t n = tableNum[i]; + comprCompleteBlock(n, in128, outDataArea128); + } + if (countQuadsLastBlock) + comprIncompleteBlock(countQuadsLastBlock, in128, outDataArea128); + + // Write some meta data to the header. + outHeader32[0] = len; + outHeader32[1] = countSels; + outHeader32[2] = countSelArea8; + + // The position of the last byte written to the output relative to the + // start of the output. Note that the actual number of written bytes might + // be slightly lower due to the inserted padding. However, it might even be + // significantly lower, if pessimisticGap is true. + const size_t nbytes = countHeader32 * sizeof(uint32_t) + + countSelArea8 + sizeof(uint8_t) + countPadBytes + + (outDataArea128 - initOutDataArea128) * sizeof(__m128i); + // Rounding the number of bytes to full 32-bit integers. + nvalue = div_roundup(nbytes, sizeof(uint32_t)); + } + + /** + * The variant of the compression part using a ring buffer for the pseudo + * quad max values. + */ + inline static void encodeArrayInternal_wRingBuf(const uint32_t *in, + const size_t len, + uint32_t *out, + size_t &nvalue) { + // The start of the header. + uint32_t *const outHeader32 = out; + // The start of the selectors area. + uint8_t *outSelArea8 = + reinterpret_cast(outHeader32 + countHeader32); + uint8_t *const initOutSelArea8 = outSelArea8; + + // The number of input quads, i.e., groups of four integers. Note that we + // assume the number of input integers to be a multiple of four. + const size_t countIn128 = len * sizeof(uint32_t) / sizeof(__m128i); + + // Maximum size of the quad max ring buffer. Note that to determine the + // next selector, we need to consider at most 32 pseudo quad max values, + // since that is the maximum number of input quads to be packed into one + // compressed block. + const size_t rbMaxSize = 32; + // The quad max ring buffer. + uint32_t quadMaxRb[rbMaxSize]; + // The current position and number of valid elements in the ring buffer. + size_t rbPos = 0; + size_t rbSize = 0; + + // The number of bytes that could be required for the selectors area in the + // worst case. In this implementation we immediately compress a block when + // we have determined the selector. Hence, we do not know the total number + // of selectors before we start the actual compression, such that we need + // to assume the worst case in order to guarantee that the selectors area + // and the data area do not overlap. + const size_t countSelArea8WorstCase = countIn128 / 2 + (countIn128 & 1); + size_t countPadBytes_wGap = getCountPadBytes(countSelArea8WorstCase); + + // The start of the data area. + __m128i *outDataArea128_wGap = + reinterpret_cast<__m128i *>(initOutSelArea8 + countSelArea8WorstCase + + sizeof(uint8_t) + countPadBytes_wGap); + __m128i *const initOutDataArea128_wGap = outDataArea128_wGap; + + const __m128i *in128 = reinterpret_cast(in); + const __m128i *const endIn128 = in128 + countIn128; + + // The following loop interleaves all three steps of the original + // algorithm: (1) the generation of the pseudo quad max values, (2) the + // pattern selection algorithm, and (3) the packing of the input blocks. + + // Whether we have an even number of selectors so far. + bool even = true; + size_t pos = 0; + while (in128 < endIn128) { + // Step 1: Refill the quad max ring buffer. + const size_t countRemainingIn128 = static_cast(endIn128 - in128); + const size_t rbSizeToReach = std::min(rbMaxSize, countRemainingIn128); + for (; rbSize < rbSizeToReach; rbSize++) { + const uint32_t *const in32 = + reinterpret_cast(in128 + rbSize); + const uint32_t pseudoQuadMax = in32[0] | in32[1] | in32[2] | in32[3]; + quadMaxRb[(rbPos + rbSize) % rbMaxSize] = pseudoQuadMax; + } + + // Step 2: Determine the next selector. + pos = 0; + uint8_t i; + uint8_t n; + for (i = 0; i <= 9; i++) { + n = tableNum[i]; + const uint32_t mask = tableMask[i]; + pos = 0; + const size_t maxPos = std::min(static_cast(n), rbSize); + while (pos < maxPos && quadMaxRb[(rbPos + pos) % rbMaxSize] <= mask) + pos++; + if (pos == maxPos) + break; + } + // Store the selector. + if (even) + *outSelArea8 = i; + else + *outSelArea8++ |= (i << 4); + even = !even; + + // Step 3: Compress the block. + if (pos == n) { + comprCompleteBlock(n, in128, outDataArea128_wGap); + rbPos = (rbPos + n) % rbMaxSize; + rbSize -= n; + // Refilling the ring buffer only here (and once before the loop) does + // not seem to yield any benefit. + } else + // This can only happen for the last block/selector + comprIncompleteBlock(rbSize, in128, outDataArea128_wGap); + } + if (!even) + // The last used byte in the selectors area was touched, but not finished. + outSelArea8++; + + // The number of quads in the last, possibly non-"full" block. + const uint8_t countQuadsLastBlock = static_cast(pos); + *outSelArea8 = countQuadsLastBlock; + + // The number of bytes actually used for the selectors area. + const size_t countSelArea8Used = outSelArea8 - initOutSelArea8; + // The total number of selectors. + const size_t countSels = countSelArea8Used * 2 - (even ? 0 : 1); + + // Up to here, we have a gap between the last used byte of the selectors + // area and the first byte of the data area (unless all data elements were + // packed with 32 bits each, which is the worst case). If specified so, we + // remove this gap by copying the data area directly behind the used bytes + // of the selectors area. + const size_t countSelArea8 = + pessimisticGap ? countSelArea8WorstCase : countSelArea8Used; + const size_t countDataArea128 = + outDataArea128_wGap - initOutDataArea128_wGap; + size_t actualPaddingBytes; + if (pessimisticGap) + actualPaddingBytes = countPadBytes_wGap; + else { + const size_t countPadBytes_woGap = getCountPadBytes(countSelArea8Used); + actualPaddingBytes = countPadBytes_woGap; + __m128i *const outDataArea128_woGap = + reinterpret_cast<__m128i *>(initOutSelArea8 + countSelArea8Used + + sizeof(uint8_t) + countPadBytes_woGap); + if (outDataArea128_woGap != outDataArea128_wGap) + for (unsigned i = 0; i < countDataArea128; i++) + _mm_storeu_si128(outDataArea128_woGap + i, + _mm_loadu_si128(initOutDataArea128_wGap + i)); + } + + // Write some meta data to the header. + outHeader32[0] = len; + outHeader32[1] = countSels; + outHeader32[2] = countSelArea8; + + // The position of the last byte written to the output relative to the + // start of the output. Note that the actual number of written bytes might + // be slightly lower due to the inserted padding. However, it might even be + // significantly lower, if pessimisticGap is true. + const size_t nbytes = countHeader32 * sizeof(uint32_t) + + countSelArea8 + sizeof(uint8_t) + actualPaddingBytes + + countDataArea128 * sizeof(__m128i); + // Rounding the number of bytes to full 32-bit integers. + nvalue = div_roundup(nbytes, sizeof(uint32_t)); + } + + void encodeArray(const uint32_t *in, const size_t len, uint32_t *out, + size_t &nvalue) { + checkifdivisibleby(len, BlockSize); + + if (useRingBuf) + encodeArrayInternal_wRingBuf(in, len, out, nvalue); + else + encodeArrayInternal_woRingBuf(in, len, out, nvalue); + } + + const uint32_t *decodeArray(const uint32_t *in, const size_t, + uint32_t *out, size_t &nvalue) { + // The start of the header. + const uint32_t *const inHeader32 = in; + nvalue = inHeader32[0]; + const int countSels = inHeader32[1]; + // The number of bytes reserved for the selectors area. This contains the + // bytes actually used for the selectors as well as the "pessimistic gap", + // if specified so. + const size_t countSelArea8 = inHeader32[2]; + + // The start of the selectors area. + const uint8_t *const inSelArea8 = + reinterpret_cast(inHeader32 + countHeader32); + + // The number of bytes actually used within the selectors area. + const size_t countSelArea8Used = countSels / 2 + (countSels & 1); + + const size_t countPadBytes = getCountPadBytes(countSelArea8); + // The start of the data area. + const __m128i *inDataArea128 = + reinterpret_cast(inSelArea8 + countSelArea8 + + sizeof(uint8_t) + countPadBytes); + + __m128i *out128 = reinterpret_cast<__m128i *>(out); + + // Iterate over the selectors and unpack the compressed blocks accordingly. + // The last block is always treated specially, since it might not be "full". + for (int m = 0; m < countSels - 1; m++) { + const uint8_t i = extractSel(inSelArea8, m); + const size_t n = tableNum[i]; + decomprCompleteBlock(n, inDataArea128, out128); + } + const uint8_t countQuadsLastBlock = inSelArea8[countSelArea8Used]; + if (countQuadsLastBlock) + decomprIncompleteBlock(countQuadsLastBlock, inDataArea128, out128); + + return reinterpret_cast(inDataArea128); + } + + virtual std::string name() const { + return useRingBuf ? "SIMDGroupSimple_RingBuf" : "SIMDGroupSimple"; + } + }; + + template + const uint8_t SIMDGroupSimple::tableNum[] = { + 32, 16, 10, 8, 6, 5, 4, 3, 2, 1 + }; + template + const uint32_t SIMDGroupSimple::tableMask[] = { + (static_cast(1) << 1) - 1, + (static_cast(1) << 2) - 1, + (static_cast(1) << 3) - 1, + (static_cast(1) << 4) - 1, + (static_cast(1) << 5) - 1, + (static_cast(1) << 6) - 1, + (static_cast(1) << 8) - 1, + (static_cast(1) << 10) - 1, + (static_cast(1) << 16) - 1, + (static_cast(1) << 32) - 1, + }; } // namespace FastPForLib diff --git a/src/simdbitpacking.cpp b/src/simdbitpacking.cpp index 953ba70..186f585 100644 --- a/src/simdbitpacking.cpp +++ b/src/simdbitpacking.cpp @@ -8945,7 +8945,70 @@ static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, _mm_storeu_si128(out++, OutReg4); } #elif defined(__GNUC__) && defined(__ARM_NEON__) - // TODO: HERE INSERT + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 3), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 4), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 5), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 6), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 7), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 8), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 9), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 10), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 11), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 12), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 13), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 14), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 15), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 16), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 17), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 18), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 19), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 20), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 21), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 22), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 23), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 24), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 25), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 26), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 27), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 28), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 29), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 30), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 31), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); #endif } diff --git a/src/simdunalignedbitpacking.cpp b/src/simdunalignedbitpacking.cpp index f08558e..07dd5ba 100644 --- a/src/simdunalignedbitpacking.cpp +++ b/src/simdunalignedbitpacking.cpp @@ -8944,7 +8944,70 @@ static void __SIMD_fastpack16_32(const uint32_t *__restrict__ _in, _mm_storeu_si128(out++, OutReg4); } #elif defined(__GNUC__) && defined(__ARM_NEON__) - // TODO: HERE INSERT + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 3), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 4), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 5), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 6), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 7), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 8), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 9), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 10), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 11), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 12), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 13), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 14), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 15), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 16), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 17), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 18), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 19), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 20), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 21), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 22), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 23), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 24), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 25), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 26), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 27), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); + OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 28), mask); + OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 29), mask); + OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 30), mask); + OutReg4 = _mm_and_si128(_mm_srli_epi32(InReg2, 31), mask); + _mm_store_si128(out++, OutReg1); + _mm_store_si128(out++, OutReg2); + _mm_store_si128(out++, OutReg3); + _mm_store_si128(out++, OutReg4); #endif } From 5f5858c48d2f9e09f24869421ba553c2b553114c Mon Sep 17 00:00:00 2001 From: seb711 Date: Mon, 4 Dec 2023 14:40:58 +0100 Subject: [PATCH 04/67] added arm cmake dependent compiling --- headers/util.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/headers/util.h b/headers/util.h index d783283..2068cfb 100644 --- a/headers/util.h +++ b/headers/util.h @@ -122,6 +122,8 @@ __attribute__((const)) inline uint32_t gccbits(const uint64_t v) { return static_cast(index + 32 + 1); } #endif +#elif defined(__GNUC__) || defined(__clang__) || defined(__ARM_NEON) + return 64 - __builtin_clzll(v); #else uint32_t answer; __asm__("bsr %1, %0;" : "=r"(answer) : "r"(v)); @@ -173,6 +175,8 @@ inline void checkifdivisibleby(size_t a, uint32_t x) { __attribute__((const)) inline uint32_t asmbits(const uint32_t v) { #ifdef _MSC_VER return gccbits(v); +#elifdef __ARM_NEON__ + return gccbits(v); #else if (v == 0) return 0; @@ -185,6 +189,8 @@ __attribute__((const)) inline uint32_t asmbits(const uint32_t v) { __attribute__((const)) inline uint32_t asmbits(const uint64_t v) { #ifdef _MSC_VER return gccbits(v); +#elif defined(__ARM_NEON__) + return gccbits(v); #else if (v == 0) return 0; uint64_t answer; From eaba7b41e2eea33463a2eb6e01d6d5456882623d Mon Sep 17 00:00:00 2001 From: kosakseb Date: Mon, 4 Dec 2023 16:40:22 +0100 Subject: [PATCH 05/67] fixed codecfactory for btrblocks use --- headers/codecfactory.h | 30 ++++++++++++++++++++++++++++++ headers/common.h | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/headers/codecfactory.h b/headers/codecfactory.h index 1a3bf32..3380287 100644 --- a/headers/codecfactory.h +++ b/headers/codecfactory.h @@ -10,6 +10,36 @@ #include "codecs.h" +#include "common.h" +#include "codecs.h" +#include "vsencoding.h" +#include "util.h" +#include "simple16.h" +#include "simple9.h" +#include "simple9_rle.h" +#include "simple8b.h" +#include "simple8b_rle.h" +#include "newpfor.h" +#include "simdnewpfor.h" +#include "optpfor.h" +#include "simdoptpfor.h" +#include "fastpfor.h" +#include "simdfastpfor.h" +#include "variablebyte.h" +#include "compositecodec.h" +#include "blockpacking.h" +#include "pfor.h" +#include "simdpfor.h" +#include "pfor2008.h" +#include "VarIntG8IU.h" +#include "simdbinarypacking.h" +#include "snappydelta.h" +#include "varintgb.h" +#include "simdvariablebyte.h" +#include "streamvariablebyte.h" +#include "simdgroupsimple.h" + + namespace FastPForLib { typedef std::map> CodecMap; diff --git a/headers/common.h b/headers/common.h index ae34649..ea457cd 100644 --- a/headers/common.h +++ b/headers/common.h @@ -12,7 +12,7 @@ #include #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include -#elif defined(__GNUC__) && defined(__ARM_NEON__) +#elif defined(__GNUC__) && defined(__aarch64__) #include #endif From 2aae0b69afbbcb7f022a68812925d32455b2ae71 Mon Sep 17 00:00:00 2001 From: seb711 Date: Mon, 4 Dec 2023 18:16:27 +0100 Subject: [PATCH 06/67] add testing --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d317b46..b4521f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -177,6 +177,12 @@ add_executable(gapstats src/gapstats.cpp) add_executable(partitionbylength src/partitionbylength.cpp) add_executable(csv2maropu src/csv2maropu.cpp) +if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm") + target_link_libraries(gapstats PUBLIC simde) + target_link_libraries(partitionbylength PUBLIC simde) + target_link_libraries(csv2maropu PUBLIC simde) +endif() + add_executable(entropy src/entropy.cpp) target_link_libraries(entropy FastPFOR) From b2b421bbd9e4a9222b6a8c1cc31e6fda4ca6cb17 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:09:42 +0100 Subject: [PATCH 07/67] fixed codecfactory removed header imports --- src/codecfactory.cpp | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/src/codecfactory.cpp b/src/codecfactory.cpp index 812659f..f2db359 100644 --- a/src/codecfactory.cpp +++ b/src/codecfactory.cpp @@ -1,32 +1,4 @@ #include "codecfactory.h" -#include "common.h" -#include "codecs.h" -#include "vsencoding.h" -#include "util.h" -#include "simple16.h" -#include "simple9.h" -#include "simple9_rle.h" -#include "simple8b.h" -#include "simple8b_rle.h" -#include "newpfor.h" -#include "simdnewpfor.h" -#include "optpfor.h" -#include "simdoptpfor.h" -#include "fastpfor.h" -#include "simdfastpfor.h" -#include "variablebyte.h" -#include "compositecodec.h" -#include "blockpacking.h" -#include "pfor.h" -#include "simdpfor.h" -#include "pfor2008.h" -#include "VarIntG8IU.h" -#include "simdbinarypacking.h" -#include "snappydelta.h" -#include "varintgb.h" -#include "simdvariablebyte.h" -#include "streamvariablebyte.h" -#include "simdgroupsimple.h" namespace FastPForLib { std::vector> CODECFactory::allSchemes() { From e80a1f15c41f26da1094097ecd8728b6d155fb74 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:26:42 +0100 Subject: [PATCH 08/67] added test print --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b4521f3..2cfbbaa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,6 +25,8 @@ set(PROJECT_VERSION "0.1.9") include(DetectCPUFeatures) include(CheckCXXCompilerFlag) +message("Arch ${CMAKE_SYSTEM_PROCESSOR}") + # Runs compiler with "-dumpversion" and parses major/minor # version with a regex. # From 12f0f15ccb0f0b7e7628c3305254a0cb483872e8 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:27:55 +0100 Subject: [PATCH 09/67] added test print --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2cfbbaa..fca0100 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ set(PROJECT_VERSION "0.1.9") include(DetectCPUFeatures) include(CheckCXXCompilerFlag) -message("Arch ${CMAKE_SYSTEM_PROCESSOR}") +message("Building for architecture: ${CMAKE_SYSTEM_PROCESSOR}") # Runs compiler with "-dumpversion" and parses major/minor # version with a regex. @@ -104,7 +104,7 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64") else () message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") endif() -elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "arm") +elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") CHECK_CXX_COMPILER_FLAG("-mfpu=neon" COMPILER_SUPPORTS_NEON) if( COMPILER_SUPPORTS_NEON ) From 23f613b3e7131fbd35e7c41cd22310616612fe00 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:29:13 +0100 Subject: [PATCH 10/67] added test print --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fca0100..1c6aad4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,13 +105,13 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64") message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") endif() elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") - CHECK_CXX_COMPILER_FLAG("-mfpu=neon" COMPILER_SUPPORTS_NEON) + # CHECK_CXX_COMPILER_FLAG("-mfpu=neon" COMPILER_SUPPORTS_NEON) - if( COMPILER_SUPPORTS_NEON ) - MESSAGE( STATUS "Neon support detected" ) - else() - MESSAGE(FATAL_ERROR "Neon support not detected" ) - endif() + # if( COMPILER_SUPPORTS_NEON ) + # MESSAGE( STATUS "Neon support detected" ) + # else() + # MESSAGE(FATAL_ERROR "Neon support not detected" ) + # endif() # we have to install simde # for arm otherwise the library is not usable From df24a4be19fd5ef7942c351f8afad1c59a521c57 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:31:01 +0100 Subject: [PATCH 11/67] add define native aliases --- headers/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/common.h b/headers/common.h index ea457cd..9d4f9ac 100644 --- a/headers/common.h +++ b/headers/common.h @@ -13,6 +13,7 @@ #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include #elif defined(__GNUC__) && defined(__aarch64__) +#define SIMDE_ENABLE_NATIVE_ALIASES #include #endif From 7e4363a97c59a7bbdfa2985da530be6b0157c07d Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:32:31 +0100 Subject: [PATCH 12/67] add define native aliases --- headers/VarIntG8IU.h | 1 + headers/horizontalbitpacking.h | 5 +++-- src/streamvbyte.c | 1 + src/varintdecode.c | 1 + 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index b222e4c..e3e64db 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -11,6 +11,7 @@ #include #elif defined(__GNUC__) && defined(__ARM_NEON__) /* GCC-compatible compiler, targeting ARM with NEON */ +#define SIMDE_ENABLE_NATIVE_ALIASES #include #endif #include "codecs.h" diff --git a/headers/horizontalbitpacking.h b/headers/horizontalbitpacking.h index d346148..12a1d83 100644 --- a/headers/horizontalbitpacking.h +++ b/headers/horizontalbitpacking.h @@ -22,9 +22,10 @@ #define HORIZONTALBITPACKING_H_ #if !defined(__SSE4_1__) && !(defined(_MSC_VER) && defined(__AVX__)) - #include +#define SIMDE_ENABLE_NATIVE_ALIASES +#include - #pragma message("No SSSE4.1 support? switched to simde") +#pragma message("No SSSE4.1 support? switched to simde") #endif #include "common.h" diff --git a/src/streamvbyte.c b/src/streamvbyte.c index cf1651e..c0bbef4 100644 --- a/src/streamvbyte.c +++ b/src/streamvbyte.c @@ -16,6 +16,7 @@ #include #elif defined(__GNUC__) && defined(__ARM_NEON__) /* GCC-compatible compiler, targeting ARM with NEON */ + #define SIMDE_ENABLE_NATIVE_ALIASES #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ diff --git a/src/varintdecode.c b/src/varintdecode.c index c6badf5..ebf505a 100644 --- a/src/varintdecode.c +++ b/src/varintdecode.c @@ -11,6 +11,7 @@ #include #elif defined(__GNUC__) && defined(__ARM_NEON__) /* GCC-compatible compiler, targeting ARM with NEON */ + #define SIMDE_ENABLE_NATIVE_ALIASES #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ From f8c406d51664dd67a41d180cba09f54501170496 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:37:02 +0100 Subject: [PATCH 13/67] removed arm_neon and added arch64 --- headers/VarIntG8IU.h | 5 +++-- headers/simdgroupsimple.h | 4 ++-- headers/util.h | 6 +++--- src/simdbitpacking.cpp | 2 +- src/simdunalignedbitpacking.cpp | 2 +- src/streamvbyte.c | 3 ++- src/varintdecode.c | 3 ++- 7 files changed, 14 insertions(+), 11 deletions(-) diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index e3e64db..2e59d22 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -2,14 +2,15 @@ * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ -#if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) && !(defined(__ARM_NEON__)) +#if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) && !(defined(__arch64__)) #pragma message("Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler via simde") #else #ifndef VARINTG8IU_H__ #define VARINTG8IU_H__ #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include -#elif defined(__GNUC__) && defined(__ARM_NEON__) + +#elif defined(__GNUC__) && defined(__arch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include diff --git a/headers/simdgroupsimple.h b/headers/simdgroupsimple.h index d0970a5..96141e4 100644 --- a/headers/simdgroupsimple.h +++ b/headers/simdgroupsimple.h @@ -166,7 +166,7 @@ namespace FastPForLib { _mm_storeu_si128(out++, comprBlock); } -#elif defined(__GNUC__) && defined(__ARM_NEON__) +#elif defined(__GNUC__) && defined(__arch64__) inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { // Since we have to produce exactly one compressed vector anyway, we can @@ -641,7 +641,7 @@ namespace FastPForLib { _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); } -#elif defined(__GNUC__) && defined(__ARM_NEON__) +#elif defined(__GNUC__) && defined(__arch64__) inline static void decomprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { diff --git a/headers/util.h b/headers/util.h index 2068cfb..bfcda5c 100644 --- a/headers/util.h +++ b/headers/util.h @@ -122,7 +122,7 @@ __attribute__((const)) inline uint32_t gccbits(const uint64_t v) { return static_cast(index + 32 + 1); } #endif -#elif defined(__GNUC__) || defined(__clang__) || defined(__ARM_NEON) +#elif defined(__GNUC__) || defined(__clang__) || defined(__arch64__) return 64 - __builtin_clzll(v); #else uint32_t answer; @@ -175,7 +175,7 @@ inline void checkifdivisibleby(size_t a, uint32_t x) { __attribute__((const)) inline uint32_t asmbits(const uint32_t v) { #ifdef _MSC_VER return gccbits(v); -#elifdef __ARM_NEON__ +#elifdef __arch64__ return gccbits(v); #else if (v == 0) @@ -189,7 +189,7 @@ __attribute__((const)) inline uint32_t asmbits(const uint32_t v) { __attribute__((const)) inline uint32_t asmbits(const uint64_t v) { #ifdef _MSC_VER return gccbits(v); -#elif defined(__ARM_NEON__) +#elif defined(__arch64__) return gccbits(v); #else if (v == 0) return 0; diff --git a/src/simdbitpacking.cpp b/src/simdbitpacking.cpp index 186f585..a6d58a6 100644 --- a/src/simdbitpacking.cpp +++ b/src/simdbitpacking.cpp @@ -8944,7 +8944,7 @@ static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } -#elif defined(__GNUC__) && defined(__ARM_NEON__) +#elif defined(__GNUC__) && defined(__arch64__) OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); diff --git a/src/simdunalignedbitpacking.cpp b/src/simdunalignedbitpacking.cpp index 07dd5ba..be331e0 100644 --- a/src/simdunalignedbitpacking.cpp +++ b/src/simdunalignedbitpacking.cpp @@ -8943,7 +8943,7 @@ static void __SIMD_fastpack16_32(const uint32_t *__restrict__ _in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } -#elif defined(__GNUC__) && defined(__ARM_NEON__) +#elif defined(__GNUC__) && defined(__arch64__) OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); diff --git a/src/streamvbyte.c b/src/streamvbyte.c index c0bbef4..6468af9 100644 --- a/src/streamvbyte.c +++ b/src/streamvbyte.c @@ -14,7 +14,8 @@ #elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) /* GCC-compatible compiler, targeting x86/x86-64 */ #include -#elif defined(__GNUC__) && defined(__ARM_NEON__) + +#elif defined(__GNUC__) && defined(__arch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include diff --git a/src/varintdecode.c b/src/varintdecode.c index ebf505a..dbf771c 100644 --- a/src/varintdecode.c +++ b/src/varintdecode.c @@ -9,7 +9,8 @@ #elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) /* GCC-compatible compiler, targeting x86/x86-64 */ #include -#elif defined(__GNUC__) && defined(__ARM_NEON__) + +#elif defined(__GNUC__) && defined(__arch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include From 3cfbfdfca9176defddf0303ebf45a20e40ce12ef Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:40:05 +0100 Subject: [PATCH 14/67] removed arm_neon and added arch64 --- headers/VarIntG8IU.h | 2 +- headers/simdgroupsimple.h | 4 ++-- src/simdbitpacking.cpp | 2 +- src/simdunalignedbitpacking.cpp | 2 +- src/streamvbyte.c | 2 +- src/varintdecode.c | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index 2e59d22..967ead0 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -10,7 +10,7 @@ #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include -#elif defined(__GNUC__) && defined(__arch64__) +#elif defined(__arch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include diff --git a/headers/simdgroupsimple.h b/headers/simdgroupsimple.h index 96141e4..030555d 100644 --- a/headers/simdgroupsimple.h +++ b/headers/simdgroupsimple.h @@ -166,7 +166,7 @@ namespace FastPForLib { _mm_storeu_si128(out++, comprBlock); } -#elif defined(__GNUC__) && defined(__arch64__) +#elif defined(__arch64__) inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { // Since we have to produce exactly one compressed vector anyway, we can @@ -641,7 +641,7 @@ namespace FastPForLib { _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); } -#elif defined(__GNUC__) && defined(__arch64__) +#elif defined(__arch64__) inline static void decomprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { diff --git a/src/simdbitpacking.cpp b/src/simdbitpacking.cpp index a6d58a6..c17799e 100644 --- a/src/simdbitpacking.cpp +++ b/src/simdbitpacking.cpp @@ -8944,7 +8944,7 @@ static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } -#elif defined(__GNUC__) && defined(__arch64__) +#elif defined(__arch64__) OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); diff --git a/src/simdunalignedbitpacking.cpp b/src/simdunalignedbitpacking.cpp index be331e0..62b198c 100644 --- a/src/simdunalignedbitpacking.cpp +++ b/src/simdunalignedbitpacking.cpp @@ -8943,7 +8943,7 @@ static void __SIMD_fastpack16_32(const uint32_t *__restrict__ _in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } -#elif defined(__GNUC__) && defined(__arch64__) +#elif defined(__arch64__) OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); diff --git a/src/streamvbyte.c b/src/streamvbyte.c index 6468af9..b5efdb6 100644 --- a/src/streamvbyte.c +++ b/src/streamvbyte.c @@ -15,7 +15,7 @@ /* GCC-compatible compiler, targeting x86/x86-64 */ #include -#elif defined(__GNUC__) && defined(__arch64__) +#elif defined(__arch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include diff --git a/src/varintdecode.c b/src/varintdecode.c index dbf771c..3d182bc 100644 --- a/src/varintdecode.c +++ b/src/varintdecode.c @@ -10,7 +10,7 @@ /* GCC-compatible compiler, targeting x86/x86-64 */ #include -#elif defined(__GNUC__) && defined(__arch64__) +#elif defined(__arch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include From 8cad8b42ef2a62dfeb5805ebe3c3c4589db5cd64 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:43:37 +0100 Subject: [PATCH 15/67] removed arm_neon and added arch64 --- headers/simdgroupsimple.h | 4 ++-- src/simdunalignedbitpacking.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/simdgroupsimple.h b/headers/simdgroupsimple.h index 030555d..1558436 100644 --- a/headers/simdgroupsimple.h +++ b/headers/simdgroupsimple.h @@ -166,7 +166,7 @@ namespace FastPForLib { _mm_storeu_si128(out++, comprBlock); } -#elif defined(__arch64__) +#else inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { // Since we have to produce exactly one compressed vector anyway, we can @@ -641,7 +641,7 @@ namespace FastPForLib { _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); } -#elif defined(__arch64__) +#else inline static void decomprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { diff --git a/src/simdunalignedbitpacking.cpp b/src/simdunalignedbitpacking.cpp index 62b198c..3c7fbed 100644 --- a/src/simdunalignedbitpacking.cpp +++ b/src/simdunalignedbitpacking.cpp @@ -8943,7 +8943,7 @@ static void __SIMD_fastpack16_32(const uint32_t *__restrict__ _in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } -#elif defined(__arch64__) +#else OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); From 735dc039213265426083b514d67ff62fb482242a Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 11:59:47 +0100 Subject: [PATCH 16/67] removed arm_neon and added arch64 --- CMakeLists.txt | 4 ++-- headers/util.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c6aad4..5b8604a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -170,7 +170,7 @@ add_library(FastPFOR STATIC src/streamvbyte.c) set_target_properties(FastPFOR PROPERTIES POSITION_INDEPENDENT_CODE TRUE) -if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm") +if (CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") target_link_libraries(FastPFOR PUBLIC simde) endif() @@ -179,7 +179,7 @@ add_executable(gapstats src/gapstats.cpp) add_executable(partitionbylength src/partitionbylength.cpp) add_executable(csv2maropu src/csv2maropu.cpp) -if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm") +if (CMAKE_SYSTEM_PROCESSOR OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") target_link_libraries(gapstats PUBLIC simde) target_link_libraries(partitionbylength PUBLIC simde) target_link_libraries(csv2maropu PUBLIC simde) diff --git a/headers/util.h b/headers/util.h index bfcda5c..6d2a1f5 100644 --- a/headers/util.h +++ b/headers/util.h @@ -175,7 +175,7 @@ inline void checkifdivisibleby(size_t a, uint32_t x) { __attribute__((const)) inline uint32_t asmbits(const uint32_t v) { #ifdef _MSC_VER return gccbits(v); -#elifdef __arch64__ +#elif defined(__arch64__) return gccbits(v); #else if (v == 0) From f2e893bd84dfe6cd2edf73334d46c27422e17f40 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 12:02:16 +0100 Subject: [PATCH 17/67] false flags --- headers/util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/util.h b/headers/util.h index 6d2a1f5..abf564d 100644 --- a/headers/util.h +++ b/headers/util.h @@ -122,7 +122,7 @@ __attribute__((const)) inline uint32_t gccbits(const uint64_t v) { return static_cast(index + 32 + 1); } #endif -#elif defined(__GNUC__) || defined(__clang__) || defined(__arch64__) +#elif defined(__GNUC__) || defined(__clang__) || defined(__aarch64__) return 64 - __builtin_clzll(v); #else uint32_t answer; @@ -175,7 +175,7 @@ inline void checkifdivisibleby(size_t a, uint32_t x) { __attribute__((const)) inline uint32_t asmbits(const uint32_t v) { #ifdef _MSC_VER return gccbits(v); -#elif defined(__arch64__) +#elif defined(__aarch64__) return gccbits(v); #else if (v == 0) @@ -189,7 +189,7 @@ __attribute__((const)) inline uint32_t asmbits(const uint32_t v) { __attribute__((const)) inline uint32_t asmbits(const uint64_t v) { #ifdef _MSC_VER return gccbits(v); -#elif defined(__arch64__) +#elif defined(__aarch64__) return gccbits(v); #else if (v == 0) return 0; From fd7326b1254471f2fe690073bc3cb3d853a4a676 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 12:03:22 +0100 Subject: [PATCH 18/67] false flags --- headers/VarIntG8IU.h | 4 ++-- src/simdbitpacking.cpp | 2 +- src/streamvbyte.c | 2 +- src/varintdecode.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index 967ead0..6173f29 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -2,7 +2,7 @@ * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ -#if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) && !(defined(__arch64__)) +#if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) && !(defined(__aarch64__)) #pragma message("Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler via simde") #else #ifndef VARINTG8IU_H__ @@ -10,7 +10,7 @@ #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include -#elif defined(__arch64__) +#elif defined(__aarch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include diff --git a/src/simdbitpacking.cpp b/src/simdbitpacking.cpp index c17799e..8b922fc 100644 --- a/src/simdbitpacking.cpp +++ b/src/simdbitpacking.cpp @@ -8944,7 +8944,7 @@ static void __SIMD_fastunpack1_32(const __m128i *__restrict__ in, _mm_storeu_si128(out++, OutReg3); _mm_storeu_si128(out++, OutReg4); } -#elif defined(__arch64__) +#elif defined(__aarch64__) OutReg1 = _mm_and_si128(_mm_srli_epi32(InReg1, 0), mask); OutReg2 = _mm_and_si128(_mm_srli_epi32(InReg2, 1), mask); OutReg3 = _mm_and_si128(_mm_srli_epi32(InReg1, 2), mask); diff --git a/src/streamvbyte.c b/src/streamvbyte.c index b5efdb6..da138a1 100644 --- a/src/streamvbyte.c +++ b/src/streamvbyte.c @@ -15,7 +15,7 @@ /* GCC-compatible compiler, targeting x86/x86-64 */ #include -#elif defined(__arch64__) +#elif defined(__aarch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include diff --git a/src/varintdecode.c b/src/varintdecode.c index 3d182bc..ed3bd00 100644 --- a/src/varintdecode.c +++ b/src/varintdecode.c @@ -10,7 +10,7 @@ /* GCC-compatible compiler, targeting x86/x86-64 */ #include -#elif defined(__arch64__) +#elif defined(__aarch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #define SIMDE_ENABLE_NATIVE_ALIASES #include From 10b01bb292d6a06560836aa6ed0ce1c8716b3b1c Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 12:04:56 +0100 Subject: [PATCH 19/67] include functional --- unittest/test_fastpfor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/unittest/test_fastpfor.cpp b/unittest/test_fastpfor.cpp index 2073253..7f45222 100644 --- a/unittest/test_fastpfor.cpp +++ b/unittest/test_fastpfor.cpp @@ -4,6 +4,7 @@ #include #include #include +#include #include "gtest/gtest.h" From 6590a2b178818b517d5a6bfab8d5de2824a095bf Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 12:07:01 +0100 Subject: [PATCH 20/67] removed SIMDE_NATIVE_ALIASES --- CMakeLists.txt | 2 +- headers/VarIntG8IU.h | 1 - headers/common.h | 1 - headers/horizontalbitpacking.h | 1 - src/streamvbyte.c | 1 - src/varintdecode.c | 1 - 6 files changed, 1 insertion(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b8604a..199c9b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -179,7 +179,7 @@ add_executable(gapstats src/gapstats.cpp) add_executable(partitionbylength src/partitionbylength.cpp) add_executable(csv2maropu src/csv2maropu.cpp) -if (CMAKE_SYSTEM_PROCESSOR OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") +if (CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") target_link_libraries(gapstats PUBLIC simde) target_link_libraries(partitionbylength PUBLIC simde) target_link_libraries(csv2maropu PUBLIC simde) diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index 6173f29..172e62e 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -12,7 +12,6 @@ #elif defined(__aarch64__) /* GCC-compatible compiler, targeting ARM with NEON */ -#define SIMDE_ENABLE_NATIVE_ALIASES #include #endif #include "codecs.h" diff --git a/headers/common.h b/headers/common.h index 9d4f9ac..ea457cd 100644 --- a/headers/common.h +++ b/headers/common.h @@ -13,7 +13,6 @@ #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include #elif defined(__GNUC__) && defined(__aarch64__) -#define SIMDE_ENABLE_NATIVE_ALIASES #include #endif diff --git a/headers/horizontalbitpacking.h b/headers/horizontalbitpacking.h index 12a1d83..18c7864 100644 --- a/headers/horizontalbitpacking.h +++ b/headers/horizontalbitpacking.h @@ -22,7 +22,6 @@ #define HORIZONTALBITPACKING_H_ #if !defined(__SSE4_1__) && !(defined(_MSC_VER) && defined(__AVX__)) -#define SIMDE_ENABLE_NATIVE_ALIASES #include #pragma message("No SSSE4.1 support? switched to simde") diff --git a/src/streamvbyte.c b/src/streamvbyte.c index da138a1..e58e8e0 100644 --- a/src/streamvbyte.c +++ b/src/streamvbyte.c @@ -17,7 +17,6 @@ #elif defined(__aarch64__) /* GCC-compatible compiler, targeting ARM with NEON */ - #define SIMDE_ENABLE_NATIVE_ALIASES #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ diff --git a/src/varintdecode.c b/src/varintdecode.c index ed3bd00..399781f 100644 --- a/src/varintdecode.c +++ b/src/varintdecode.c @@ -12,7 +12,6 @@ #elif defined(__aarch64__) /* GCC-compatible compiler, targeting ARM with NEON */ - #define SIMDE_ENABLE_NATIVE_ALIASES #include #elif defined(__GNUC__) && defined(__IWMMXT__) /* GCC-compatible compiler, targeting ARM with WMMX */ From e9eeb097b33ccf157c90df685ca3da0e29c6b2c5 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Tue, 5 Dec 2023 12:09:29 +0100 Subject: [PATCH 21/67] removed SIMDE_NATIVE_ALIASES --- headers/simdgroupsimple.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/simdgroupsimple.h b/headers/simdgroupsimple.h index 1558436..a18a34c 100644 --- a/headers/simdgroupsimple.h +++ b/headers/simdgroupsimple.h @@ -166,7 +166,7 @@ namespace FastPForLib { _mm_storeu_si128(out++, comprBlock); } -#else +#elif defined(__aarch64__) inline static void comprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { // Since we have to produce exactly one compressed vector anyway, we can @@ -641,7 +641,7 @@ namespace FastPForLib { _mm_and_si128(_mm_srli_epi32(comprBlock, k * b), mask)); } -#else +#elif defined(__aarch64__) inline static void decomprIncompleteBlock(const uint8_t &n, const __m128i *&in, __m128i *&out) { From bd0acf04dc81888d82f86e6f1b009413d5ecec82 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Wed, 27 Dec 2023 14:13:16 +0100 Subject: [PATCH 22/67] clean up flags for aarch64 and neon compilation --- CMakeLists.txt | 156 +++++++++++--------------------- cmake_modules/environment.cmake | 3 + headers/VarIntG8IU.h | 3 +- headers/cpubenchmark.h | 1 - headers/horizontalbitpacking.h | 10 +- headers/util.h | 2 +- headers/vsencoding.h | 10 +- 7 files changed, 69 insertions(+), 116 deletions(-) create mode 100644 cmake_modules/environment.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 199c9b5..024aab0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ # # Copyright (c) 2012 Louis Dionne # -cmake_minimum_required(VERSION 3.7) -set (CMAKE_CXX_STANDARD 17) # for constexpr specifier and other goodies +cmake_minimum_required(VERSION 3.0) +set(CMAKE_CXX_STANDARD 11) # for constexpr specifier and other goodies if (NOT CMAKE_BUILD_TYPE) message(STATUS "No build type selected, default to Release") @@ -54,106 +54,62 @@ if( CMAKE_SIZEOF_VOID_P EQUAL 8 ) else() MESSAGE( STATUS "Please use a 64-bit system. " ) endif() + +include("${CMAKE_MODULE_PATH}/environment.cmake") + MESSAGE( STATUS "CMAKE_CXX_COMPILER_ID: " ${CMAKE_CXX_COMPILER_ID} ) MESSAGE( STATUS "CMAKE_C_COMPILER: " ${CMAKE_C_COMPILER} ) MESSAGE( STATUS "CXX_COMPILER_VERSION: " ${CXX_COMPILER_VERSION} ) -# here we divide into x86 or arm - -if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64") - if( SUPPORT_SSE42 ) - MESSAGE( STATUS "SSE 4.2 support detected" ) - else() - MESSAGE( STATUS "SSE 4.2 support not detected" ) - endif() - - if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") - # require at least gcc 4.7 - if (CXX_COMPILER_VERSION VERSION_LESS 4.7) - message(STATUS "GCC version must be at least 4.7!") - endif() - # Uncomment the following lines to see how the code compiles without AVX,SSE4.2 and/or SSE2 - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=x86-64") - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=core2") - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.2") - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c99 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native") - elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Intel") - if (CXX_COMPILER_VERSION VERSION_LESS 14.0.1) - message(STATUS "Intel version must be at least 14.0.1!") - endif() - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -ggdb -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c99 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -ggdb -std=c99 -march=native") - elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") - if (CXX_COMPILER_VERSION VERSION_LESS 4.2.1) - message(STATUS "Clang version must be at least 4.2.1!" ) - endif() - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c99 -msse4.1 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c99 -msse4.1 -march=native") - elseif(WIN32) - # TODO add support for later versions? - if(NOT MSVC12) - message(STATUS "On Windows, only MSVC version 12 is supported!") - endif() - else () - message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") - endif() -elseif (CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") - # CHECK_CXX_COMPILER_FLAG("-mfpu=neon" COMPILER_SUPPORTS_NEON) - - # if( COMPILER_SUPPORTS_NEON ) - # MESSAGE( STATUS "Neon support detected" ) - # else() - # MESSAGE(FATAL_ERROR "Neon support not detected" ) - # endif() - - # we have to install simde - # for arm otherwise the library is not usable +if (SUPPORT_SSE42) + MESSAGE(STATUS "SSE 4.2 support detected") +else () + MESSAGE(STATUS "SSE 4.2 support not detected") +endif () +if (SUPPORT_NEON) include("${CMAKE_MODULE_PATH}/simde.cmake") - - if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") - # require at least gcc 4.7 - if (CXX_COMPILER_VERSION VERSION_LESS 4.7) - message(STATUS "GCC version must be at least 4.7!") - endif() - # Uncomment the following lines to see how the code compiles without AVX,SSE4.2 and/or SSE2 - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=x86-64") - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=core2") - #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.2") - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c99 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native") - elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Intel") - if (CXX_COMPILER_VERSION VERSION_LESS 14.0.1) - message(STATUS "Intel version must be at least 14.0.1!") - endif() - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -ggdb -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c99 -march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -ggdb -std=c99 -march=native") - elseif(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") - if (CXX_COMPILER_VERSION VERSION_LESS 4.2.1) - message(STATUS "Clang version must be at least 4.2.1!" ) - endif() - set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c++11 -DHAVE_CXX0X-march=native") - set (CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c++11 -DHAVE_CXX0X -march=native") - set (CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c99-march=native") - set (CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c99 -march=native") - elseif(WIN32) - message(FATAL_ERROR "Please, use Linux or MacOS!") - else () - message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") - endif() -else() - message(FATAL_ERROR "Please, x86 or arm!") + MESSAGE(STATUS "USING SIMDE FOR SIMD OPERATIONS") +else () + MESSAGE(STATUS "SIMDE NOT DETECTED/NOT USED") +endif () + +if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") + # require at least gcc 4.7 + if (CXX_COMPILER_VERSION VERSION_LESS 4.7) + message(STATUS "GCC version must be at least 4.7!") + endif () + # Uncomment the following lines to see how the code compiles without AVX,SSE4.2 and/or SSE2 + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=x86-64") + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=core2") + #set (CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.2") + set(CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") + set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native") + set(CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c99 -march=native") + set(CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native") +elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "Intel") + if (CXX_COMPILER_VERSION VERSION_LESS 14.0.1) + message(STATUS "Intel version must be at least 14.0.1!") + endif () + set(CMAKE_CXX_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native") + set(CMAKE_CXX_FLAGS_DEBUG "-Wall -ggdb -std=c++11 -DHAVE_CXX0X -march=native") + set(CMAKE_C_FLAGS_RELEASE "-Wall -Ofast -DNDEBUG -std=c99 -march=native") + set(CMAKE_C_FLAGS_DEBUG "-Wall -ggdb -std=c99 -march=native") +elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") + if (CXX_COMPILER_VERSION VERSION_LESS 4.2.1) + message(STATUS "Clang version must be at least 4.2.1!") + endif () + set(CMAKE_CXX_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") + set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c++11 -DHAVE_CXX0X -msse4.1 -march=native") + set(CMAKE_C_FLAGS_RELEASE "-Wall -Wcast-align -O3 -DNDEBUG -std=c99 -msse4.1 -march=native") + set(CMAKE_C_FLAGS_DEBUG "-Wall -Wcast-align -ggdb -std=c99 -msse4.1 -march=native") +elseif (WIN32) + # TODO add support for later versions? + if (NOT MSVC12) + message(STATUS "On Windows, only MSVC version 12 is supported!") + endif () +else () + message(FATAL_ERROR "Please, use GCC, Clang, or the Intel compiler!") endif() # library target @@ -170,16 +126,13 @@ add_library(FastPFOR STATIC src/streamvbyte.c) set_target_properties(FastPFOR PROPERTIES POSITION_INDEPENDENT_CODE TRUE) -if (CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") - target_link_libraries(FastPFOR PUBLIC simde) -endif() - # other executables add_executable(gapstats src/gapstats.cpp) add_executable(partitionbylength src/partitionbylength.cpp) add_executable(csv2maropu src/csv2maropu.cpp) -if (CMAKE_SYSTEM_PROCESSOR MATCHES "arm" OR CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64") +if (SUPPORT_NEON) + target_link_libraries(FastPFOR PUBLIC simde) target_link_libraries(gapstats PUBLIC simde) target_link_libraries(partitionbylength PUBLIC simde) target_link_libraries(csv2maropu PUBLIC simde) @@ -225,7 +178,6 @@ add_executable(unit src/unit.cpp) target_link_libraries(unit FastPFOR) add_custom_target(check unit DEPENDS unit) - add_executable(FastPFOR_unittest unittest/test_composite.cpp unittest/test_driver.cpp diff --git a/cmake_modules/environment.cmake b/cmake_modules/environment.cmake new file mode 100644 index 0000000..1b539a2 --- /dev/null +++ b/cmake_modules/environment.cmake @@ -0,0 +1,3 @@ +include(CheckCXXCompilerFlag) + +check_cxx_compiler_flag("-mfpu=neon" SUPPORT_NEON) \ No newline at end of file diff --git a/headers/VarIntG8IU.h b/headers/VarIntG8IU.h index 172e62e..d2c6050 100644 --- a/headers/VarIntG8IU.h +++ b/headers/VarIntG8IU.h @@ -2,14 +2,13 @@ * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. */ -#if !defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__)) && !(defined(__aarch64__)) +#if (!defined(__SSSE3__) && !(defined(_MSC_VER) && defined(__AVX__))) && (!defined(__ARM_NEON__)) #pragma message("Disabling varintg8iu due to lack of SSSE3 support, try adding -mssse3 or the equivalent on your compiler via simde") #else #ifndef VARINTG8IU_H__ #define VARINTG8IU_H__ #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #include - #elif defined(__aarch64__) /* GCC-compatible compiler, targeting ARM with NEON */ #include diff --git a/headers/cpubenchmark.h b/headers/cpubenchmark.h index 44dc718..e8738fc 100644 --- a/headers/cpubenchmark.h +++ b/headers/cpubenchmark.h @@ -67,7 +67,6 @@ static __inline__ unsigned long long startRDTSC(void) { return rdtsc(); } static __inline__ unsigned long long stopRDTSCP(void) { return rdtsc(); } #elif defined(__aarch64__) - inline uint64_t rdtsc() { uint64_t cycles; asm volatile("mrs %0, cntvct_el0" diff --git a/headers/horizontalbitpacking.h b/headers/horizontalbitpacking.h index 18c7864..bdc13b2 100644 --- a/headers/horizontalbitpacking.h +++ b/headers/horizontalbitpacking.h @@ -21,10 +21,18 @@ #ifndef HORIZONTALBITPACKING_H_ #define HORIZONTALBITPACKING_H_ + #if !defined(__SSE4_1__) && !(defined(_MSC_VER) && defined(__AVX__)) +#ifndef __aarch64__ #include +#pragma message "Switched to SIMDe instructions to use NEON" +#endif -#pragma message("No SSSE4.1 support? switched to simde") +#ifndef _MSC_VER +#pragma message "No SSSE4.1 support? try adding -msse4.1 or the equivalent on your compiler" +#else +#pragma message("No SSSE4.1 support? try adding -msse4.1 or the equivalent on your compiler") +#endif #endif #include "common.h" diff --git a/headers/util.h b/headers/util.h index abf564d..0ea3699 100644 --- a/headers/util.h +++ b/headers/util.h @@ -122,7 +122,7 @@ __attribute__((const)) inline uint32_t gccbits(const uint64_t v) { return static_cast(index + 32 + 1); } #endif -#elif defined(__GNUC__) || defined(__clang__) || defined(__aarch64__) +#elif defined(__aarch64__) return 64 - __builtin_clzll(v); #else uint32_t answer; diff --git a/headers/vsencoding.h b/headers/vsencoding.h index ed84151..db7f100 100644 --- a/headers/vsencoding.h +++ b/headers/vsencoding.h @@ -324,15 +324,7 @@ class VSEncodingBlocks : public IntegerCODEC { // VSEncodingBlocks::TAIL_MERGIN]; }; -#ifdef _MSC_VER -inline void __vseblocks_copy16(const uint32_t *src, uint32_t *dest) { - memcpy(dest, src, 16 * sizeof(uint32_t)); -} - -inline void __vseblocks_zero32(uint32_t *dest) { - memset(dest, 0, 32 * sizeof(uint32_t)); -} -#elif defined(__aarch64__) +#if defined(_MSC_VER) || (defined(__GNUC__) && defined(__aarch64__)) inline void __vseblocks_copy16(const uint32_t *src, uint32_t *dest) { memcpy(dest, src, 16 * sizeof(uint32_t)); } From 522eaa29835fa31c9c4af5343ea59ab2d6cc9208 Mon Sep 17 00:00:00 2001 From: kosakseb Date: Wed, 27 Dec 2023 14:27:37 +0100 Subject: [PATCH 23/67] cmake environment arm detection --- .idea/.gitignore | 8 + .idea/.name | 1 + .idea/FastPFor.iml | 2 + .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .../.cmake/api/v1/query/cache-v2 | 0 .../.cmake/api/v1/query/cmakeFiles-v1 | 0 .../.cmake/api/v1/query/codemodel-v2 | 0 .../.cmake/api/v1/query/toolchains-v1 | 0 .../reply/cache-v2-90317d23090ab28171c2.json | 1619 + .../cmakeFiles-v1-090daff46139297d764e.json | 389 + .../toolchains-v1-c1199874e7df176eab26.json | 111 + cmake-build-debug-event-trace/CMakeCache.txt | 488 + .../CMakeFiles/3.26.4/CMakeCCompiler.cmake | 72 + .../CMakeFiles/3.26.4/CMakeCXXCompiler.cmake | 83 + .../3.26.4/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15968 bytes .../3.26.4/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 15992 bytes .../CMakeFiles/3.26.4/CMakeSystem.cmake | 15 + .../3.26.4/CompilerIdC/CMakeCCompilerId.c | 866 + .../CMakeFiles/3.26.4/CompilerIdC/a.out | Bin 0 -> 16088 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 + .../CMakeFiles/3.26.4/CompilerIdCXX/a.out | Bin 0 -> 16096 bytes .../CMakeFiles/3.27.8/CMakeCCompiler.cmake | 74 + .../CMakeFiles/3.27.8/CMakeCXXCompiler.cmake | 85 + .../3.27.8/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15968 bytes .../3.27.8/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 15992 bytes .../CMakeFiles/3.27.8/CMakeSystem.cmake | 15 + .../3.27.8/CompilerIdC/CMakeCCompilerId.c | 866 + .../CMakeFiles/3.27.8/CompilerIdC/a.out | Bin 0 -> 16088 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 + .../CMakeFiles/3.27.8/CompilerIdCXX/a.out | Bin 0 -> 16096 bytes .../CMakeFiles/CMakeConfigureLog.yaml | 1257 + .../CMakeDirectoryInformation.cmake | 16 + .../CMakeFiles/CMakeRuleHashes.txt | 29 + .../FastPFORTargets-debug.cmake | 19 + .../FastPFORTargets.cmake | 102 + .../CMakeFiles/FastPFOR.dir/DependInfo.cmake | 27 + .../CMakeFiles/FastPFOR.dir/build.make | 239 + .../CMakeFiles/FastPFOR.dir/cmake_clean.cmake | 27 + .../FastPFOR.dir/cmake_clean_target.cmake | 3 + .../FastPFOR.dir/compiler_depend.make | 2 + .../FastPFOR.dir/compiler_depend.ts | 2 + .../CMakeFiles/FastPFOR.dir/depend.make | 2 + .../CMakeFiles/FastPFOR.dir/flags.make | 17 + .../CMakeFiles/FastPFOR.dir/link.txt | 2 + .../CMakeFiles/FastPFOR.dir/progress.make | 11 + .../FastPFOR_unittest.dir/DependInfo.cmake | 22 + .../FastPFOR_unittest.dir/build.make | 160 + .../FastPFOR_unittest.dir/cmake_clean.cmake | 17 + .../compiler_depend.make | 2 + .../FastPFOR_unittest.dir/compiler_depend.ts | 2 + .../FastPFOR_unittest.dir/depend.make | 2 + .../FastPFOR_unittest.dir/flags.make | 10 + .../CMakeFiles/FastPFOR_unittest.dir/link.txt | 1 + .../FastPFOR_unittest.dir/progress.make | 6 + .../CMakeFiles/Makefile.cmake | 118 + .../CMakeFiles/Makefile2 | 560 + .../CMakeFiles/TargetDirectories.txt | 24 + .../benchbitpacking.dir/DependInfo.cmake | 19 + .../CMakeFiles/benchbitpacking.dir/build.make | 111 + .../benchbitpacking.dir/cmake_clean.cmake | 11 + .../benchbitpacking.dir/compiler_depend.make | 2 + .../benchbitpacking.dir/compiler_depend.ts | 2 + .../benchbitpacking.dir/depend.make | 2 + .../CMakeFiles/benchbitpacking.dir/flags.make | 10 + .../CMakeFiles/benchbitpacking.dir/link.txt | 1 + .../benchbitpacking.dir/progress.make | 3 + .../CMakeFiles/check.dir/DependInfo.cmake | 18 + .../CMakeFiles/check.dir/build.make | 87 + .../CMakeFiles/check.dir/cmake_clean.cmake | 8 + .../CMakeFiles/check.dir/compiler_depend.make | 2 + .../CMakeFiles/check.dir/compiler_depend.ts | 2 + .../CMakeFiles/check.dir/progress.make | 1 + .../clion-Debug-event-trace-log.txt | 21 + .../CMakeFiles/clion-environment.txt | Bin 0 -> 123 bytes .../CMakeFiles/clion-event-trace.json | 135546 +++++++++++++++ .../CMakeFiles/cmake.check_cache | 1 + .../CMakeFiles/codecs.dir/DependInfo.cmake | 19 + .../CMakeFiles/codecs.dir/build.make | 111 + .../CMakeFiles/codecs.dir/cmake_clean.cmake | 11 + .../codecs.dir/compiler_depend.make | 2 + .../CMakeFiles/codecs.dir/compiler_depend.ts | 2 + .../CMakeFiles/codecs.dir/depend.make | 2 + .../CMakeFiles/codecs.dir/flags.make | 10 + .../CMakeFiles/codecs.dir/link.txt | 1 + .../CMakeFiles/codecs.dir/progress.make | 3 + .../codecssnappy.dir/DependInfo.cmake | 19 + .../CMakeFiles/codecssnappy.dir/build.make | 112 + .../codecssnappy.dir/cmake_clean.cmake | 11 + .../codecssnappy.dir/compiler_depend.make | 2 + .../codecssnappy.dir/compiler_depend.ts | 2 + .../CMakeFiles/codecssnappy.dir/depend.make | 2 + .../CMakeFiles/codecssnappy.dir/flags.make | 10 + .../CMakeFiles/codecssnappy.dir/link.txt | 1 + .../CMakeFiles/codecssnappy.dir/progress.make | 3 + .../csv2maropu.dir/DependInfo.cmake | 19 + .../CMakeFiles/csv2maropu.dir/build.make | 110 + .../csv2maropu.dir/cmake_clean.cmake | 11 + .../csv2maropu.dir/compiler_depend.make | 2 + .../csv2maropu.dir/compiler_depend.ts | 2 + .../CMakeFiles/csv2maropu.dir/depend.make | 2 + .../CMakeFiles/csv2maropu.dir/flags.make | 10 + .../CMakeFiles/csv2maropu.dir/link.txt | 1 + .../CMakeFiles/csv2maropu.dir/progress.make | 3 + .../CMakeFiles/entropy.dir/DependInfo.cmake | 19 + .../CMakeFiles/entropy.dir/build.make | 111 + .../CMakeFiles/entropy.dir/cmake_clean.cmake | 11 + .../entropy.dir/compiler_depend.make | 2 + .../CMakeFiles/entropy.dir/compiler_depend.ts | 2 + .../CMakeFiles/entropy.dir/depend.make | 2 + .../CMakeFiles/entropy.dir/flags.make | 10 + .../CMakeFiles/entropy.dir/link.txt | 1 + .../CMakeFiles/entropy.dir/progress.make | 3 + .../CMakeFiles/example.dir/DependInfo.cmake | 19 + .../CMakeFiles/example.dir/build.make | 111 + .../CMakeFiles/example.dir/cmake_clean.cmake | 11 + .../example.dir/compiler_depend.make | 2 + .../CMakeFiles/example.dir/compiler_depend.ts | 2 + .../CMakeFiles/example.dir/depend.make | 2 + .../CMakeFiles/example.dir/flags.make | 10 + .../CMakeFiles/example.dir/link.txt | 1 + .../CMakeFiles/example.dir/progress.make | 3 + .../CMakeFiles/gapstats.dir/DependInfo.cmake | 19 + .../CMakeFiles/gapstats.dir/build.make | 110 + .../CMakeFiles/gapstats.dir/cmake_clean.cmake | 11 + .../gapstats.dir/compiler_depend.make | 2 + .../gapstats.dir/compiler_depend.ts | 2 + .../CMakeFiles/gapstats.dir/depend.make | 2 + .../CMakeFiles/gapstats.dir/flags.make | 10 + .../CMakeFiles/gapstats.dir/link.txt | 1 + .../CMakeFiles/gapstats.dir/progress.make | 3 + .../CMakeFiles/gmock_src.dir/DependInfo.cmake | 18 + .../CMakeFiles/gmock_src.dir/Labels.json | 43 + .../CMakeFiles/gmock_src.dir/Labels.txt | 13 + .../CMakeFiles/gmock_src.dir/build.make | 146 + .../gmock_src.dir/cmake_clean.cmake | 16 + .../gmock_src.dir/compiler_depend.make | 2 + .../gmock_src.dir/compiler_depend.ts | 2 + .../CMakeFiles/gmock_src.dir/progress.make | 9 + .../googletest.dir/DependInfo.cmake | 18 + .../CMakeFiles/googletest.dir/Labels.json | 43 + .../CMakeFiles/googletest.dir/Labels.txt | 13 + .../CMakeFiles/googletest.dir/build.make | 146 + .../googletest.dir/cmake_clean.cmake | 16 + .../googletest.dir/compiler_depend.make | 2 + .../googletest.dir/compiler_depend.ts | 2 + .../CMakeFiles/googletest.dir/progress.make | 9 + .../CMakeFiles/gtest_src.dir/DependInfo.cmake | 18 + .../CMakeFiles/gtest_src.dir/Labels.json | 43 + .../CMakeFiles/gtest_src.dir/Labels.txt | 13 + .../CMakeFiles/gtest_src.dir/build.make | 146 + .../gtest_src.dir/cmake_clean.cmake | 16 + .../gtest_src.dir/compiler_depend.make | 2 + .../gtest_src.dir/compiler_depend.ts | 2 + .../CMakeFiles/gtest_src.dir/progress.make | 9 + .../inmemorybenchmark.dir/DependInfo.cmake | 19 + .../inmemorybenchmark.dir/build.make | 111 + .../inmemorybenchmark.dir/cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../inmemorybenchmark.dir/compiler_depend.ts | 2 + .../inmemorybenchmark.dir/depend.make | 2 + .../inmemorybenchmark.dir/flags.make | 10 + .../CMakeFiles/inmemorybenchmark.dir/link.txt | 1 + .../inmemorybenchmark.dir/progress.make | 3 + .../DependInfo.cmake | 19 + .../inmemorybenchmarksnappy.dir/build.make | 112 + .../cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../inmemorybenchmarksnappy.dir/depend.make | 2 + .../inmemorybenchmarksnappy.dir/flags.make | 10 + .../inmemorybenchmarksnappy.dir/link.txt | 1 + .../inmemorybenchmarksnappy.dir/progress.make | 3 + .../partitionbylength.dir/DependInfo.cmake | 19 + .../partitionbylength.dir/build.make | 110 + .../partitionbylength.dir/cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../partitionbylength.dir/compiler_depend.ts | 2 + .../partitionbylength.dir/depend.make | 2 + .../partitionbylength.dir/flags.make | 10 + .../CMakeFiles/partitionbylength.dir/link.txt | 1 + .../partitionbylength.dir/progress.make | 3 + .../CMakeFiles/progress.marks | 1 + .../CMakeFiles/unit.dir/DependInfo.cmake | 19 + .../CMakeFiles/unit.dir/build.make | 111 + .../CMakeFiles/unit.dir/cmake_clean.cmake | 11 + .../CMakeFiles/unit.dir/compiler_depend.make | 2 + .../CMakeFiles/unit.dir/compiler_depend.ts | 2 + .../CMakeFiles/unit.dir/depend.make | 2 + .../CMakeFiles/unit.dir/flags.make | 10 + .../CMakeFiles/unit.dir/link.txt | 1 + .../CMakeFiles/unit.dir/progress.make | 3 + .../CTestTestfile.cmake | 10 + .../FastPFORConfig.cmake | 29 + .../FastPFORConfigVersion.cmake | 65 + cmake-build-debug-event-trace/Makefile | 1038 + .../cmake_install.cmake | 104 + cmake-build-debug-event-trace/fastpfor.pc | 9 + .../gmock_src-stamp/gmock_src-custominfo.txt | 9 + .../gmock_src-stamp/gmock_src-patch-info.txt | 6 + .../gmock_src-stamp/gmock_src-update-info.txt | 7 + .../googletest-stamp/googletest-gitinfo.txt | 15 + .../googletest-patch-info.txt | 6 + .../googletest-update-info.txt | 7 + .../gtest_src-stamp/gtest_src-custominfo.txt | 9 + .../gtest_src-stamp/gtest_src-patch-info.txt | 6 + .../gtest_src-stamp/gtest_src-update-info.txt | 7 + .../vendor/gtm/tmp/gmock_src-cfgcmd.txt | 1 + .../vendor/gtm/tmp/gmock_src-mkdirs.cmake | 22 + .../vendor/gtm/tmp/googletest-cfgcmd.txt | 1 + .../vendor/gtm/tmp/googletest-gitclone.cmake | 73 + .../vendor/gtm/tmp/googletest-mkdirs.cmake | 22 + .../vendor/gtm/tmp/gtest_src-cfgcmd.txt | 1 + .../vendor/gtm/tmp/gtest_src-mkdirs.cmake | 22 + .../.cmake/api/v1/query/cache-v2 | 0 .../.cmake/api/v1/query/cmakeFiles-v1 | 0 .../.cmake/api/v1/query/codemodel-v2 | 0 .../.cmake/api/v1/query/toolchains-v1 | 0 .../reply/cache-v2-cf2770cfec642e2d8f7f.json | 1619 + .../cmakeFiles-v1-4bcd9d05e54898d24725.json | 389 + .../toolchains-v1-c1199874e7df176eab26.json | 111 + cmake-build-debug/CMakeCache.txt | 488 + .../CMakeFiles/3.26.4/CMakeCCompiler.cmake | 72 + .../CMakeFiles/3.26.4/CMakeCXXCompiler.cmake | 83 + .../3.26.4/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15968 bytes .../3.26.4/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 15992 bytes .../CMakeFiles/3.26.4/CMakeSystem.cmake | 15 + .../3.26.4/CompilerIdC/CMakeCCompilerId.c | 866 + .../CMakeFiles/3.26.4/CompilerIdC/a.out | Bin 0 -> 16088 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 + .../CMakeFiles/3.26.4/CompilerIdCXX/a.out | Bin 0 -> 16096 bytes .../CMakeFiles/3.27.8/CMakeCCompiler.cmake | 74 + .../CMakeFiles/3.27.8/CMakeCXXCompiler.cmake | 85 + .../3.27.8/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15968 bytes .../3.27.8/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 15992 bytes .../CMakeFiles/3.27.8/CMakeSystem.cmake | 15 + .../3.27.8/CompilerIdC/CMakeCCompilerId.c | 866 + .../CMakeFiles/3.27.8/CompilerIdC/a.out | Bin 0 -> 16088 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 + .../CMakeFiles/3.27.8/CompilerIdCXX/a.out | Bin 0 -> 16096 bytes .../CMakeFiles/CMakeConfigureLog.yaml | 1259 + .../CMakeDirectoryInformation.cmake | 16 + .../CMakeFiles/CMakeRuleHashes.txt | 29 + .../FastPFORTargets-debug.cmake | 19 + .../FastPFORTargets.cmake | 102 + .../CMakeFiles/FastPFOR.dir/DependInfo.cmake | 27 + .../CMakeFiles/FastPFOR.dir/build.make | 239 + .../CMakeFiles/FastPFOR.dir/cmake_clean.cmake | 27 + .../FastPFOR.dir/cmake_clean_target.cmake | 3 + .../FastPFOR.dir/compiler_depend.make | 2 + .../FastPFOR.dir/compiler_depend.ts | 2 + .../CMakeFiles/FastPFOR.dir/depend.make | 2 + .../CMakeFiles/FastPFOR.dir/flags.make | 17 + .../CMakeFiles/FastPFOR.dir/link.txt | 2 + .../CMakeFiles/FastPFOR.dir/progress.make | 11 + .../FastPFOR.dir/src/bitpacking.cpp.o.d | 294 + .../src/bitpackingaligned.cpp.o.d | 294 + .../src/bitpackingunaligned.cpp.o.d | 295 + .../FastPFOR.dir/src/codecfactory.cpp.o.d | 330 + .../src/horizontalbitpacking.cpp.o.d | 294 + .../FastPFOR.dir/src/simdbitpacking.cpp.o.d | 294 + .../src/simdunalignedbitpacking.cpp.o.d | 294 + .../FastPFOR.dir/src/streamvbyte.c.o.d | 121 + .../FastPFOR.dir/src/varintdecode.c.o.d | 112 + .../FastPFOR_unittest.dir/DependInfo.cmake | 22 + .../FastPFOR_unittest.dir/build.make | 160 + .../FastPFOR_unittest.dir/cmake_clean.cmake | 17 + .../compiler_depend.make | 2 + .../FastPFOR_unittest.dir/compiler_depend.ts | 2 + .../FastPFOR_unittest.dir/depend.make | 2 + .../FastPFOR_unittest.dir/flags.make | 10 + .../CMakeFiles/FastPFOR_unittest.dir/link.txt | 1 + .../FastPFOR_unittest.dir/progress.make | 6 + .../unittest/test_composite.cpp.o.d | 412 + .../unittest/test_driver.cpp.o.d | 259 + .../unittest/test_fastpfor.cpp.o.d | 411 + .../unittest/test_variablebyte.cpp.o.d | 405 + cmake-build-debug/CMakeFiles/Makefile.cmake | 118 + cmake-build-debug/CMakeFiles/Makefile2 | 560 + .../CMakeFiles/TargetDirectories.txt | 24 + .../benchbitpacking.dir/DependInfo.cmake | 19 + .../CMakeFiles/benchbitpacking.dir/build.make | 111 + .../benchbitpacking.dir/cmake_clean.cmake | 11 + .../benchbitpacking.dir/compiler_depend.make | 2 + .../benchbitpacking.dir/compiler_depend.ts | 2 + .../benchbitpacking.dir/depend.make | 2 + .../CMakeFiles/benchbitpacking.dir/flags.make | 10 + .../CMakeFiles/benchbitpacking.dir/link.txt | 1 + .../benchbitpacking.dir/progress.make | 3 + .../CMakeFiles/check.dir/DependInfo.cmake | 18 + .../CMakeFiles/check.dir/build.make | 87 + .../CMakeFiles/check.dir/cmake_clean.cmake | 8 + .../CMakeFiles/check.dir/compiler_depend.make | 2 + .../CMakeFiles/check.dir/compiler_depend.ts | 2 + .../CMakeFiles/check.dir/progress.make | 1 + .../CMakeFiles/clion-Debug-log.txt | 21 + .../CMakeFiles/clion-environment.txt | 3 + .../CMakeFiles/cmake.check_cache | 1 + .../CMakeFiles/codecs.dir/DependInfo.cmake | 19 + .../CMakeFiles/codecs.dir/build.make | 111 + .../CMakeFiles/codecs.dir/cmake_clean.cmake | 11 + .../codecs.dir/compiler_depend.make | 2 + .../CMakeFiles/codecs.dir/compiler_depend.ts | 2 + .../CMakeFiles/codecs.dir/depend.make | 2 + .../CMakeFiles/codecs.dir/flags.make | 10 + .../CMakeFiles/codecs.dir/link.txt | 1 + .../CMakeFiles/codecs.dir/progress.make | 3 + .../codecssnappy.dir/DependInfo.cmake | 19 + .../CMakeFiles/codecssnappy.dir/build.make | 112 + .../codecssnappy.dir/cmake_clean.cmake | 11 + .../codecssnappy.dir/compiler_depend.make | 2 + .../codecssnappy.dir/compiler_depend.ts | 2 + .../CMakeFiles/codecssnappy.dir/depend.make | 2 + .../CMakeFiles/codecssnappy.dir/flags.make | 10 + .../CMakeFiles/codecssnappy.dir/link.txt | 1 + .../CMakeFiles/codecssnappy.dir/progress.make | 3 + .../csv2maropu.dir/DependInfo.cmake | 19 + .../CMakeFiles/csv2maropu.dir/build.make | 110 + .../csv2maropu.dir/cmake_clean.cmake | 11 + .../csv2maropu.dir/compiler_depend.make | 2 + .../csv2maropu.dir/compiler_depend.ts | 2 + .../CMakeFiles/csv2maropu.dir/depend.make | 2 + .../CMakeFiles/csv2maropu.dir/flags.make | 10 + .../CMakeFiles/csv2maropu.dir/link.txt | 1 + .../CMakeFiles/csv2maropu.dir/progress.make | 3 + .../CMakeFiles/entropy.dir/DependInfo.cmake | 19 + .../CMakeFiles/entropy.dir/build.make | 111 + .../CMakeFiles/entropy.dir/cmake_clean.cmake | 11 + .../entropy.dir/compiler_depend.make | 2 + .../CMakeFiles/entropy.dir/compiler_depend.ts | 2 + .../CMakeFiles/entropy.dir/depend.make | 2 + .../CMakeFiles/entropy.dir/flags.make | 10 + .../CMakeFiles/entropy.dir/link.txt | 1 + .../CMakeFiles/entropy.dir/progress.make | 3 + .../CMakeFiles/example.dir/DependInfo.cmake | 19 + .../CMakeFiles/example.dir/build.make | 111 + .../CMakeFiles/example.dir/cmake_clean.cmake | 11 + .../example.dir/compiler_depend.make | 2 + .../CMakeFiles/example.dir/compiler_depend.ts | 2 + .../CMakeFiles/example.dir/depend.make | 2 + .../CMakeFiles/example.dir/flags.make | 10 + .../CMakeFiles/example.dir/link.txt | 1 + .../CMakeFiles/example.dir/progress.make | 3 + .../CMakeFiles/gapstats.dir/DependInfo.cmake | 19 + .../CMakeFiles/gapstats.dir/build.make | 110 + .../CMakeFiles/gapstats.dir/cmake_clean.cmake | 11 + .../gapstats.dir/compiler_depend.make | 2 + .../gapstats.dir/compiler_depend.ts | 2 + .../CMakeFiles/gapstats.dir/depend.make | 2 + .../CMakeFiles/gapstats.dir/flags.make | 10 + .../CMakeFiles/gapstats.dir/link.txt | 1 + .../CMakeFiles/gapstats.dir/progress.make | 3 + .../CMakeFiles/gmock_src.dir/DependInfo.cmake | 18 + .../CMakeFiles/gmock_src.dir/Labels.json | 43 + .../CMakeFiles/gmock_src.dir/Labels.txt | 13 + .../CMakeFiles/gmock_src.dir/build.make | 146 + .../gmock_src.dir/cmake_clean.cmake | 16 + .../gmock_src.dir/compiler_depend.make | 2 + .../gmock_src.dir/compiler_depend.ts | 2 + .../CMakeFiles/gmock_src.dir/progress.make | 9 + .../googletest.dir/DependInfo.cmake | 18 + .../CMakeFiles/googletest.dir/Labels.json | 43 + .../CMakeFiles/googletest.dir/Labels.txt | 13 + .../CMakeFiles/googletest.dir/build.make | 146 + .../googletest.dir/cmake_clean.cmake | 16 + .../googletest.dir/compiler_depend.make | 2 + .../googletest.dir/compiler_depend.ts | 2 + .../CMakeFiles/googletest.dir/progress.make | 9 + .../CMakeFiles/gtest_src.dir/DependInfo.cmake | 18 + .../CMakeFiles/gtest_src.dir/Labels.json | 43 + .../CMakeFiles/gtest_src.dir/Labels.txt | 13 + .../CMakeFiles/gtest_src.dir/build.make | 146 + .../gtest_src.dir/cmake_clean.cmake | 16 + .../gtest_src.dir/compiler_depend.make | 2 + .../gtest_src.dir/compiler_depend.ts | 2 + .../CMakeFiles/gtest_src.dir/progress.make | 9 + .../inmemorybenchmark.dir/DependInfo.cmake | 19 + .../inmemorybenchmark.dir/build.make | 111 + .../inmemorybenchmark.dir/cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../inmemorybenchmark.dir/compiler_depend.ts | 2 + .../inmemorybenchmark.dir/depend.make | 2 + .../inmemorybenchmark.dir/flags.make | 10 + .../CMakeFiles/inmemorybenchmark.dir/link.txt | 1 + .../inmemorybenchmark.dir/progress.make | 3 + .../DependInfo.cmake | 19 + .../inmemorybenchmarksnappy.dir/build.make | 112 + .../cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../compiler_depend.ts | 2 + .../inmemorybenchmarksnappy.dir/depend.make | 2 + .../inmemorybenchmarksnappy.dir/flags.make | 10 + .../inmemorybenchmarksnappy.dir/link.txt | 1 + .../inmemorybenchmarksnappy.dir/progress.make | 3 + .../partitionbylength.dir/DependInfo.cmake | 19 + .../partitionbylength.dir/build.make | 110 + .../partitionbylength.dir/cmake_clean.cmake | 11 + .../compiler_depend.make | 2 + .../partitionbylength.dir/compiler_depend.ts | 2 + .../partitionbylength.dir/depend.make | 2 + .../partitionbylength.dir/flags.make | 10 + .../CMakeFiles/partitionbylength.dir/link.txt | 1 + .../partitionbylength.dir/progress.make | 3 + cmake-build-debug/CMakeFiles/progress.marks | 1 + .../CMakeFiles/unit.dir/DependInfo.cmake | 19 + .../CMakeFiles/unit.dir/build.make | 111 + .../CMakeFiles/unit.dir/cmake_clean.cmake | 11 + .../CMakeFiles/unit.dir/compiler_depend.make | 2 + .../CMakeFiles/unit.dir/compiler_depend.ts | 2 + .../CMakeFiles/unit.dir/depend.make | 2 + .../CMakeFiles/unit.dir/flags.make | 10 + .../CMakeFiles/unit.dir/link.txt | 1 + .../CMakeFiles/unit.dir/progress.make | 3 + cmake-build-debug/CTestTestfile.cmake | 10 + cmake-build-debug/FastPFORConfig.cmake | 29 + cmake-build-debug/FastPFORConfigVersion.cmake | 65 + cmake-build-debug/FastPFOR_unittest | Bin 0 -> 8184192 bytes cmake-build-debug/Makefile | 1038 + .../Testing/Temporary/LastTest.log | 3 + cmake-build-debug/cmake_install.cmake | 104 + cmake-build-debug/fastpfor.pc | 9 + cmake-build-debug/libFastPFOR.a | Bin 0 -> 15734994 bytes .../gtest/include/gtest/gtest-death-test.h | 294 + .../gtm/gtest/include/gtest/gtest-message.h | 250 + .../gtest/include/gtest/gtest-param-test.h | 1444 + .../include/gtest/gtest-param-test.h.pump | 510 + .../gtm/gtest/include/gtest/gtest-printers.h | 993 + .../gtm/gtest/include/gtest/gtest-spi.h | 232 + .../gtm/gtest/include/gtest/gtest-test-part.h | 179 + .../gtest/include/gtest/gtest-typed-test.h | 263 + .../vendor/gtm/gtest/include/gtest/gtest.h | 2236 + .../gtm/gtest/include/gtest/gtest_pred_impl.h | 358 + .../gtm/gtest/include/gtest/gtest_prod.h | 58 + .../gtest/internal/custom/gtest-port.h | 69 + .../gtest/internal/custom/gtest-printers.h | 42 + .../include/gtest/internal/custom/gtest.h | 41 + .../internal/gtest-death-test-internal.h | 319 + .../include/gtest/internal/gtest-filepath.h | 206 + .../include/gtest/internal/gtest-internal.h | 1238 + .../include/gtest/internal/gtest-linked_ptr.h | 243 + .../internal/gtest-param-util-generated.h | 5146 + .../gtest-param-util-generated.h.pump | 286 + .../include/gtest/internal/gtest-param-util.h | 731 + .../include/gtest/internal/gtest-port-arch.h | 93 + .../gtest/include/gtest/internal/gtest-port.h | 2554 + .../include/gtest/internal/gtest-string.h | 167 + .../include/gtest/internal/gtest-tuple.h | 1020 + .../include/gtest/internal/gtest-tuple.h.pump | 347 + .../include/gtest/internal/gtest-type-util.h | 3331 + .../gtest/internal/gtest-type-util.h.pump | 297 + .../vendor/gtm/gtest/lib/libgtest.a | Bin 0 -> 1771666 bytes .../vendor/gtm/gtest/lib/libgtest_main.a | Bin 0 -> 4076 bytes .../gmock_src-stamp/gmock_src-custominfo.txt | 9 + .../gmock_src-stamp/gmock_src-patch-info.txt | 6 + .../gmock_src-stamp/gmock_src-update-info.txt | 7 + cmake-build-debug/vendor/gtm/src/googletest | 1 + .../gtm/src/googletest-stamp/googletest-done | 0 .../googletest-gitclone-lastrun.txt | 15 + .../googletest-stamp/googletest-gitinfo.txt | 15 + .../googletest-patch-info.txt | 6 + .../googletest-update-info.txt | 7 + .../gtm/src/gtest_src-build/CMakeCache.txt | 407 + .../CMakeFiles/3.26.4/CMakeCCompiler.cmake | 72 + .../CMakeFiles/3.26.4/CMakeCXXCompiler.cmake | 83 + .../3.26.4/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15968 bytes .../3.26.4/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 15992 bytes .../CMakeFiles/3.26.4/CMakeSystem.cmake | 15 + .../3.26.4/CompilerIdC/CMakeCCompilerId.c | 866 + .../CMakeFiles/3.26.4/CompilerIdC/a.out | Bin 0 -> 16088 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 + .../CMakeFiles/3.26.4/CompilerIdCXX/a.out | Bin 0 -> 16096 bytes .../CMakeFiles/CMakeConfigureLog.yaml | 577 + .../CMakeDirectoryInformation.cmake | 16 + .../gtest_src-build/CMakeFiles/Makefile.cmake | 137 + .../src/gtest_src-build/CMakeFiles/Makefile2 | 140 + .../CMakeFiles/TargetDirectories.txt | 8 + .../CMakeFiles/cmake.check_cache | 1 + .../CMakeFiles/gtest.dir/DependInfo.cmake | 19 + .../CMakeFiles/gtest.dir/build.make | 111 + .../CMakeFiles/gtest.dir/cmake_clean.cmake | 11 + .../gtest.dir/cmake_clean_target.cmake | 3 + .../gtest.dir/compiler_depend.internal | 397 + .../CMakeFiles/gtest.dir/compiler_depend.make | 1180 + .../CMakeFiles/gtest.dir/compiler_depend.ts | 2 + .../CMakeFiles/gtest.dir/depend.make | 2 + .../CMakeFiles/gtest.dir/flags.make | 10 + .../CMakeFiles/gtest.dir/link.txt | 2 + .../CMakeFiles/gtest.dir/progress.make | 3 + .../CMakeFiles/gtest.dir/src/gtest-all.cc.o.d | 328 + .../gtest_main.dir/DependInfo.cmake | 19 + .../CMakeFiles/gtest_main.dir/build.make | 111 + .../gtest_main.dir/cmake_clean.cmake | 11 + .../gtest_main.dir/cmake_clean_target.cmake | 3 + .../gtest_main.dir/compiler_depend.internal | 318 + .../gtest_main.dir/compiler_depend.make | 943 + .../gtest_main.dir/compiler_depend.ts | 2 + .../CMakeFiles/gtest_main.dir/depend.make | 2 + .../CMakeFiles/gtest_main.dir/flags.make | 10 + .../CMakeFiles/gtest_main.dir/link.txt | 2 + .../CMakeFiles/gtest_main.dir/progress.make | 3 + .../gtest_main.dir/src/gtest_main.cc.o.d | 259 + .../gtest_src-build/CMakeFiles/progress.marks | 1 + .../vendor/gtm/src/gtest_src-build/Makefile | 271 + .../src/gtest_src-build/cmake_install.cmake | 66 + .../src/gtest_src-build/install_manifest.txt | 30 + .../vendor/gtm/src/gtest_src-build/libgtest.a | Bin 0 -> 1771666 bytes .../gtm/src/gtest_src-build/libgtest_main.a | Bin 0 -> 4076 bytes .../gtest_src-stamp/gtest_src-custominfo.txt | 9 + .../gtm/src/gtest_src-stamp/gtest_src-done | 0 .../gtest_src-stamp/gtest_src-patch-info.txt | 6 + .../gtest_src-stamp/gtest_src-update-info.txt | 7 + .../vendor/gtm/tmp/gmock_src-cfgcmd.txt | 1 + .../vendor/gtm/tmp/gmock_src-mkdirs.cmake | 22 + .../vendor/gtm/tmp/googletest-cfgcmd.txt | 1 + .../vendor/gtm/tmp/googletest-gitclone.cmake | 73 + .../vendor/gtm/tmp/googletest-mkdirs.cmake | 22 + .../vendor/gtm/tmp/gtest_src-cfgcmd.txt | 1 + .../vendor/gtm/tmp/gtest_src-mkdirs.cmake | 22 + 519 files changed, 196055 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/FastPFor.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 cmake-build-debug-event-trace/.cmake/api/v1/query/cache-v2 create mode 100644 cmake-build-debug-event-trace/.cmake/api/v1/query/cmakeFiles-v1 create mode 100644 cmake-build-debug-event-trace/.cmake/api/v1/query/codemodel-v2 create mode 100644 cmake-build-debug-event-trace/.cmake/api/v1/query/toolchains-v1 create mode 100644 cmake-build-debug-event-trace/.cmake/api/v1/reply/cache-v2-90317d23090ab28171c2.json create mode 100644 cmake-build-debug-event-trace/.cmake/api/v1/reply/cmakeFiles-v1-090daff46139297d764e.json create mode 100644 cmake-build-debug-event-trace/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json create mode 100644 cmake-build-debug-event-trace/CMakeCache.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCCompiler.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_CXX.bin create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeSystem.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/a.out create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdCXX/a.out create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCCompiler.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeSystem.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/a.out create mode 100644 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdCXX/a.out create mode 100644 cmake-build-debug-event-trace/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 cmake-build-debug-event-trace/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/CMakeRuleHashes.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/Makefile.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/Makefile2 create mode 100644 cmake-build-debug-event-trace/CMakeFiles/TargetDirectories.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/check.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/check.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/check.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/check.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/clion-Debug-event-trace-log.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/clion-environment.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/clion-event-trace.json create mode 100644 cmake-build-debug-event-trace/CMakeFiles/cmake.check_cache create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecs.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/entropy.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/example.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.json create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.json create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/googletest.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.json create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/progress.marks create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/DependInfo.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/build.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/cmake_clean.cmake create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.ts create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/depend.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/flags.make create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/link.txt create mode 100644 cmake-build-debug-event-trace/CMakeFiles/unit.dir/progress.make create mode 100644 cmake-build-debug-event-trace/CTestTestfile.cmake create mode 100644 cmake-build-debug-event-trace/FastPFORConfig.cmake create mode 100644 cmake-build-debug-event-trace/FastPFORConfigVersion.cmake create mode 100644 cmake-build-debug-event-trace/Makefile create mode 100644 cmake-build-debug-event-trace/cmake_install.cmake create mode 100644 cmake-build-debug-event-trace/fastpfor.pc create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch-info.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update-info.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-cfgcmd.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake create mode 100644 cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-cfgcmd.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake create mode 100644 cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake create mode 100644 cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-cfgcmd.txt create mode 100644 cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake create mode 100644 cmake-build-debug/.cmake/api/v1/query/cache-v2 create mode 100644 cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 create mode 100644 cmake-build-debug/.cmake/api/v1/query/codemodel-v2 create mode 100644 cmake-build-debug/.cmake/api/v1/query/toolchains-v1 create mode 100644 cmake-build-debug/.cmake/api/v1/reply/cache-v2-cf2770cfec642e2d8f7f.json create mode 100644 cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-4bcd9d05e54898d24725.json create mode 100644 cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json create mode 100644 cmake-build-debug/CMakeCache.txt create mode 100644 cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake create mode 100644 cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake create mode 100755 cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin create mode 100755 cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_CXX.bin create mode 100644 cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake create mode 100644 cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c create mode 100755 cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/a.out create mode 100644 cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/a.out create mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake create mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake create mode 100755 cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin create mode 100755 cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin create mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeSystem.cmake create mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c create mode 100755 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.out create mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.out create mode 100644 cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt create mode 100644 cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake create mode 100644 cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d create mode 100644 cmake-build-debug/CMakeFiles/Makefile.cmake create mode 100644 cmake-build-debug/CMakeFiles/Makefile2 create mode 100644 cmake-build-debug/CMakeFiles/TargetDirectories.txt create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/benchbitpacking.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/check.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/check.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/check.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/check.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/check.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/check.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/clion-Debug-log.txt create mode 100644 cmake-build-debug/CMakeFiles/clion-environment.txt create mode 100644 cmake-build-debug/CMakeFiles/cmake.check_cache create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/codecs.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/codecssnappy.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/csv2maropu.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/entropy.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/example.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/example.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/example.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/example.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/example.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/example.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/example.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/example.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/example.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/gapstats.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.json create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.txt create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/gmock_src.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/Labels.json create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/Labels.txt create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/googletest.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.json create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.txt create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/gtest_src.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/partitionbylength.dir/progress.make create mode 100644 cmake-build-debug/CMakeFiles/progress.marks create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/DependInfo.cmake create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/build.make create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.make create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.ts create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/depend.make create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/flags.make create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/link.txt create mode 100644 cmake-build-debug/CMakeFiles/unit.dir/progress.make create mode 100644 cmake-build-debug/CTestTestfile.cmake create mode 100644 cmake-build-debug/FastPFORConfig.cmake create mode 100644 cmake-build-debug/FastPFORConfigVersion.cmake create mode 100755 cmake-build-debug/FastPFOR_unittest create mode 100644 cmake-build-debug/Makefile create mode 100644 cmake-build-debug/Testing/Temporary/LastTest.log create mode 100644 cmake-build-debug/cmake_install.cmake create mode 100644 cmake-build-debug/fastpfor.pc create mode 100644 cmake-build-debug/libFastPFOR.a create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-death-test.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-message.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-param-test.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-param-test.h.pump create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-printers.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-spi.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-test-part.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-typed-test.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_pred_impl.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_prod.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-port.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-printers.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-death-test-internal.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-filepath.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-internal.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-linked_ptr.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util-generated.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util-generated.h.pump create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port-arch.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-string.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-tuple.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-tuple.h.pump create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-type-util.h create mode 100644 cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-type-util.h.pump create mode 100644 cmake-build-debug/vendor/gtm/gtest/lib/libgtest.a create mode 100644 cmake-build-debug/vendor/gtm/gtest/lib/libgtest_main.a create mode 100644 cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt create mode 160000 cmake-build-debug/vendor/gtm/src/googletest create mode 100644 cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-done create mode 100644 cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-gitclone-lastrun.txt create mode 100644 cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt create mode 100644 cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-patch-info.txt create mode 100644 cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-update-info.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeCache.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CMakeCCompiler.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake create mode 100755 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin create mode 100755 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_CXX.bin create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CMakeSystem.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c create mode 100755 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CompilerIdC/a.out create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/3.26.4/CompilerIdCXX/a.out create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/Makefile.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/Makefile2 create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/TargetDirectories.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/cmake.check_cache create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/DependInfo.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/build.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/cmake_clean_target.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/compiler_depend.internal create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/compiler_depend.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/compiler_depend.ts create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/depend.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/flags.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/link.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/progress.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/DependInfo.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/build.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/cmake_clean.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/compiler_depend.internal create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/compiler_depend.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/compiler_depend.ts create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/depend.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/flags.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/link.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/progress.make create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/CMakeFiles/progress.marks create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/Makefile create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/cmake_install.cmake create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/install_manifest.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/libgtest.a create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-build/libgtest_main.a create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-done create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt create mode 100644 cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt create mode 100644 cmake-build-debug/vendor/gtm/tmp/gmock_src-cfgcmd.txt create mode 100644 cmake-build-debug/vendor/gtm/tmp/gmock_src-mkdirs.cmake create mode 100644 cmake-build-debug/vendor/gtm/tmp/googletest-cfgcmd.txt create mode 100644 cmake-build-debug/vendor/gtm/tmp/googletest-gitclone.cmake create mode 100644 cmake-build-debug/vendor/gtm/tmp/googletest-mkdirs.cmake create mode 100644 cmake-build-debug/vendor/gtm/tmp/gtest_src-cfgcmd.txt create mode 100644 cmake-build-debug/vendor/gtm/tmp/gtest_src-mkdirs.cmake diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..33c9926 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +FastPFOR \ No newline at end of file diff --git a/.idea/FastPFor.iml b/.idea/FastPFor.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/.idea/FastPFor.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..79b3c94 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..474379d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/cmake-build-debug-event-trace/.cmake/api/v1/query/cache-v2 b/cmake-build-debug-event-trace/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug-event-trace/.cmake/api/v1/query/cmakeFiles-v1 b/cmake-build-debug-event-trace/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug-event-trace/.cmake/api/v1/query/codemodel-v2 b/cmake-build-debug-event-trace/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug-event-trace/.cmake/api/v1/query/toolchains-v1 b/cmake-build-debug-event-trace/.cmake/api/v1/query/toolchains-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug-event-trace/.cmake/api/v1/reply/cache-v2-90317d23090ab28171c2.json b/cmake-build-debug-event-trace/.cmake/api/v1/reply/cache-v2-90317d23090ab28171c2.json new file mode 100644 index 0000000..a7eb0d3 --- /dev/null +++ b/cmake-build-debug-event-trace/.cmake/api/v1/reply/cache-v2-90317d23090ab28171c2.json @@ -0,0 +1,1619 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/addr2line" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ar" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "27" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "8" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COLOR_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/bin/cmake" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/bin/cpack" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/bin/ctest" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "/usr/bin/c++" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ar-11" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ranlib-11" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C compiler" + } + ], + "type" : "STRING", + "value" : "/usr/bin/cc" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ar-11" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ranlib-11" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Unix Makefiles" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "/home/kosakseb/Developer/FastPFor" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "/usr/local" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SO_NO_EXE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install .so files without execute permission." + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ld" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gmake" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/nm" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/objcopy" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/objdump" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "FastPFOR" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ranlib" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/readelf" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/strip" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "name" : "CMAKE_UNAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "uname command" + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/uname" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Git", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Git" + } + ], + "type" : "INTERNAL", + "value" : "[/usr/bin/git][v2.34.1()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FastPFOR_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace" + }, + { + "name" : "FastPFOR_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "FastPFOR_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/kosakseb/Developer/FastPFor" + }, + { + "name" : "GIT_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Git command line client" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/git" + }, + { + "name" : "SUPPORT_AVX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_AVX" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "SUPPORT_AVX2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_AVX2" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "SUPPORT_NEON", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_NEON" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "SUPPORT_SSE42", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_SSE42" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "/usr/local" + }, + { + "name" : "snappy_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "snappy_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "/usr/lib/x86_64-linux-gnu/libsnappy.so" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/cmake-build-debug-event-trace/.cmake/api/v1/reply/cmakeFiles-v1-090daff46139297d764e.json b/cmake-build-debug-event-trace/.cmake/api/v1/reply/cmakeFiles-v1-090daff46139297d764e.json new file mode 100644 index 0000000..21b55d8 --- /dev/null +++ b/cmake-build-debug-event-trace/.cmake/api/v1/reply/cmakeFiles-v1-090daff46139297d764e.json @@ -0,0 +1,389 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "path" : "cmake_modules/AppendCompilerFlags.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "path" : "cmake_modules/DetectCPUFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "path" : "cmake_modules/environment.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "path" : "cmake_modules/Findsnappy.cmake" + }, + { + "path" : "cmake_modules/googletest.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/gitclone.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "path" : "FastPFORConfig.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + }, + { + "path" : "fastpfor.pc.in" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace", + "source" : "/home/kosakseb/Developer/FastPFor" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-debug-event-trace/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json b/cmake-build-debug-event-trace/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json new file mode 100644 index 0000000..699ac4b --- /dev/null +++ b/cmake-build-debug-event-trace/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json @@ -0,0 +1,111 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/local/include", + "/usr/include/x86_64-linux-gnu", + "/usr/include" + ], + "linkDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11", + "/usr/lib/x86_64-linux-gnu", + "/usr/lib", + "/lib/x86_64-linux-gnu", + "/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "gcc", + "gcc_s", + "c", + "gcc", + "gcc_s" + ] + }, + "path" : "/usr/bin/cc", + "version" : "11.4.0" + }, + "language" : "C", + "sourceFileExtensions" : + [ + "c", + "m" + ] + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "/usr/include/c++/11", + "/usr/include/x86_64-linux-gnu/c++/11", + "/usr/include/c++/11/backward", + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/local/include", + "/usr/include/x86_64-linux-gnu", + "/usr/include" + ], + "linkDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11", + "/usr/lib/x86_64-linux-gnu", + "/usr/lib", + "/lib/x86_64-linux-gnu", + "/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "stdc++", + "m", + "gcc_s", + "gcc", + "c", + "gcc_s", + "gcc" + ] + }, + "path" : "/usr/bin/c++", + "version" : "11.4.0" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "m", + "mm", + "mpp", + "CPP", + "ixx", + "cppm", + "ccm", + "cxxm", + "c++m" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-debug-event-trace/CMakeCache.txt b/cmake-build-debug-event-trace/CMakeCache.txt new file mode 100644 index 0000000..2284841 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeCache.txt @@ -0,0 +1,488 @@ +# This is the CMakeCache file. +# For build in directory: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace +# It was generated by CMake: /snap/clion/261/bin/cmake/linux/x64/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:STRING=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=FastPFOR + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +FastPFOR_BINARY_DIR:STATIC=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +//Value Computed by CMake +FastPFOR_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +FastPFOR_SOURCE_DIR:STATIC=/home/kosakseb/Developer/FastPFor + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//Path to a file. +snappy_INCLUDE_DIRS:PATH=/usr/include + +//Path to a library. +snappy_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libsnappy.so + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=27 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=8 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/kosakseb/Developer/FastPFor +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.34.1()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Test SUPPORT_AVX +SUPPORT_AVX:INTERNAL=1 +//Test SUPPORT_AVX2 +SUPPORT_AVX2:INTERNAL=1 +//Test SUPPORT_NEON +SUPPORT_NEON:INTERNAL= +//Test SUPPORT_SSE42 +SUPPORT_SSE42:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local +//ADVANCED property for variable: snappy_INCLUDE_DIRS +snappy_INCLUDE_DIRS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: snappy_LIBRARIES +snappy_LIBRARIES-ADVANCED:INTERNAL=1 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCCompiler.cmake b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCCompiler.cmake new file mode 100644 index 0000000..6ab5144 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..c3dc3f0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..a4691337f66c7201fb0c354daa924d93cb69ee7e GIT binary patch literal 15968 zcmeHOYit}>6~4Q9x#ZzZnvjr`W}z)4EuPqk6GD*5+Us>@E5`|m1A>rFX1!y3#6HaK zY-<-Nf$*pmQUz2Mia-hl0TMz=B}9Hyg{^{$sGuT0ph2ioC{zSUTNes4kY+h&?)f(3 zVcnv_49olcEXD%isFPjA6$0GYFL)+8o&_%E=?E#Tb&I$kT zlzfJY#skdXWXCB14(!OiXH-crbS6x>p6vSV`Rj*cDOMzw5g^_%8?CF!5X)SjV3io(>H zlQgRMF)bq=>sE`N?Z5Nnmph)i^ho;T?Vq^giQhfF{kdC*|G+lfZ}wpuE*uX-gk`RC zn{1==@o}oj*d{#hJX!RKc|JJ)susF5amg0EH4k5!hv$C1xkVghStFCSHR_h^f_t|^ zA|-gls(NG`QY>?Rcc?vs*}k;3)!1rmZ`QYUD=Ry^*UCE;XUwg7PGxv+x==1T z!*;H~;l_&Pl7zFgX-h-SV9fv1XDUWA_ZQ=(w%)ytv(Dp>x$l1N0ZMb6zVURyb&TsL zxl;49a(#opC;{72S`Qxbh25IxbI3VExftMs=lxQE#~5RunE=n@2W2+E%U2>)5k?t^ zG7x1T%0QHXC<9Rjq73{WXW-B6H~!r`e!0y&vFMjulrle6_u`G8na6+FcFxaAWBWry z|EY1y*9h7-Dz+!-QD5p;zTEX(cKZAs=JYe>@!!tuAI@~uyMAn*?0JF$G}ctf@}*Iu zed8znc*H+QjCpd==NaBH>#d=t-@|ok`ntx&_KnBb@SGsoyT1MQ9K+_T=JbsD*z>#1 z$7UCpvB%BxSH0B~;1&tc*0?y@zLEL`f9~(G9#*T`ZHLU`J#ns@)6aU#%o9C}Nw~DR z(P&)C)5qhBUZ%V5*b(xbB)3FPqb~i$BU-;clMDTsFUGo?P?u6_lOt zEljk3zaGn65q32n=C4?Dc455zY*_Q_R+=?`3`M$fY)O z5M?0BK$L+f15pN|3`7}-GVt$bfZu<;QppYt?AukPH+JPwD?i~?4tMT660{%6?i9i@&bfza z9RfSVHY|82zkB0%S*KoTG>#IUCcKyM453N*;7p@&nve^>Q{@u7`+$l~CSn_wEonPN zFVvXlwF5`V=Phi|zr=qdcQaMH>3Z}_O_HLXfr5dG^kt?m_ED!5K?jUWJPBkQvMafv88r6KgAE<7#v^b6wM zC^GE+(a`;+Jo(gBk@aG7dcl27?|ag%segPkay)+%8U2#*|2@F^@c%F()}`)Ar*|bc z9m>^8UM<z9bGkF?7C;`R-?0fv(T^HAdjns>cvLbit`;K&1WScNin#du$4WZ zkGNW)CS*K{xk?IuI>c`i9^)JKS*pa;I+aLi2IHPrS;y#U0miG=D)kYnaJ#r(!1Fka zsp}QSKlpD_rB(kQ@$C~TmDH9PU%wFksPF>nCEhcnJ+tAI}iKGQL(}+(Y>&^VBk& z1e6ZfdjpJ{ilu=Z4T&v-%#(~Y?^4=WnpDZ(VG1Sl(lDYUtjN_wQpeHU}o4F?(L(8 zm1G#&tdPPMg;&{@;CDUn^i)|+-u7(e=ZM0xpf@d$Fn0%om9Lhqal4e~-3{4&WR-VI zR;}vfDM*PvtX#D!zW)9R%c30-{9u(2k+({;-2X6l8%Fauc&mkfHfZBfb*kvuIYO_Z zaU3nV;(j37eUBxNb?4S%DD$1BB=nrG8Ocl?Wq)#4iWLfqzYdGUF!p8ID4@vv$ zp{6}hr{H$c9ii^9&>z3sz$6R>!~X9j{;xC#LjN)E1EPJ* z`!Mf9Seq(5=Yv1yg}_r{$bID8!5{NEmpGnkz#sEWApf2ROE~`@A|=o9;E#D75c6g9 zA9lcd$e-tokTGurc1q*n{-aMPslqvhKjyK(x)`GU@bQ0v^n6UvH-8u8_W|>F3FEhg zI^$R9Kj@znKcI+B7s$YeLjIki0KyIdAOpW0@=u8Zm=B#W_#xiIA%DypfVjVbeR%wy z6@TPkCB;(kJ`n*zLsUPY8g~)?r^Eor@4A8|-2P8V8T79wwKeempflBR{y{%Q6`n)l z{sZ$??1v27Lk9kaeA@&5m?zJ65J?4gTDm5Ke}NP{_RxNF-f3u$Iv*Sr9{*h6hx7Oi z;@AZKn1|N4u(eVt|MS`h{DHHi3i>x4I<*hlK?L|gzDgD5&_3p83Golx%i+LXEg*t9 zF>mtlzpcsW3jBkJu@f{+Nx*MO$M`ztxik8M??1lZLf?b_m-t4B%H~jTw5zo|7jEsp Ol7CpJEDJe=MD6~4Q9xipD4Y0{XaG)rl!gyMGO>N{Eynl&ykVs6-(W6+uWS&{hf}P#0R{LdbH?z2{qx zN9&f?4U}$Q=6!egh{gx_oD~txHALnMS)%eZrU5s(b%XUHdvB-YPGWK*jOcAU~dqCuqbHbl) z$!8GTBn&X=QpAx54Gm^IrDfY43peosR1;Du{0}v;v~NcafjYi|AhqaGDQF zdrO^%nB*TQ=~X-PxlC8*&V05tpDR?RTc^9bTDv-}a?$G0O>@8E^x-kJf9SBHFjeLx zjVgNF$cV?f4WeiJ=bkR#@mOi_(eG7v{Q9Y;AKmil`?vj+ZMfg;!!}$v9)<|ZT<12~ z#^mGURFknyc;0<_QWHyjas2fSbiKsI8}QB&d|?Tm`*l-;ILdKGr_;_@u8_{>?siF} z1dlppFJ1DS$#kxuSmyk8sr>_~eZ5YH)nVI*&i*zVo>+QktXmi)RY1V_ZM+ zb%vjp>l^$<3D}e{dhn1h+-`V2hnzE%i$30e-Y@xhj4}3^^YJ`>Q09HS{3JpZVwiz2 z17QZj41^g7GZ1DV%)tL~2L9Z9<6rF)mz(U9D}K3CDf^REFIxMVed32r=X6$TyB{R_ zPql4dC1~EN*q)^CYpG9Zx&05R+4JwWXMby-cy8{%NV2`!{$u;p-lr%)ZDW}%UmCNT zw|+v$BmMzm>{BZ~&v4tkw~?BDH`l4@Yibvpw;pH1bAn`_)AqYF3_Gscvvc<2f4tp( ze14f7dBQ$_)!RS;wn>1d+QqTvt<*30bAONTWwol@de}a(H_BCe_IYo$eRA(g5-#ni z)oPcr^!3DwztdfJ<4f+CMYnxlXY}@9vHaq((*tl1_4{FV!lFs_8Vn zP-C9g4jdz&TiBp)m3||4GgUk3vz>TNtc~@rZFy(&wRbfgSGRB8^X6SQ>(`g;|33P} zU`KT>9MhxEi^PAJiR9YYr=q=URz^$IG8175GZ1DV%s`ldFau!*!VH8N2s037Ak4u3 zMh3865$hAN_E6vSP#0IDo3eg!jmTeTmG%_3txB;PM_f&S&IwIa(8 z%OXasO`PBxJ}PESt5O$4|2jjf`vk8QY!Tcj2*BFNs;qxpC5kp_2>qxEPm4WuLA)D9 zhTY$4roWUYO|rcze6mX|=VsSG3rEPe+H<*11FIS8tHV)pGS>EojC0j*#Xvl90FrY6g+CMEcL|U24f_;TBC18j5{ALJ=T+7bdRl<-YP3pygeu%Ft{3n;4kPM1 zh4Bymn^bAk{~u`kn2N`ZCC2MB!Y72sxO-XnW5Nrl7V2jXqA92OXY2wwqLIf zyip8&(5Rogv_17MFrMB{yi)7x>+}(3SleH(aGim7iEp&N{9fYYF!JHIHNQ!zgpZ`^ zSBQ_PP4)8y?bnH4A8l6nJp%ub*azc0s^i0I0iPs(U38PexQFKF%u~xMZWy_Y)w9IM zX#BJ!U}=!|i>#+{l8|wzpEZ%{lGtOs!RsZl-yy%J`WX@_Um>3R6SQ9ut#<_>G;SsS zrbUbq_7J~5O23kU>p~qGEqU!$kygsn(>BLTk1Ha|US({|8dVFc>K$*=8Rd2LWwOi` zo$-7zlg>L?uUINO>B_VkEly75UC+&0ZH+B>jepKbmr7}RC|K}HGit1qo^+jTWpZ+c zTzry4mfj-M-of+-+}=Cy?4?$6dAHQFFJ+BRO)2NS1MOY8!dTJqJ&R|ia7@bUR zoZ8Li(gm%*O?&zD`JCtFU7ty}wxFy~=lT!!4C<$o4s9and(TkMV5*mB+Ku5PZPD6& z2bHsbV0d58fHU0Re<(TPjP&fIhni#<*wm1~R)*KwzTjrlURvqYQ4|);UIr2tZ)|X~ z<)Sl@E@XMrLu#0;vblm&DZ5$4heY<7a#?)!whG6gjS~F4m5+#bP&C{Yv3Pezz1zG4 zL!Tttk5rzS^wJqZuVionwOoO=V@xTlQ1o1Dyil>GO2sL+wVi=)AV_ z7}Vwy>GFiKvNHv0!k||&nh&|9a;{idBsioix%o6ZD2qpsvZnIp%Nj3I#dD|Wn};D; z7IkJVcR~i6|?g9z}0e3dH9 zp?%ETV&WgPm&1X(T1EtOVqWLre`}pF75MuR=iYCckbvKkj`4MTJ$=w0{QmKM82aw_ fzr;6CR1$&UXxC_Yj@;OPJO5*$vO3@p5Y;~bTFV^r literal 0 HcmV?d00001 diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeSystem.cmake b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeSystem.cmake new file mode 100644 index 0000000..4b52145 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.2.0-37-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.2.0-37-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.2.0-37-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.2.0-37-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..88155ff --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,866 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#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_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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(__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 "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/a.out b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..c786756abbd10a6ac500dd20933efa409d328d0c GIT binary patch literal 16088 zcmeHOeQX>@6`woj!=Xv+xG^?KX|^GSgwz|`aZ(eMW8 zZjag(l%SLnlSXPGD*Xebst77RDuINGhy*wk1zHMfB&3G_Oh2R`h1PskrbId3n|Z(U zc{vA(_75a>EbnjLZ{B+|`(}1;c6a7;@qxZ*B%+Y&)IP;htkEzrDR}&D$q>X;w^~ET z_o~~}3X+#;&XmUtP^n2*qKmO!_&P$iYvoK0yv@*5gGp#1Bik*NQrsX)KqcqFcFVay zWcgdL0e6l|kU-C>g8jMN82 zJUJ%(-!1VBV!OBj2JKQ}7sOt%19Balj=$z7{+s%airovAcB6uLm!TC9^?j7=q-#av z=74TKCiN}V4~-IkpoCZL$fQShckRd|+A`@}X|ipydw1LJF1whwJ9Wj}E{pzoOdUFW zLXn#p<|K?NddkS~$7SoKob{J)zUNZi`461`=J4bz`+nZ{vYKsP&pO<0wqYGk><>eP zWzKV*tYhNwdCJMyCcK>dZB`RY9N2$Tjj|r%tQx$#1fN@i=XPzb;YYdd=%nY4rE^{; zeSeZf3h<~~^u2=bX1#PyvCQ$^tqu+JAM9~E?M{1FCBL&vx&1?fZX#Joj;D)$vM@B* zlga0jL*7V+-Hm7SIdSJ2)tZVN!HE7dJryCD+l%p1+K^twQRnf;+z%gpjKUnHJDy3n zj&c21>kL0H*EjfCaabQS<=`PV26)RddaVJzAiNdezbO3H0RI)?+XMX5!e801bmFnY zeT6hz#q$_Lx?06!Y;)OM70=@qX}*fr_gfT%7)BtBKp25A0$~Kg2!s&`Bk(^FfxkA~ z{+4t4TD^02`R{iq<$PhrkCtC_PXD6*S>3+!t|y89OZm=k5HxI3tWVNUwA8D#-0`RW z>C2yRreAhWzdCnxDBdyC@tkvR@AKrK+*~Bhzm3@qn;z8uh`&gTb8h(sh7ZmA%~bWr zI8RltD$h1-I>n053X=Y#T7TD<7`EMTrstfCukUv*&eu7SOU~sR{(5q7r#PrD&yF>0 zqISWa+k0y7AQh|9_7l$Oy;06O)35ofowIvakZ^Tdxm>=Qpu;8YCUTN&7uo;uJ}P8K zC&+I4v)7#I((Ete*SVR_+2-fzN&Rg6n)A35d9mRc)$r4qNc=kS7nb0^Q;Rna&NV;1 zmZJR3vc`&+2Wx4QcfS^YHh%pibz7xRE4|1~4O19_Falu&!U%*B2qO?iAdEm5fiMDL z1i}dXKSzMSf88wgAMQJ{XEdLkNN19TVfre0aQ9Qy@Uxue)HfH(rW>Aa;{wd8XQAZt8}@u~=NA5qsO`Dl zE6`(-68rS&|HtI_+f2mQHa-;XS+gSg1l7z$n8FBz5eOp?Mj(tp7=bVXVFbbmgb@fM z@Xkg6>lLv+5o-YT!wXfl8r8}A#Wf=TPS!cTM`Wyn+$b_0VK#`2^^pAB!wKbozfsP! z{C!zWh&6&KerTh_>k>I#k@9yLQJoRIMX*({Sr8y*YDU%}u9SjysR-@pmJ_GNo;tzb z?IJ_(pJmftQrFZCkhkzfF%=mugwY5!Rhz zohjCpVjbzBo}N9{))OP8oL{o&L7$%R+d4{G?0BHF({AtDCiKl4#@(rD9+V?j*iZwN&DX(mljCMH>|EE8t_I zAM`V*{X=U3?&jCi=!o zsXpSHsNZ8UuJpSiD*T@KX%v0MiEoP1-867rbP&&Ri&;jqQw;WLzC~FvL*TsB@zH|cVdrTDzBiI~ zeQ#V5QS?h=WA><8Sgr5+S$CAz>laBgk$1;4`4KPUCj5M%=z66|#qSt1Nk5se+iPp^ z-hs616$;*zo6PxzDK%E`vPm~l%4Vm?q)Kv0(_f_8Gw6LX+0!HMG5ZtLHrMStc3?2> z#t-+pv}2(6p2G(Q`+JC{mz-|gky5Akm~syd965Mkz&+B}cRW7i4jni+5GRY^4u%-^ zE&Qjw3dw}$drF@Vd11k9Tp(fbE(SMI%)2Ri5z0Fp`j3!SBAs(f#biRIb7OfIZ&8hu z@p9uOZ#?P#`x{b45fdA{%caUjibbhdZ@_R}+EO9m(C#Y^gD+!mvcF>SHjhe3cq@nQ z71LCCPizE!?W>esoXYy%2%%pvm_ja{qwO9O%FgBeq&=Q1*%O8QM6%#dRZ%0QH0{+% zCxkk1u)mGRqE=6N#gwuWQ#q=_pkFX0Xopr4!KJc7GUKs{F_IRE$J_T6W zJRC_guRGIDrepx75@Zj_*qf1PERZMXUN${S&Ec_NQ&%XPx+Y5_Tdugb2RtvMTSDdS zesG^1=4Ggbb*t0+NZ`2>UG_RHwVzCiEAucm;Okt1tGZ6D<)E_+m zuaYgF6Ur;UGxB?b=LS;IDcFBsC$`$&5<8%XV!iM)2L8!_eY+F@p$7+$f!__-$D{!G zUZMD;VuaT8(xf+zs*s%V-_u>Ri= zU2Q)v_Q3N2d-Ol(mncJPSu6V?F%QN*%%DDG;45U?P-TyK_k0_Xl%Qv%1sVJsRKR0T z9v>Fw!?bRe(~R^VkAF_ELqC3tI97o@o+oE^u(nb$eOx%e9ym`$)%F#Gc4O1MV5)Pl z1AT)s%%OhF1G~jOs4u4jb5%zKbE011VZXh?m<;Tz5o4!XH6;#lALQ$ppA*m?-2YY) ohqhPS$M_>ECG3ATl4&dQj65B#Wq*c$SSYPVLyf4>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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(__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 "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "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/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdCXX/a.out b/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..6f7591430982e78f058bf3d0fb3528e454cf27eb GIT binary patch literal 16096 zcmeHOeQX>@6`#9&IW);#(uSC%G)HNxq^&n+$4O04$T{{oYh)*B;*>xdR%_qdKJ`A# z-5#|Iv_UBlHw`pU0TM-uiUa~w2_zImr51;xqE;;=5)}a<6h10~l(yzmZi#ZdH}ihy z^KuRX`UevGEbp85dml6VW_E9Ocjkd~Ur#g=QJ@9tJ&L7N+#o4YoVr5_#8Rq5EvMt# z)%9vI$qO}R^eMwgYv_D*E^iWi0de+g=0XF0y@9C)Lues$_M4AJxj{tWO3s7*7O_I) zApf;g01kbvz63iHCG@ez9~M9GdOvQ;bc?Z{-aePxl9#>0;m4vr1{;CGLF2WKGaAzL8Fb~e{y0JkVg(Ov<+NFC)|Og%bGveS2l}0iSMo-(W#20e z^mpZo1#iF|%yGDpe6b+m9AnzhkTV$3f2OA*By)Q)UMg#|OF8R2{uukt$Xrt5GXx1gCiT;Fe@2zi)+Fau!*!VH8N2s037Ak4u3LXyd|{!{hluMmr^S8PwxQ(Ed)T5f%% zckV8+##h#qD&%CikCf_;!f4G;F z9OwY~O@8c>Jz2T%qx5BNrhR<%^Yo;CJblUjq8&LKJFQ|*Pesy~34d}P{2PsM6X3+^ zCst6FPcMwuqCD8hnxgxS@Z;&rhpF3YeOl{9ZfZzj2Eq)483;2FW+2Q!n1L_@VFtns zgc%4k@c*0v{{D3}>fPP5XWLLQKbFmTr9<>p^6*^iIeO>AUa6cd77isfwYFNOkZeaG zd01(Wv7GA<7fbm=ef)J*K({nBdPvIjVX%;KOBwp$H|$n&{-M@8MB|P7UV&>V*K~V! z>sCe9EqM0^Y94=&8hEW*y_mm8MhY9+>Ua1yY z{+28z#2Ud-erO}&b%{*pMgJBfs$;^h5#B6(wQw+TQ&X}Iafv9BQW4tGAtz3YJvAZT z4I;zt?^V-YGS|=*kW|f+757Vo zG!ILMCdA-c;*IRN-=b=T8k2D=<|-lhsQ|uNa9jtl@1;USHLH%4LAZTPyc#<~Pxlzt z8l=NV>7VPxbp`ww6(Z_dh3f?P*Qn5_{ZDKAxJo6AWt(9Xp|Sm0!Xvbj``A0gu#Po~ z|0``zS4&{L{9gO5tgXXGm^ZZjTWi-5@Hi!86@)t8LU^K1M)9D=*C>?&Vt6m%akZwF zXK42lzA741xZeQ3OYDPjhID*b&GHiAE2C=^#x*n#FithAghAvoRiD=Q8WmiB{g~jv z_0&%h9;b1VN+Gi0cN4yf#zRWRn|_Bxsvk(4xY*-TIV+NmP6=C=@j;~c~YorJH7(p@%iz3d`M1eE>C@US(cW>@Pwe%=}4_4;M9%oLrGTyfCNIT^oLDm!jvT=6@`oacKP zE7{nB_YPzow^VW`9IxP)Ce(1r&3jI!lFv_&OP%D9r9a2CtKYrH>pFO_OWtJmW~`yH zG39)queB{(7%t+?CB^C4*V&(T(!0AI+DFj+{@tDZyCoY8 z0fVn-ud?f6?&gnLN_c~Z?km$&e*deKRi4QE?jUi$WcVmb*#hnR7*kfE=zG>kp<<1d ziep~MpQwWdD_PpKlg$X!xwE&02cFIP$@rTgX*^J-;BG!UM9tyuw|uh?G3Xgg@q$;FzzY{jdYSpZs~w3K{cO@T628Y(Ls` zf(o2d_+uUoj(Ifd51#)Q$d}Iv`r7Y`{J!A%flM?7`|rzy*83;K4_rj?p8eSZ{&>JY zDGG4dApm6XZwCBRq5%JFpu^yYc;62AV_pM}=PTF;&;PsPkNm5ISPFkmL@Y zn+X3G!~p#Enx!cO>wl5pdjA>m2Y)o+kNyYzGb+%U*4n;E%!jcbGiVPP{I}#AtMkYF zd!~gzBG?&eRtEkWDR}J3W5n$Im)6fRO-cXp_-BG2`thrTu?hU~TsgIgt(8jYk$8-y_^o*)dB(-6Z0Al|J!PaDZsy;W9-zM yj!Hn>2l+bYXBD&u_rIltq3!klDgKyBbY~zq>NQ%Pb2j!r$v-Sa%K{DoQT+qb`dVZF literal 0 HcmV?d00001 diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCCompiler.cmake b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCCompiler.cmake new file mode 100644 index 0000000..8c50177 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCCompiler.cmake @@ -0,0 +1,74 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..32b5a24 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..a4691337f66c7201fb0c354daa924d93cb69ee7e GIT binary patch literal 15968 zcmeHOYit}>6~4Q9x#ZzZnvjr`W}z)4EuPqk6GD*5+Us>@E5`|m1A>rFX1!y3#6HaK zY-<-Nf$*pmQUz2Mia-hl0TMz=B}9Hyg{^{$sGuT0ph2ioC{zSUTNes4kY+h&?)f(3 zVcnv_49olcEXD%isFPjA6$0GYFL)+8o&_%E=?E#Tb&I$kT zlzfJY#skdXWXCB14(!OiXH-crbS6x>p6vSV`Rj*cDOMzw5g^_%8?CF!5X)SjV3io(>H zlQgRMF)bq=>sE`N?Z5Nnmph)i^ho;T?Vq^giQhfF{kdC*|G+lfZ}wpuE*uX-gk`RC zn{1==@o}oj*d{#hJX!RKc|JJ)susF5amg0EH4k5!hv$C1xkVghStFCSHR_h^f_t|^ zA|-gls(NG`QY>?Rcc?vs*}k;3)!1rmZ`QYUD=Ry^*UCE;XUwg7PGxv+x==1T z!*;H~;l_&Pl7zFgX-h-SV9fv1XDUWA_ZQ=(w%)ytv(Dp>x$l1N0ZMb6zVURyb&TsL zxl;49a(#opC;{72S`Qxbh25IxbI3VExftMs=lxQE#~5RunE=n@2W2+E%U2>)5k?t^ zG7x1T%0QHXC<9Rjq73{WXW-B6H~!r`e!0y&vFMjulrle6_u`G8na6+FcFxaAWBWry z|EY1y*9h7-Dz+!-QD5p;zTEX(cKZAs=JYe>@!!tuAI@~uyMAn*?0JF$G}ctf@}*Iu zed8znc*H+QjCpd==NaBH>#d=t-@|ok`ntx&_KnBb@SGsoyT1MQ9K+_T=JbsD*z>#1 z$7UCpvB%BxSH0B~;1&tc*0?y@zLEL`f9~(G9#*T`ZHLU`J#ns@)6aU#%o9C}Nw~DR z(P&)C)5qhBUZ%V5*b(xbB)3FPqb~i$BU-;clMDTsFUGo?P?u6_lOt zEljk3zaGn65q32n=C4?Dc455zY*_Q_R+=?`3`M$fY)O z5M?0BK$L+f15pN|3`7}-GVt$bfZu<;QppYt?AukPH+JPwD?i~?4tMT660{%6?i9i@&bfza z9RfSVHY|82zkB0%S*KoTG>#IUCcKyM453N*;7p@&nve^>Q{@u7`+$l~CSn_wEonPN zFVvXlwF5`V=Phi|zr=qdcQaMH>3Z}_O_HLXfr5dG^kt?m_ED!5K?jUWJPBkQvMafv88r6KgAE<7#v^b6wM zC^GE+(a`;+Jo(gBk@aG7dcl27?|ag%segPkay)+%8U2#*|2@F^@c%F()}`)Ar*|bc z9m>^8UM<z9bGkF?7C;`R-?0fv(T^HAdjns>cvLbit`;K&1WScNin#du$4WZ zkGNW)CS*K{xk?IuI>c`i9^)JKS*pa;I+aLi2IHPrS;y#U0miG=D)kYnaJ#r(!1Fka zsp}QSKlpD_rB(kQ@$C~TmDH9PU%wFksPF>nCEhcnJ+tAI}iKGQL(}+(Y>&^VBk& z1e6ZfdjpJ{ilu=Z4T&v-%#(~Y?^4=WnpDZ(VG1Sl(lDYUtjN_wQpeHU}o4F?(L(8 zm1G#&tdPPMg;&{@;CDUn^i)|+-u7(e=ZM0xpf@d$Fn0%om9Lhqal4e~-3{4&WR-VI zR;}vfDM*PvtX#D!zW)9R%c30-{9u(2k+({;-2X6l8%Fauc&mkfHfZBfb*kvuIYO_Z zaU3nV;(j37eUBxNb?4S%DD$1BB=nrG8Ocl?Wq)#4iWLfqzYdGUF!p8ID4@vv$ zp{6}hr{H$c9ii^9&>z3sz$6R>!~X9j{;xC#LjN)E1EPJ* z`!Mf9Seq(5=Yv1yg}_r{$bID8!5{NEmpGnkz#sEWApf2ROE~`@A|=o9;E#D75c6g9 zA9lcd$e-tokTGurc1q*n{-aMPslqvhKjyK(x)`GU@bQ0v^n6UvH-8u8_W|>F3FEhg zI^$R9Kj@znKcI+B7s$YeLjIki0KyIdAOpW0@=u8Zm=B#W_#xiIA%DypfVjVbeR%wy z6@TPkCB;(kJ`n*zLsUPY8g~)?r^Eor@4A8|-2P8V8T79wwKeempflBR{y{%Q6`n)l z{sZ$??1v27Lk9kaeA@&5m?zJ65J?4gTDm5Ke}NP{_RxNF-f3u$Iv*Sr9{*h6hx7Oi z;@AZKn1|N4u(eVt|MS`h{DHHi3i>x4I<*hlK?L|gzDgD5&_3p83Golx%i+LXEg*t9 zF>mtlzpcsW3jBkJu@f{+Nx*MO$M`ztxik8M??1lZLf?b_m-t4B%H~jTw5zo|7jEsp Ol7CpJEDJe=MD6~4Q9xipD4Y0{XaG)rl!gyMGO>N{Eynl&ykVs6-(W6+uWS&{hf}P#0R{LdbH?z2{qx zN9&f?4U}$Q=6!egh{gx_oD~txHALnMS)%eZrU5s(b%XUHdvB-YPGWK*jOcAU~dqCuqbHbl) z$!8GTBn&X=QpAx54Gm^IrDfY43peosR1;Du{0}v;v~NcafjYi|AhqaGDQF zdrO^%nB*TQ=~X-PxlC8*&V05tpDR?RTc^9bTDv-}a?$G0O>@8E^x-kJf9SBHFjeLx zjVgNF$cV?f4WeiJ=bkR#@mOi_(eG7v{Q9Y;AKmil`?vj+ZMfg;!!}$v9)<|ZT<12~ z#^mGURFknyc;0<_QWHyjas2fSbiKsI8}QB&d|?Tm`*l-;ILdKGr_;_@u8_{>?siF} z1dlppFJ1DS$#kxuSmyk8sr>_~eZ5YH)nVI*&i*zVo>+QktXmi)RY1V_ZM+ zb%vjp>l^$<3D}e{dhn1h+-`V2hnzE%i$30e-Y@xhj4}3^^YJ`>Q09HS{3JpZVwiz2 z17QZj41^g7GZ1DV%)tL~2L9Z9<6rF)mz(U9D}K3CDf^REFIxMVed32r=X6$TyB{R_ zPql4dC1~EN*q)^CYpG9Zx&05R+4JwWXMby-cy8{%NV2`!{$u;p-lr%)ZDW}%UmCNT zw|+v$BmMzm>{BZ~&v4tkw~?BDH`l4@Yibvpw;pH1bAn`_)AqYF3_Gscvvc<2f4tp( ze14f7dBQ$_)!RS;wn>1d+QqTvt<*30bAONTWwol@de}a(H_BCe_IYo$eRA(g5-#ni z)oPcr^!3DwztdfJ<4f+CMYnxlXY}@9vHaq((*tl1_4{FV!lFs_8Vn zP-C9g4jdz&TiBp)m3||4GgUk3vz>TNtc~@rZFy(&wRbfgSGRB8^X6SQ>(`g;|33P} zU`KT>9MhxEi^PAJiR9YYr=q=URz^$IG8175GZ1DV%s`ldFau!*!VH8N2s037Ak4u3 zMh3865$hAN_E6vSP#0IDo3eg!jmTeTmG%_3txB;PM_f&S&IwIa(8 z%OXasO`PBxJ}PESt5O$4|2jjf`vk8QY!Tcj2*BFNs;qxpC5kp_2>qxEPm4WuLA)D9 zhTY$4roWUYO|rcze6mX|=VsSG3rEPe+H<*11FIS8tHV)pGS>EojC0j*#Xvl90FrY6g+CMEcL|U24f_;TBC18j5{ALJ=T+7bdRl<-YP3pygeu%Ft{3n;4kPM1 zh4Bymn^bAk{~u`kn2N`ZCC2MB!Y72sxO-XnW5Nrl7V2jXqA92OXY2wwqLIf zyip8&(5Rogv_17MFrMB{yi)7x>+}(3SleH(aGim7iEp&N{9fYYF!JHIHNQ!zgpZ`^ zSBQ_PP4)8y?bnH4A8l6nJp%ub*azc0s^i0I0iPs(U38PexQFKF%u~xMZWy_Y)w9IM zX#BJ!U}=!|i>#+{l8|wzpEZ%{lGtOs!RsZl-yy%J`WX@_Um>3R6SQ9ut#<_>G;SsS zrbUbq_7J~5O23kU>p~qGEqU!$kygsn(>BLTk1Ha|US({|8dVFc>K$*=8Rd2LWwOi` zo$-7zlg>L?uUINO>B_VkEly75UC+&0ZH+B>jepKbmr7}RC|K}HGit1qo^+jTWpZ+c zTzry4mfj-M-of+-+}=Cy?4?$6dAHQFFJ+BRO)2NS1MOY8!dTJqJ&R|ia7@bUR zoZ8Li(gm%*O?&zD`JCtFU7ty}wxFy~=lT!!4C<$o4s9and(TkMV5*mB+Ku5PZPD6& z2bHsbV0d58fHU0Re<(TPjP&fIhni#<*wm1~R)*KwzTjrlURvqYQ4|);UIr2tZ)|X~ z<)Sl@E@XMrLu#0;vblm&DZ5$4heY<7a#?)!whG6gjS~F4m5+#bP&C{Yv3Pezz1zG4 zL!Tttk5rzS^wJqZuVionwOoO=V@xTlQ1o1Dyil>GO2sL+wVi=)AV_ z7}Vwy>GFiKvNHv0!k||&nh&|9a;{idBsioix%o6ZD2qpsvZnIp%Nj3I#dD|Wn};D; z7IkJVcR~i6|?g9z}0e3dH9 zp?%ETV&WgPm&1X(T1EtOVqWLre`}pF75MuR=iYCckbvKkj`4MTJ$=w0{QmKM82aw_ fzr;6CR1$&UXxC_Yj@;OPJO5*$vO3@p5Y;~bTFV^r literal 0 HcmV?d00001 diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeSystem.cmake b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeSystem.cmake new file mode 100644 index 0000000..21d50c5 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.2.0-39-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.2.0-39-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.2.0-39-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.2.0-39-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..66be365 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,866 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#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_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(_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(__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__) +# 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(__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 "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/a.out b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..c786756abbd10a6ac500dd20933efa409d328d0c GIT binary patch literal 16088 zcmeHOeQX>@6`woj!=Xv+xG^?KX|^GSgwz|`aZ(eMW8 zZjag(l%SLnlSXPGD*Xebst77RDuINGhy*wk1zHMfB&3G_Oh2R`h1PskrbId3n|Z(U zc{vA(_75a>EbnjLZ{B+|`(}1;c6a7;@qxZ*B%+Y&)IP;htkEzrDR}&D$q>X;w^~ET z_o~~}3X+#;&XmUtP^n2*qKmO!_&P$iYvoK0yv@*5gGp#1Bik*NQrsX)KqcqFcFVay zWcgdL0e6l|kU-C>g8jMN82 zJUJ%(-!1VBV!OBj2JKQ}7sOt%19Balj=$z7{+s%airovAcB6uLm!TC9^?j7=q-#av z=74TKCiN}V4~-IkpoCZL$fQShckRd|+A`@}X|ipydw1LJF1whwJ9Wj}E{pzoOdUFW zLXn#p<|K?NddkS~$7SoKob{J)zUNZi`461`=J4bz`+nZ{vYKsP&pO<0wqYGk><>eP zWzKV*tYhNwdCJMyCcK>dZB`RY9N2$Tjj|r%tQx$#1fN@i=XPzb;YYdd=%nY4rE^{; zeSeZf3h<~~^u2=bX1#PyvCQ$^tqu+JAM9~E?M{1FCBL&vx&1?fZX#Joj;D)$vM@B* zlga0jL*7V+-Hm7SIdSJ2)tZVN!HE7dJryCD+l%p1+K^twQRnf;+z%gpjKUnHJDy3n zj&c21>kL0H*EjfCaabQS<=`PV26)RddaVJzAiNdezbO3H0RI)?+XMX5!e801bmFnY zeT6hz#q$_Lx?06!Y;)OM70=@qX}*fr_gfT%7)BtBKp25A0$~Kg2!s&`Bk(^FfxkA~ z{+4t4TD^02`R{iq<$PhrkCtC_PXD6*S>3+!t|y89OZm=k5HxI3tWVNUwA8D#-0`RW z>C2yRreAhWzdCnxDBdyC@tkvR@AKrK+*~Bhzm3@qn;z8uh`&gTb8h(sh7ZmA%~bWr zI8RltD$h1-I>n053X=Y#T7TD<7`EMTrstfCukUv*&eu7SOU~sR{(5q7r#PrD&yF>0 zqISWa+k0y7AQh|9_7l$Oy;06O)35ofowIvakZ^Tdxm>=Qpu;8YCUTN&7uo;uJ}P8K zC&+I4v)7#I((Ete*SVR_+2-fzN&Rg6n)A35d9mRc)$r4qNc=kS7nb0^Q;Rna&NV;1 zmZJR3vc`&+2Wx4QcfS^YHh%pibz7xRE4|1~4O19_Falu&!U%*B2qO?iAdEm5fiMDL z1i}dXKSzMSf88wgAMQJ{XEdLkNN19TVfre0aQ9Qy@Uxue)HfH(rW>Aa;{wd8XQAZt8}@u~=NA5qsO`Dl zE6`(-68rS&|HtI_+f2mQHa-;XS+gSg1l7z$n8FBz5eOp?Mj(tp7=bVXVFbbmgb@fM z@Xkg6>lLv+5o-YT!wXfl8r8}A#Wf=TPS!cTM`Wyn+$b_0VK#`2^^pAB!wKbozfsP! z{C!zWh&6&KerTh_>k>I#k@9yLQJoRIMX*({Sr8y*YDU%}u9SjysR-@pmJ_GNo;tzb z?IJ_(pJmftQrFZCkhkzfF%=mugwY5!Rhz zohjCpVjbzBo}N9{))OP8oL{o&L7$%R+d4{G?0BHF({AtDCiKl4#@(rD9+V?j*iZwN&DX(mljCMH>|EE8t_I zAM`V*{X=U3?&jCi=!o zsXpSHsNZ8UuJpSiD*T@KX%v0MiEoP1-867rbP&&Ri&;jqQw;WLzC~FvL*TsB@zH|cVdrTDzBiI~ zeQ#V5QS?h=WA><8Sgr5+S$CAz>laBgk$1;4`4KPUCj5M%=z66|#qSt1Nk5se+iPp^ z-hs616$;*zo6PxzDK%E`vPm~l%4Vm?q)Kv0(_f_8Gw6LX+0!HMG5ZtLHrMStc3?2> z#t-+pv}2(6p2G(Q`+JC{mz-|gky5Akm~syd965Mkz&+B}cRW7i4jni+5GRY^4u%-^ zE&Qjw3dw}$drF@Vd11k9Tp(fbE(SMI%)2Ri5z0Fp`j3!SBAs(f#biRIb7OfIZ&8hu z@p9uOZ#?P#`x{b45fdA{%caUjibbhdZ@_R}+EO9m(C#Y^gD+!mvcF>SHjhe3cq@nQ z71LCCPizE!?W>esoXYy%2%%pvm_ja{qwO9O%FgBeq&=Q1*%O8QM6%#dRZ%0QH0{+% zCxkk1u)mGRqE=6N#gwuWQ#q=_pkFX0Xopr4!KJc7GUKs{F_IRE$J_T6W zJRC_guRGIDrepx75@Zj_*qf1PERZMXUN${S&Ec_NQ&%XPx+Y5_Tdugb2RtvMTSDdS zesG^1=4Ggbb*t0+NZ`2>UG_RHwVzCiEAucm;Okt1tGZ6D<)E_+m zuaYgF6Ur;UGxB?b=LS;IDcFBsC$`$&5<8%XV!iM)2L8!_eY+F@p$7+$f!__-$D{!G zUZMD;VuaT8(xf+zs*s%V-_u>Ri= zU2Q)v_Q3N2d-Ol(mncJPSu6V?F%QN*%%DDG;45U?P-TyK_k0_Xl%Qv%1sVJsRKR0T z9v>Fw!?bRe(~R^VkAF_ELqC3tI97o@o+oE^u(nb$eOx%e9ym`$)%F#Gc4O1MV5)Pl z1AT)s%%OhF1G~jOs4u4jb5%zKbE011VZXh?m<;Tz5o4!XH6;#lALQ$ppA*m?-2YY) ohqhPS$M_>ECG3ATl4&dQj65B#Wq*c$SSYPVLyf4>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(_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(__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__) +# 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(__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 "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "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/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdCXX/a.out b/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..6f7591430982e78f058bf3d0fb3528e454cf27eb GIT binary patch literal 16096 zcmeHOeQX>@6`#9&IW);#(uSC%G)HNxq^&n+$4O04$T{{oYh)*B;*>xdR%_qdKJ`A# z-5#|Iv_UBlHw`pU0TM-uiUa~w2_zImr51;xqE;;=5)}a<6h10~l(yzmZi#ZdH}ihy z^KuRX`UevGEbp85dml6VW_E9Ocjkd~Ur#g=QJ@9tJ&L7N+#o4YoVr5_#8Rq5EvMt# z)%9vI$qO}R^eMwgYv_D*E^iWi0de+g=0XF0y@9C)Lues$_M4AJxj{tWO3s7*7O_I) zApf;g01kbvz63iHCG@ez9~M9GdOvQ;bc?Z{-aePxl9#>0;m4vr1{;CGLF2WKGaAzL8Fb~e{y0JkVg(Ov<+NFC)|Og%bGveS2l}0iSMo-(W#20e z^mpZo1#iF|%yGDpe6b+m9AnzhkTV$3f2OA*By)Q)UMg#|OF8R2{uukt$Xrt5GXx1gCiT;Fe@2zi)+Fau!*!VH8N2s037Ak4u3LXyd|{!{hluMmr^S8PwxQ(Ed)T5f%% zckV8+##h#qD&%CikCf_;!f4G;F z9OwY~O@8c>Jz2T%qx5BNrhR<%^Yo;CJblUjq8&LKJFQ|*Pesy~34d}P{2PsM6X3+^ zCst6FPcMwuqCD8hnxgxS@Z;&rhpF3YeOl{9ZfZzj2Eq)483;2FW+2Q!n1L_@VFtns zgc%4k@c*0v{{D3}>fPP5XWLLQKbFmTr9<>p^6*^iIeO>AUa6cd77isfwYFNOkZeaG zd01(Wv7GA<7fbm=ef)J*K({nBdPvIjVX%;KOBwp$H|$n&{-M@8MB|P7UV&>V*K~V! z>sCe9EqM0^Y94=&8hEW*y_mm8MhY9+>Ua1yY z{+28z#2Ud-erO}&b%{*pMgJBfs$;^h5#B6(wQw+TQ&X}Iafv9BQW4tGAtz3YJvAZT z4I;zt?^V-YGS|=*kW|f+757Vo zG!ILMCdA-c;*IRN-=b=T8k2D=<|-lhsQ|uNa9jtl@1;USHLH%4LAZTPyc#<~Pxlzt z8l=NV>7VPxbp`ww6(Z_dh3f?P*Qn5_{ZDKAxJo6AWt(9Xp|Sm0!Xvbj``A0gu#Po~ z|0``zS4&{L{9gO5tgXXGm^ZZjTWi-5@Hi!86@)t8LU^K1M)9D=*C>?&Vt6m%akZwF zXK42lzA741xZeQ3OYDPjhID*b&GHiAE2C=^#x*n#FithAghAvoRiD=Q8WmiB{g~jv z_0&%h9;b1VN+Gi0cN4yf#zRWRn|_Bxsvk(4xY*-TIV+NmP6=C=@j;~c~YorJH7(p@%iz3d`M1eE>C@US(cW>@Pwe%=}4_4;M9%oLrGTyfCNIT^oLDm!jvT=6@`oacKP zE7{nB_YPzow^VW`9IxP)Ce(1r&3jI!lFv_&OP%D9r9a2CtKYrH>pFO_OWtJmW~`yH zG39)queB{(7%t+?CB^C4*V&(T(!0AI+DFj+{@tDZyCoY8 z0fVn-ud?f6?&gnLN_c~Z?km$&e*deKRi4QE?jUi$WcVmb*#hnR7*kfE=zG>kp<<1d ziep~MpQwWdD_PpKlg$X!xwE&02cFIP$@rTgX*^J-;BG!UM9tyuw|uh?G3Xgg@q$;FzzY{jdYSpZs~w3K{cO@T628Y(Ls` zf(o2d_+uUoj(Ifd51#)Q$d}Iv`r7Y`{J!A%flM?7`|rzy*83;K4_rj?p8eSZ{&>JY zDGG4dApm6XZwCBRq5%JFpu^yYc;62AV_pM}=PTF;&;PsPkNm5ISPFkmL@Y zn+X3G!~p#Enx!cO>wl5pdjA>m2Y)o+kNyYzGb+%U*4n;E%!jcbGiVPP{I}#AtMkYF zd!~gzBG?&eRtEkWDR}J3W5n$Im)6fRO-cXp_-BG2`thrTu?hU~TsgIgt(8jYk$8-y_^o*)dB(-6Z0Al|J!PaDZsy;W9-zM yj!Hn>2l+bYXBD&u_rIltq3!klDgKyBbY~zq>NQ%Pb2j!r$v-Sa%K{DoQT+qb`dVZF literal 0 HcmV?d00001 diff --git a/cmake-build-debug-event-trace/CMakeFiles/CMakeConfigureLog.yaml b/cmake-build-debug-event-trace/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..7abf7a4 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,1257 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineSystem.cmake:204 (message)" + - "CMakeLists.txt:19 (project)" + message: | + The system is: Linux - 6.2.0-37-generic - x86_64 + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/3.26.4/CompilerIdC/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-cM1XJx" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-cM1XJx" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-cM1XJx + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_5fe53/fast && /usr/bin/gmake -f CMakeFiles/cmTC_5fe53.dir/build.make CMakeFiles/cmTC_5fe53.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-cM1XJx' + Building CXX object CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5fe53.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_5fe53.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccDpo8hF.s + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/include/c++/11 + /usr/include/x86_64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5fe53.dir/' + as -v --64 -o CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccDpo8hF.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_5fe53 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5fe53.dir/link.txt --verbose=1 + /usr/bin/c++ -v CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5fe53 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5fe53' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_5fe53.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZTajsj.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5fe53 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5fe53' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_5fe53.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-cM1XJx' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/x86_64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/11] ==> [/usr/include/x86_64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-cM1XJx] + ignore line: [] + ignore line: [Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_5fe53/fast && /usr/bin/gmake -f CMakeFiles/cmTC_5fe53.dir/build.make CMakeFiles/cmTC_5fe53.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-cM1XJx'] + ignore line: [Building CXX object CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5fe53.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_5fe53.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccDpo8hF.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5fe53.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccDpo8hF.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_5fe53] + ignore line: [/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5fe53.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5fe53 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5fe53' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_5fe53.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZTajsj.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5fe53 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_5fe53.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccZTajsj.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_5fe53] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_5fe53.dir/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/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8Ve1gQ" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8Ve1gQ" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8Ve1gQ + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_084af/fast && /usr/bin/gmake -f CMakeFiles/cmTC_084af.dir/build.make CMakeFiles/cmTC_084af.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8Ve1gQ' + Building C object CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_084af.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_084af.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc3lgOqE.s + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: 50eaa2331df977b8016186198deb2d18 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_084af.dir/' + as -v --64 -o CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o /tmp/cc3lgOqE.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_084af + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_084af.dir/link.txt --verbose=1 + /usr/bin/cc -v CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o -o cmTC_084af + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_084af' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_084af.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccMKqCVs.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_084af /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_084af' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_084af.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8Ve1gQ' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8Ve1gQ] + ignore line: [] + ignore line: [Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_084af/fast && /usr/bin/gmake -f CMakeFiles/cmTC_084af.dir/build.make CMakeFiles/cmTC_084af.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8Ve1gQ'] + ignore line: [Building C object CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_084af.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_084af.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc3lgOqE.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 50eaa2331df977b8016186198deb2d18] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_084af.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o /tmp/cc3lgOqE.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_084af] + ignore line: [/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_084af.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o -o cmTC_084af ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_084af' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_084af.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccMKqCVs.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_084af /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccMKqCVs.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_084af] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_084af.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCXXSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "cmake_modules/DetectCPUFeatures.cmake:45 (check_cxx_source_compiles)" + - "CMakeLists.txt:25 (include)" + checks: + - "Performing Test SUPPORT_SSE42" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-z4TfoR" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-z4TfoR" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_SSE42" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-z4TfoR + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_3fc64/fast && /usr/bin/gmake -f CMakeFiles/cmTC_3fc64.dir/build.make CMakeFiles/cmTC_3fc64.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-z4TfoR' + Building CXX object CMakeFiles/cmTC_3fc64.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_SSE42 -march=native -msse4.2 -fdiagnostics-color=always -o CMakeFiles/cmTC_3fc64.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-z4TfoR/src.cxx + Linking CXX executable cmTC_3fc64 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3fc64.dir/link.txt --verbose=1 + /usr/bin/c++ -march=native -msse4.2 CMakeFiles/cmTC_3fc64.dir/src.cxx.o -o cmTC_3fc64 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-z4TfoR' + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCXXSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "cmake_modules/DetectCPUFeatures.cmake:47 (check_cxx_source_compiles)" + - "CMakeLists.txt:25 (include)" + checks: + - "Performing Test SUPPORT_AVX" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Dm40Jl" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Dm40Jl" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_AVX" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Dm40Jl + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_d17c6/fast && /usr/bin/gmake -f CMakeFiles/cmTC_d17c6.dir/build.make CMakeFiles/cmTC_d17c6.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Dm40Jl' + Building CXX object CMakeFiles/cmTC_d17c6.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_AVX -march=native -mavx -fdiagnostics-color=always -o CMakeFiles/cmTC_d17c6.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Dm40Jl/src.cxx + Linking CXX executable cmTC_d17c6 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d17c6.dir/link.txt --verbose=1 + /usr/bin/c++ -march=native -mavx CMakeFiles/cmTC_d17c6.dir/src.cxx.o -o cmTC_d17c6 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Dm40Jl' + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCXXSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "cmake_modules/DetectCPUFeatures.cmake:49 (check_cxx_source_compiles)" + - "CMakeLists.txt:25 (include)" + checks: + - "Performing Test SUPPORT_AVX2" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8uusEW" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8uusEW" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_AVX2" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8uusEW + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_4d332/fast && /usr/bin/gmake -f CMakeFiles/cmTC_4d332.dir/build.make CMakeFiles/cmTC_4d332.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8uusEW' + Building CXX object CMakeFiles/cmTC_4d332.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_AVX2 -march=native -mavx2 -fdiagnostics-color=always -o CMakeFiles/cmTC_4d332.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8uusEW/src.cxx + Linking CXX executable cmTC_4d332 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4d332.dir/link.txt --verbose=1 + /usr/bin/c++ -march=native -mavx2 CMakeFiles/cmTC_4d332.dir/src.cxx.o -o cmTC_4d332 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-8uusEW' + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "cmake_modules/googletest.cmake:7 (find_package)" + - "CMakeLists.txt:205 (include)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-tuJQv9" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-tuJQv9" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-tuJQv9 + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_bc1df/fast && /usr/bin/gmake -f CMakeFiles/cmTC_bc1df.dir/build.make CMakeFiles/cmTC_bc1df.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-tuJQv9' + Building C object CMakeFiles/cmTC_bc1df.dir/src.c.o + /usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -fdiagnostics-color=always -o CMakeFiles/cmTC_bc1df.dir/src.c.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-tuJQv9/src.c + Linking C executable cmTC_bc1df + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bc1df.dir/link.txt --verbose=1 + /usr/bin/cc CMakeFiles/cmTC_bc1df.dir/src.c.o -o cmTC_bc1df + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-tuJQv9' + + exitCode: 0 +... + +--- +events: + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake:211 (message)" + - "CMakeLists.txt:19 (project)" + message: | + The system is: Linux - 6.2.0-39-generic - x86_64 + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/3.27.8/CompilerIdC/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Rrh3a1" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Rrh3a1" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Rrh3a1' + + Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_82ce2/fast + /usr/bin/gmake -f CMakeFiles/cmTC_82ce2.dir/build.make CMakeFiles/cmTC_82ce2.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Rrh3a1' + Building CXX object CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_82ce2.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_82ce2.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccfWc7HP.s + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/include/c++/11 + /usr/include/x86_64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_82ce2.dir/' + as -v --64 -o CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccfWc7HP.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_82ce2 + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82ce2.dir/link.txt --verbose=1 + /usr/bin/c++ -v CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_82ce2 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_82ce2' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_82ce2.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCWkiOM.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_82ce2 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_82ce2' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_82ce2.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Rrh3a1' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/x86_64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/11] ==> [/usr/include/x86_64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Rrh3a1'] + ignore line: [] + ignore line: [Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_82ce2/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_82ce2.dir/build.make CMakeFiles/cmTC_82ce2.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-Rrh3a1'] + ignore line: [Building CXX object CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_82ce2.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_82ce2.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccfWc7HP.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_82ce2.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccfWc7HP.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_82ce2] + ignore line: [/snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82ce2.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_82ce2 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_82ce2' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_82ce2.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCWkiOM.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_82ce2 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_82ce2.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccCWkiOM.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_82ce2] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_82ce2.dir/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/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-7UhzWk" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-7UhzWk" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-7UhzWk' + + Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_444b0/fast + /usr/bin/gmake -f CMakeFiles/cmTC_444b0.dir/build.make CMakeFiles/cmTC_444b0.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-7UhzWk' + Building C object CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_444b0.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_444b0.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccVc9WYI.s + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: 50eaa2331df977b8016186198deb2d18 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_444b0.dir/' + as -v --64 -o CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o /tmp/ccVc9WYI.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_444b0 + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_444b0.dir/link.txt --verbose=1 + /usr/bin/cc -v CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o -o cmTC_444b0 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_444b0' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_444b0.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6WXzih.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_444b0 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_444b0' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_444b0.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-7UhzWk' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-7UhzWk'] + ignore line: [] + ignore line: [Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_444b0/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_444b0.dir/build.make CMakeFiles/cmTC_444b0.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-7UhzWk'] + ignore line: [Building C object CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_444b0.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_444b0.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccVc9WYI.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 50eaa2331df977b8016186198deb2d18] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_444b0.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o /tmp/ccVc9WYI.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_444b0] + ignore line: [/snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_444b0.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o -o cmTC_444b0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_444b0' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_444b0.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6WXzih.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_444b0 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc6WXzih.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_444b0] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_444b0.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +... + +--- +events: + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:34 (cmake_check_compiler_flag)" + - "cmake_modules/environment.cmake:3 (check_cxx_compiler_flag)" + - "CMakeLists.txt:58 (include)" + checks: + - "Performing Test SUPPORT_NEON" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-LquCnx" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-LquCnx" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_NEON" + cached: true + stdout: | + Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-LquCnx' + + Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_00142/fast + /usr/bin/gmake -f CMakeFiles/cmTC_00142.dir/build.make CMakeFiles/cmTC_00142.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-LquCnx' + Building CXX object CMakeFiles/cmTC_00142.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_NEON -fdiagnostics-color=always -mfpu=neon -o CMakeFiles/cmTC_00142.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-LquCnx/src.cxx + \x1b[01m\x1b[Kc++:\x1b[m\x1b[K \x1b[01;31m\x1b[Kerror: \x1b[m\x1b[Kunrecognized command-line option '\x1b[01m\x1b[K-mfpu=neon\x1b[m\x1b[K' + gmake[1]: *** [CMakeFiles/cmTC_00142.dir/build.make:78: CMakeFiles/cmTC_00142.dir/src.cxx.o] Error 1 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/CMakeScratch/TryCompile-LquCnx' + gmake: *** [Makefile:127: cmTC_00142/fast] Error 2 + + exitCode: 2 +... diff --git a/cmake-build-debug-event-trace/CMakeFiles/CMakeDirectoryInformation.cmake b/cmake-build-debug-event-trace/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..bdc95c6 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/kosakseb/Developer/FastPFor") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/cmake-build-debug-event-trace/CMakeFiles/CMakeRuleHashes.txt b/cmake-build-debug-event-trace/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..76d5e17 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,29 @@ +# Hashes of file build rules. +1e8d0c9ee97b3d430bd9f90c35a5b04f CMakeFiles/check +c2c90554fcb4609c6b09632972a103cf CMakeFiles/gmock_src +d60d0eb7118c71f16c635b7d49287a33 CMakeFiles/gmock_src-complete +c2c90554fcb4609c6b09632972a103cf CMakeFiles/googletest +2dd32d644419c563bcc501d2c956f7fa CMakeFiles/googletest-complete +c2c90554fcb4609c6b09632972a103cf CMakeFiles/gtest_src +5b058397538b6bbcee9ac9fce7b57338 CMakeFiles/gtest_src-complete +f2c75048fbad8f47e05305174f91d0f6 vendor/gtm/src/gmock_src-stamp/gmock_src-build +dc30a675917bcdf11ae437c80d64de66 vendor/gtm/src/gmock_src-stamp/gmock_src-configure +8202ddf351961598f9fb6dfa40541bb9 vendor/gtm/src/gmock_src-stamp/gmock_src-download +3c5895d97df9ee969a1885423c343c20 vendor/gtm/src/gmock_src-stamp/gmock_src-install +21fa17a77cdc5b325b93a4abe29470c0 vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir +ecd1060ef0924b51c356e99216f92df5 vendor/gtm/src/gmock_src-stamp/gmock_src-patch +5fe4936e6fc2f247896e89bf5636f95e vendor/gtm/src/gmock_src-stamp/gmock_src-update +0f24b8c4c9a21e2002b4f38d06829da2 vendor/gtm/src/googletest-stamp/googletest-build +186b764115aacad0d7e374de9ab304f1 vendor/gtm/src/googletest-stamp/googletest-configure +494a0e2512b0af15522244914a10f075 vendor/gtm/src/googletest-stamp/googletest-download +82bfe8815c6947409ceea69bd5dc73cd vendor/gtm/src/googletest-stamp/googletest-install +54f5f8d19e9dfd2cbb568ccd29fc9e8a vendor/gtm/src/googletest-stamp/googletest-mkdir +a04387ba27d57ff1963ec029bf2a404e vendor/gtm/src/googletest-stamp/googletest-patch +645b6394000bda5ee2ed68a8fb3c1877 vendor/gtm/src/googletest-stamp/googletest-update +eb08fb0627b8dcd2327dee19975fa8f4 vendor/gtm/src/gtest_src-stamp/gtest_src-build +c3991e60d3c4de09a773a2ed2e324092 vendor/gtm/src/gtest_src-stamp/gtest_src-configure +cc9b7972ef38950edfac6151e9919bb3 vendor/gtm/src/gtest_src-stamp/gtest_src-download +99c9e03d67b3bcefa85727c86bc01e2a vendor/gtm/src/gtest_src-stamp/gtest_src-install +b7c65a7c1cc04619cb6b9bd046789248 vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir +fea5cd3c0930e35d610854cbb9ff9d4e vendor/gtm/src/gtest_src-stamp/gtest_src-patch +1d471f0eb7d166671b7a9553448f1183 vendor/gtm/src/gtest_src-stamp/gtest_src-update diff --git a/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake b/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake new file mode 100644 index 0000000..0dd2c88 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "FastPFOR::FastPFOR" for configuration "Debug" +set_property(TARGET FastPFOR::FastPFOR APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(FastPFOR::FastPFOR PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C;CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libFastPFOR.a" + ) + +list(APPEND _cmake_import_check_targets FastPFOR::FastPFOR ) +list(APPEND _cmake_import_check_files_for_FastPFOR::FastPFOR "${_IMPORT_PREFIX}/lib/libFastPFOR.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake b/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake new file mode 100644 index 0000000..0c039a0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake @@ -0,0 +1,102 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.3") + message(FATAL_ERROR "CMake >= 2.8.3 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.3...3.25) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS FastPFOR::FastPFOR) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target FastPFOR::FastPFOR +add_library(FastPFOR::FastPFOR STATIC IMPORTED) + +set_target_properties(FastPFOR::FastPFOR PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/FastPFORTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/DependInfo.cmake new file mode 100644 index 0000000..e68cbf5 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/DependInfo.cmake @@ -0,0 +1,27 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/streamvbyte.c" "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" "gcc" "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d" + "/home/kosakseb/Developer/FastPFor/src/varintdecode.c" "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" "gcc" "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d" + "/home/kosakseb/Developer/FastPFor/src/bitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp" "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp" "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/codecfactory.cpp" "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/build.make new file mode 100644 index 0000000..5a74ec6 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/build.make @@ -0,0 +1,239 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/FastPFOR.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/FastPFOR.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/FastPFOR.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/FastPFOR.dir/flags.make + +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp > CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o: /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o -MF CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o -c /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp + +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp > CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.i + +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp -o CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.s + +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o: /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o -MF CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o -c /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp + +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp > CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.i + +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp -o CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.s + +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp > CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp > CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o: /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o -MF CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o -c /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp + +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp > CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.i + +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp -o CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.s + +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp > CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/varintdecode.c.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/varintdecode.c.o: /home/kosakseb/Developer/FastPFor/src/varintdecode.c +CMakeFiles/FastPFOR.dir/src/varintdecode.c.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/varintdecode.c.o -MF CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d -o CMakeFiles/FastPFOR.dir/src/varintdecode.c.o -c /home/kosakseb/Developer/FastPFor/src/varintdecode.c + +CMakeFiles/FastPFOR.dir/src/varintdecode.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FastPFOR.dir/src/varintdecode.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/varintdecode.c > CMakeFiles/FastPFOR.dir/src/varintdecode.c.i + +CMakeFiles/FastPFOR.dir/src/varintdecode.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FastPFOR.dir/src/varintdecode.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/varintdecode.c -o CMakeFiles/FastPFOR.dir/src/varintdecode.c.s + +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o: /home/kosakseb/Developer/FastPFor/src/streamvbyte.c +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o -MF CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d -o CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o -c /home/kosakseb/Developer/FastPFor/src/streamvbyte.c + +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FastPFOR.dir/src/streamvbyte.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/streamvbyte.c > CMakeFiles/FastPFOR.dir/src/streamvbyte.c.i + +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FastPFOR.dir/src/streamvbyte.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/streamvbyte.c -o CMakeFiles/FastPFOR.dir/src/streamvbyte.c.s + +# Object files for target FastPFOR +FastPFOR_OBJECTS = \ +"CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" \ +"CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" + +# External object files for target FastPFOR +FastPFOR_EXTERNAL_OBJECTS = + +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/varintdecode.c.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/build.make +libFastPFOR.a: CMakeFiles/FastPFOR.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX static library libFastPFOR.a" + $(CMAKE_COMMAND) -P CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FastPFOR.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/FastPFOR.dir/build: libFastPFOR.a +.PHONY : CMakeFiles/FastPFOR.dir/build + +CMakeFiles/FastPFOR.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/FastPFOR.dir/cmake_clean.cmake +.PHONY : CMakeFiles/FastPFOR.dir/clean + +CMakeFiles/FastPFOR.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/FastPFOR.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean.cmake new file mode 100644 index 0000000..e0edc4b --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean.cmake @@ -0,0 +1,27 @@ +file(REMOVE_RECURSE + "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" + "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" + "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" + "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" + "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d" + "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" + "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d" + "libFastPFOR.a" + "libFastPFOR.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C CXX) + include(CMakeFiles/FastPFOR.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..285199e --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libFastPFOR.a" +) diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.make new file mode 100644 index 0000000..dc3a5d2 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FastPFOR. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.ts new file mode 100644 index 0000000..062c992 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FastPFOR. diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/depend.make new file mode 100644 index 0000000..936d1f7 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FastPFOR. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/flags.make new file mode 100644 index 0000000..d43d87b --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/flags.make @@ -0,0 +1,17 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile C with /usr/bin/cc +# compile CXX with /usr/bin/c++ +C_DEFINES = + +C_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +C_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c99 -march=native -fPIC -fdiagnostics-color=always + +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fPIC -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/link.txt new file mode 100644 index 0000000..1215a01 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libFastPFOR.a CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/varintdecode.c.o CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o +/usr/bin/ranlib libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/progress.make new file mode 100644 index 0000000..6c587e2 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir/progress.make @@ -0,0 +1,11 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake new file mode 100644 index 0000000..5103e01 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/build.make new file mode 100644 index 0000000..bb9bcd8 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/build.make @@ -0,0 +1,160 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/FastPFOR_unittest.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/FastPFOR_unittest.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/FastPFOR_unittest.dir/flags.make + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.s + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.s + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.s + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.s + +# Object files for target FastPFOR_unittest +FastPFOR_unittest_OBJECTS = \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" + +# External object files for target FastPFOR_unittest +FastPFOR_unittest_EXTERNAL_OBJECTS = + +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/build.make +FastPFOR_unittest: vendor/gtm/gtest/lib/libgtest.a +FastPFOR_unittest: libFastPFOR.a +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX executable FastPFOR_unittest" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FastPFOR_unittest.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/FastPFOR_unittest.dir/build: FastPFOR_unittest +.PHONY : CMakeFiles/FastPFOR_unittest.dir/build + +CMakeFiles/FastPFOR_unittest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/FastPFOR_unittest.dir/clean + +CMakeFiles/FastPFOR_unittest.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/FastPFOR_unittest.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake new file mode 100644 index 0000000..9896d99 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d" + "FastPFOR_unittest" + "FastPFOR_unittest.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/FastPFOR_unittest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make new file mode 100644 index 0000000..e1b9229 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FastPFOR_unittest. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts new file mode 100644 index 0000000..3a971b8 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FastPFOR_unittest. diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/depend.make new file mode 100644 index 0000000..65f7109 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FastPFOR_unittest. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/flags.make new file mode 100644 index 0000000..08e2ec6 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers -isystem /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest/include + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/link.txt new file mode 100644 index 0000000..5576a7f --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o -o FastPFOR_unittest vendor/gtm/gtest/lib/libgtest.a libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/progress.make new file mode 100644 index 0000000..bdc2181 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = 11 +CMAKE_PROGRESS_2 = 12 +CMAKE_PROGRESS_3 = 13 +CMAKE_PROGRESS_4 = 14 +CMAKE_PROGRESS_5 = 15 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/Makefile.cmake b/cmake-build-debug-event-trace/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..91d3e2c --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/Makefile.cmake @@ -0,0 +1,118 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/kosakseb/Developer/FastPFor/CMakeLists.txt" + "/home/kosakseb/Developer/FastPFor/FastPFORConfig.cmake.in" + "CMakeFiles/3.27.8/CMakeCCompiler.cmake" + "CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" + "CMakeFiles/3.27.8/CMakeSystem.cmake" + "vendor/gtm/tmp/gmock_src-mkdirs.cmake" + "vendor/gtm/tmp/googletest-mkdirs.cmake" + "vendor/gtm/tmp/gtest_src-mkdirs.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/AppendCompilerFlags.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/environment.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake" + "/home/kosakseb/Developer/FastPFor/fastpfor.pc.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckIncludeFile.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckLibraryExists.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/gitclone.cmake.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-C.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-CXX.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-Initialize.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "vendor/gtm/tmp/googletest-mkdirs.cmake" + "vendor/gtm/tmp/googletest-gitclone.cmake" + "vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt" + "vendor/gtm/src/googletest-stamp/googletest-update-info.txt" + "vendor/gtm/src/googletest-stamp/googletest-patch-info.txt" + "vendor/gtm/tmp/googletest-cfgcmd.txt" + "vendor/gtm/tmp/gtest_src-mkdirs.cmake" + "vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt" + "vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt" + "vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt" + "vendor/gtm/tmp/gtest_src-cfgcmd.txt" + "vendor/gtm/tmp/gmock_src-mkdirs.cmake" + "vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt" + "vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt" + "vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt" + "vendor/gtm/tmp/gmock_src-cfgcmd.txt" + "FastPFORConfig.cmake" + "FastPFORConfigVersion.cmake" + "fastpfor.pc" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/FastPFOR.dir/DependInfo.cmake" + "CMakeFiles/gapstats.dir/DependInfo.cmake" + "CMakeFiles/partitionbylength.dir/DependInfo.cmake" + "CMakeFiles/csv2maropu.dir/DependInfo.cmake" + "CMakeFiles/entropy.dir/DependInfo.cmake" + "CMakeFiles/benchbitpacking.dir/DependInfo.cmake" + "CMakeFiles/codecssnappy.dir/DependInfo.cmake" + "CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake" + "CMakeFiles/googletest.dir/DependInfo.cmake" + "CMakeFiles/gtest_src.dir/DependInfo.cmake" + "CMakeFiles/gmock_src.dir/DependInfo.cmake" + "CMakeFiles/codecs.dir/DependInfo.cmake" + "CMakeFiles/example.dir/DependInfo.cmake" + "CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake" + "CMakeFiles/unit.dir/DependInfo.cmake" + "CMakeFiles/check.dir/DependInfo.cmake" + "CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake" + ) diff --git a/cmake-build-debug-event-trace/CMakeFiles/Makefile2 b/cmake-build-debug-event-trace/CMakeFiles/Makefile2 new file mode 100644 index 0000000..010c242 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/Makefile2 @@ -0,0 +1,560 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/FastPFOR.dir/all +all: CMakeFiles/gapstats.dir/all +all: CMakeFiles/partitionbylength.dir/all +all: CMakeFiles/csv2maropu.dir/all +all: CMakeFiles/entropy.dir/all +all: CMakeFiles/benchbitpacking.dir/all +all: CMakeFiles/codecssnappy.dir/all +all: CMakeFiles/inmemorybenchmarksnappy.dir/all +all: CMakeFiles/googletest.dir/all +all: CMakeFiles/gtest_src.dir/all +all: CMakeFiles/gmock_src.dir/all +all: CMakeFiles/codecs.dir/all +all: CMakeFiles/example.dir/all +all: CMakeFiles/inmemorybenchmark.dir/all +all: CMakeFiles/unit.dir/all +all: CMakeFiles/FastPFOR_unittest.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/FastPFOR.dir/clean +clean: CMakeFiles/gapstats.dir/clean +clean: CMakeFiles/partitionbylength.dir/clean +clean: CMakeFiles/csv2maropu.dir/clean +clean: CMakeFiles/entropy.dir/clean +clean: CMakeFiles/benchbitpacking.dir/clean +clean: CMakeFiles/codecssnappy.dir/clean +clean: CMakeFiles/inmemorybenchmarksnappy.dir/clean +clean: CMakeFiles/googletest.dir/clean +clean: CMakeFiles/gtest_src.dir/clean +clean: CMakeFiles/gmock_src.dir/clean +clean: CMakeFiles/codecs.dir/clean +clean: CMakeFiles/example.dir/clean +clean: CMakeFiles/inmemorybenchmark.dir/clean +clean: CMakeFiles/unit.dir/clean +clean: CMakeFiles/check.dir/clean +clean: CMakeFiles/FastPFOR_unittest.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/FastPFOR.dir + +# All Build rule for target. +CMakeFiles/FastPFOR.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target FastPFOR" +.PHONY : CMakeFiles/FastPFOR.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/FastPFOR.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 10 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/FastPFOR.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/FastPFOR.dir/rule + +# Convenience name for target. +FastPFOR: CMakeFiles/FastPFOR.dir/rule +.PHONY : FastPFOR + +# clean rule for target. +CMakeFiles/FastPFOR.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/clean +.PHONY : CMakeFiles/FastPFOR.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gapstats.dir + +# All Build rule for target. +CMakeFiles/gapstats.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=28,29 "Built target gapstats" +.PHONY : CMakeFiles/gapstats.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gapstats.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gapstats.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/gapstats.dir/rule + +# Convenience name for target. +gapstats: CMakeFiles/gapstats.dir/rule +.PHONY : gapstats + +# clean rule for target. +CMakeFiles/gapstats.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/clean +.PHONY : CMakeFiles/gapstats.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/partitionbylength.dir + +# All Build rule for target. +CMakeFiles/partitionbylength.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=58,59 "Built target partitionbylength" +.PHONY : CMakeFiles/partitionbylength.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/partitionbylength.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/partitionbylength.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/partitionbylength.dir/rule + +# Convenience name for target. +partitionbylength: CMakeFiles/partitionbylength.dir/rule +.PHONY : partitionbylength + +# clean rule for target. +CMakeFiles/partitionbylength.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/clean +.PHONY : CMakeFiles/partitionbylength.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/csv2maropu.dir + +# All Build rule for target. +CMakeFiles/csv2maropu.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=22,23 "Built target csv2maropu" +.PHONY : CMakeFiles/csv2maropu.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/csv2maropu.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/csv2maropu.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/csv2maropu.dir/rule + +# Convenience name for target. +csv2maropu: CMakeFiles/csv2maropu.dir/rule +.PHONY : csv2maropu + +# clean rule for target. +CMakeFiles/csv2maropu.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/clean +.PHONY : CMakeFiles/csv2maropu.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/entropy.dir + +# All Build rule for target. +CMakeFiles/entropy.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=24,25 "Built target entropy" +.PHONY : CMakeFiles/entropy.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/entropy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/entropy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/entropy.dir/rule + +# Convenience name for target. +entropy: CMakeFiles/entropy.dir/rule +.PHONY : entropy + +# clean rule for target. +CMakeFiles/entropy.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/clean +.PHONY : CMakeFiles/entropy.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/benchbitpacking.dir + +# All Build rule for target. +CMakeFiles/benchbitpacking.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=16,17 "Built target benchbitpacking" +.PHONY : CMakeFiles/benchbitpacking.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/benchbitpacking.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/benchbitpacking.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/benchbitpacking.dir/rule + +# Convenience name for target. +benchbitpacking: CMakeFiles/benchbitpacking.dir/rule +.PHONY : benchbitpacking + +# clean rule for target. +CMakeFiles/benchbitpacking.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/clean +.PHONY : CMakeFiles/benchbitpacking.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/codecssnappy.dir + +# All Build rule for target. +CMakeFiles/codecssnappy.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=20,21 "Built target codecssnappy" +.PHONY : CMakeFiles/codecssnappy.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/codecssnappy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/codecssnappy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/codecssnappy.dir/rule + +# Convenience name for target. +codecssnappy: CMakeFiles/codecssnappy.dir/rule +.PHONY : codecssnappy + +# clean rule for target. +CMakeFiles/codecssnappy.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/clean +.PHONY : CMakeFiles/codecssnappy.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/inmemorybenchmarksnappy.dir + +# All Build rule for target. +CMakeFiles/inmemorybenchmarksnappy.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=56,57 "Built target inmemorybenchmarksnappy" +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/inmemorybenchmarksnappy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/inmemorybenchmarksnappy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/rule + +# Convenience name for target. +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/rule +.PHONY : inmemorybenchmarksnappy + +# clean rule for target. +CMakeFiles/inmemorybenchmarksnappy.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/clean +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/googletest.dir + +# All Build rule for target. +CMakeFiles/googletest.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=38,39,40,41,42,43,44,45 "Built target googletest" +.PHONY : CMakeFiles/googletest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/googletest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 8 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/googletest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/googletest.dir/rule + +# Convenience name for target. +googletest: CMakeFiles/googletest.dir/rule +.PHONY : googletest + +# clean rule for target. +CMakeFiles/googletest.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/clean +.PHONY : CMakeFiles/googletest.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gtest_src.dir + +# All Build rule for target. +CMakeFiles/gtest_src.dir/all: CMakeFiles/googletest.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_src.dir/build.make CMakeFiles/gtest_src.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_src.dir/build.make CMakeFiles/gtest_src.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=46,47,48,49,50,51,52,53 "Built target gtest_src" +.PHONY : CMakeFiles/gtest_src.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gtest_src.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 16 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gtest_src.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/gtest_src.dir/rule + +# Convenience name for target. +gtest_src: CMakeFiles/gtest_src.dir/rule +.PHONY : gtest_src + +# clean rule for target. +CMakeFiles/gtest_src.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_src.dir/build.make CMakeFiles/gtest_src.dir/clean +.PHONY : CMakeFiles/gtest_src.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gmock_src.dir + +# All Build rule for target. +CMakeFiles/gmock_src.dir/all: CMakeFiles/googletest.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/gmock_src.dir/build.make CMakeFiles/gmock_src.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gmock_src.dir/build.make CMakeFiles/gmock_src.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=30,31,32,33,34,35,36,37 "Built target gmock_src" +.PHONY : CMakeFiles/gmock_src.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gmock_src.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 16 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gmock_src.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/gmock_src.dir/rule + +# Convenience name for target. +gmock_src: CMakeFiles/gmock_src.dir/rule +.PHONY : gmock_src + +# clean rule for target. +CMakeFiles/gmock_src.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gmock_src.dir/build.make CMakeFiles/gmock_src.dir/clean +.PHONY : CMakeFiles/gmock_src.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/codecs.dir + +# All Build rule for target. +CMakeFiles/codecs.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=18,19 "Built target codecs" +.PHONY : CMakeFiles/codecs.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/codecs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/codecs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/codecs.dir/rule + +# Convenience name for target. +codecs: CMakeFiles/codecs.dir/rule +.PHONY : codecs + +# clean rule for target. +CMakeFiles/codecs.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/clean +.PHONY : CMakeFiles/codecs.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/example.dir + +# All Build rule for target. +CMakeFiles/example.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=26,27 "Built target example" +.PHONY : CMakeFiles/example.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/example.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/example.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/example.dir/rule + +# Convenience name for target. +example: CMakeFiles/example.dir/rule +.PHONY : example + +# clean rule for target. +CMakeFiles/example.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/clean +.PHONY : CMakeFiles/example.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/inmemorybenchmark.dir + +# All Build rule for target. +CMakeFiles/inmemorybenchmark.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=54,55 "Built target inmemorybenchmark" +.PHONY : CMakeFiles/inmemorybenchmark.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/inmemorybenchmark.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/inmemorybenchmark.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/inmemorybenchmark.dir/rule + +# Convenience name for target. +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/rule +.PHONY : inmemorybenchmark + +# clean rule for target. +CMakeFiles/inmemorybenchmark.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/clean +.PHONY : CMakeFiles/inmemorybenchmark.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/unit.dir + +# All Build rule for target. +CMakeFiles/unit.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=60,61 "Built target unit" +.PHONY : CMakeFiles/unit.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/unit.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/unit.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/unit.dir/rule + +# Convenience name for target. +unit: CMakeFiles/unit.dir/rule +.PHONY : unit + +# clean rule for target. +CMakeFiles/unit.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/clean +.PHONY : CMakeFiles/unit.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/check.dir + +# All Build rule for target. +CMakeFiles/check.dir/all: CMakeFiles/unit.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num= "Built target check" +.PHONY : CMakeFiles/check.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/check.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/check.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/check.dir/rule + +# Convenience name for target. +check: CMakeFiles/check.dir/rule +.PHONY : check + +# clean rule for target. +CMakeFiles/check.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/clean +.PHONY : CMakeFiles/check.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/FastPFOR_unittest.dir + +# All Build rule for target. +CMakeFiles/FastPFOR_unittest.dir/all: CMakeFiles/FastPFOR.dir/all +CMakeFiles/FastPFOR_unittest.dir/all: CMakeFiles/gtest_src.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=11,12,13,14,15 "Built target FastPFOR_unittest" +.PHONY : CMakeFiles/FastPFOR_unittest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/FastPFOR_unittest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 31 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/FastPFOR_unittest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : CMakeFiles/FastPFOR_unittest.dir/rule + +# Convenience name for target. +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/rule +.PHONY : FastPFOR_unittest + +# clean rule for target. +CMakeFiles/FastPFOR_unittest.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/clean +.PHONY : CMakeFiles/FastPFOR_unittest.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/cmake-build-debug-event-trace/CMakeFiles/TargetDirectories.txt b/cmake-build-debug-event-trace/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..8fae4d0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,24 @@ +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/FastPFOR.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/entropy.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/codecs.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/example.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/unit.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/check.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/FastPFOR_unittest.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/test.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/edit_cache.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/rebuild_cache.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/list_install_components.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/install.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/install/local.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/install/strip.dir diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/DependInfo.cmake new file mode 100644 index 0000000..6bb6900 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp" "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" "gcc" "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/build.make new file mode 100644 index 0000000..3f1a21d --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/benchbitpacking.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/benchbitpacking.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/benchbitpacking.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/benchbitpacking.dir/flags.make + +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o: CMakeFiles/benchbitpacking.dir/flags.make +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o: CMakeFiles/benchbitpacking.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o -MF CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o.d -o CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp + +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp > CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.i + +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp -o CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.s + +# Object files for target benchbitpacking +benchbitpacking_OBJECTS = \ +"CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" + +# External object files for target benchbitpacking +benchbitpacking_EXTERNAL_OBJECTS = + +benchbitpacking: CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o +benchbitpacking: CMakeFiles/benchbitpacking.dir/build.make +benchbitpacking: libFastPFOR.a +benchbitpacking: CMakeFiles/benchbitpacking.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable benchbitpacking" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/benchbitpacking.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/benchbitpacking.dir/build: benchbitpacking +.PHONY : CMakeFiles/benchbitpacking.dir/build + +CMakeFiles/benchbitpacking.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/benchbitpacking.dir/cmake_clean.cmake +.PHONY : CMakeFiles/benchbitpacking.dir/clean + +CMakeFiles/benchbitpacking.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/benchbitpacking.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake new file mode 100644 index 0000000..f8ef77b --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" + "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o.d" + "benchbitpacking" + "benchbitpacking.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/benchbitpacking.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.make new file mode 100644 index 0000000..594511f --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for benchbitpacking. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.ts new file mode 100644 index 0000000..efb77a9 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for benchbitpacking. diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/depend.make new file mode 100644 index 0000000..2307861 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for benchbitpacking. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/link.txt new file mode 100644 index 0000000..05a0992 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o -o benchbitpacking libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/progress.make new file mode 100644 index 0000000..d7d1be2 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/benchbitpacking.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 16 +CMAKE_PROGRESS_2 = 17 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/check.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/check.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/check.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/check.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/check.dir/build.make new file mode 100644 index 0000000..4fbe9f1 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/check.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Utility rule file for check. + +# Include any custom commands dependencies for this target. +include CMakeFiles/check.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/check.dir/progress.make + +CMakeFiles/check: unit + ./unit + +check: CMakeFiles/check +check: CMakeFiles/check.dir/build.make +.PHONY : check + +# Rule to build all files generated by this target. +CMakeFiles/check.dir/build: check +.PHONY : CMakeFiles/check.dir/build + +CMakeFiles/check.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/check.dir/cmake_clean.cmake +.PHONY : CMakeFiles/check.dir/clean + +CMakeFiles/check.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/check.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/check.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/check.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/check.dir/cmake_clean.cmake new file mode 100644 index 0000000..97eb243 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/check.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/check" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/check.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.make new file mode 100644 index 0000000..12fa6bb --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for check. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.ts new file mode 100644 index 0000000..2aa2de6 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/check.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for check. diff --git a/cmake-build-debug-event-trace/CMakeFiles/check.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/check.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/check.dir/progress.make @@ -0,0 +1 @@ + diff --git a/cmake-build-debug-event-trace/CMakeFiles/clion-Debug-event-trace-log.txt b/cmake-build-debug-event-trace/CMakeFiles/clion-Debug-event-trace-log.txt new file mode 100644 index 0000000..bef68b4 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/clion-Debug-event-trace-log.txt @@ -0,0 +1,21 @@ +/snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_BUILD_TYPE=Debug --profiling-format=google-trace --profiling-output=CMakeFiles/clion-event-trace.json -S /home/kosakseb/Developer/FastPFor -B /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace +CMake Deprecation Warning at CMakeLists.txt:6 (cmake_minimum_required): + Compatibility with CMake < 3.5 will be removed from a future version of + CMake. + + Update the VERSION argument value or use a ... suffix to tell + CMake that the project does not need compatibility with older versions. + + +-- CMAKE_BUILD_TYPE: Debug +Building for architecture: x86_64 +-- CMAKE_SIZEOF_VOID_P (should be 8): 8 +-- Good. You appear to have a 64-bit system. +-- CMAKE_CXX_COMPILER_ID: GNU +-- CMAKE_C_COMPILER: /usr/bin/cc +-- CXX_COMPILER_VERSION: 11 +-- SSE 4.2 support detected +-- Snappy was found. Building additional targets codecssnappy and inmemorybenchmarksnappy. +-- Configuring done (0.1s) +-- Generating done (0.0s) +-- Build files have been written to: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace diff --git a/cmake-build-debug-event-trace/CMakeFiles/clion-environment.txt b/cmake-build-debug-event-trace/CMakeFiles/clion-environment.txt new file mode 100644 index 0000000000000000000000000000000000000000..c9fad737409c78dbfed3d6266a6e6c0e6a7cc5b5 GIT binary patch literal 123 zcmWH^&(8@?EwNHC)H6`f$jMJm%+d5OD9OyvE4EVL;({@Cbqk8}(=u~1^U`(G@{4j4 zOKj8g^V4%ubxVp8lT#Ux LINKER:--pop-state", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:38" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567247 +},{ + "args" : + { + "functionArgs" : "CMAKE_LINK_LIBRARY_USING_WHOLE_ARCHIVE_SUPPORTED TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:46" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567251 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567256 +},{ + "args" : + { + "functionArgs" : "CMAKE_LINK_GROUP_USING_RESCAN LINKER:--start-group LINKER:--end-group", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:51" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567260 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567266 +},{ + "args" : + { + "functionArgs" : "CMAKE_LINK_GROUP_USING_RESCAN_SUPPORTED TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:52" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567274 +},{ + "args" : + { + "functionArgs" : "DEFINED CMAKE_INSTALL_SO_NO_EXE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:63" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567284 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_SO_NO_EXE ${CMAKE_INSTALL_SO_NO_EXE} CACHE INTERNAL Install .so files without execute permission.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:66" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567297 +},{ + "args" : + { + "functionArgs" : "Platform/UnixPaths", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:82" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567301 +},{ + "args" : + { + "functionArgs" : "__UNIX_PATHS_INCLUDED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:10" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567391 +},{ + "args" : + { + "functionArgs" : "__UNIX_PATHS_INCLUDED 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:13" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567410 +},{ + "args" : + { + "functionArgs" : "UNIX 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:18" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567414 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567420 +},{ + "args" : + { + "functionArgs" : "_CMAKE_INSTALL_DIR ${CMAKE_ROOT} PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:22" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567423 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567432 +},{ + "args" : + { + "functionArgs" : "_CMAKE_INSTALL_DIR ${_CMAKE_INSTALL_DIR} PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:23" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567443 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/local /usr / ${_CMAKE_INSTALL_DIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:31" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567447 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567455 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_FIND_NO_INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:38" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567466 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_SYSTEM_PREFIX_PATH ${CMAKE_INSTALL_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:39" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567470 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567477 +},{ + "args" : + { + "functionArgs" : "CMAKE_STAGING_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:43" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567480 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567486 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:50" + }, + "cat" : "script", + "name" : "_cmake_record_install_prefix", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567490 +},{ + "args" : + { + "functionArgs" : "_CMAKE_SYSTEM_PREFIX_PATH_INSTALL_PREFIX_VALUE ${CMAKE_INSTALL_PREFIX} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567500 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567508 +},{ + "args" : + { + "functionArgs" : "_CMAKE_SYSTEM_PREFIX_PATH_STAGING_PREFIX_VALUE ${CMAKE_STAGING_PREFIX} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:11" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567520 +},{ + "args" : + { + "functionArgs" : "icount 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:12" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567529 +},{ + "args" : + { + "functionArgs" : "scount 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:13" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567537 +},{ + "args" : + { + "functionArgs" : "value IN LISTS CMAKE_SYSTEM_PREFIX_PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:14" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567550 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567562 +},{ + "args" : + { + "functionArgs" : "EXPR icount ${icount}+1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:16" + }, + "cat" : "script", + "name" : "math", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567583 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_STAGING_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567595 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567599 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567605 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_STAGING_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567615 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567624 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_STAGING_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567634 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567637 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567643 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_STAGING_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567652 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567672 +},{ + "args" : + { + "functionArgs" : "EXPR icount ${icount}+1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:16" + }, + "cat" : "script", + "name" : "math", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567685 +},{ + "args" : + { + "functionArgs" : "value STREQUAL CMAKE_STAGING_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567696 +},{ + "args" : + { + "functionArgs" : "_CMAKE_SYSTEM_PREFIX_PATH_INSTALL_PREFIX_COUNT ${icount} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567708 +},{ + "args" : + { + "functionArgs" : "_CMAKE_SYSTEM_PREFIX_PATH_STAGING_PREFIX_COUNT ${scount} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:23" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567722 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_SYSTEM_PREFIX_PATH /usr/X11R6 /usr/pkg /opt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:53" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567733 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_SYSTEM_INCLUDE_PATH /usr/include/X11", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:60" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567742 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_SYSTEM_LIBRARY_PATH /usr/lib/X11", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:65" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567751 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES /lib /lib32 /lib64 /usr/lib /usr/lib32 /usr/lib64", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:70" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567761 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSROOT_COMPILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:74" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567765 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567770 +},{ + "args" : + { + "functionArgs" : "_cmake_sysroot_compile ${CMAKE_SYSROOT}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:77" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567774 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567782 +},{ + "args" : + { + "functionArgs" : "_CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES_INIT ${CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES} ${_cmake_sysroot_compile}/usr/include", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:82" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567785 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567795 +},{ + "args" : + { + "functionArgs" : "_CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES_INIT ${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES} ${_cmake_sysroot_compile}/usr/include", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:86" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567799 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567808 +},{ + "args" : + { + "functionArgs" : "_CMAKE_CUDA_IMPLICIT_INCLUDE_DIRECTORIES_INIT ${CMAKE_CUDA_IMPLICIT_INCLUDE_DIRECTORIES} ${_cmake_sysroot_compile}/usr/include", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:90" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567819 +},{ + "args" : + { + "functionArgs" : "_cmake_sysroot_compile", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:95" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567823 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567842 +},{ + "args" : + { + "functionArgs" : "CMAKE_COMPILER_SYSROOT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:100" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567850 +},{ + "args" : + { + "functionArgs" : "GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:109" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567854 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567860 +},{ + "args" : + { + "functionArgs" : "GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:110" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567864 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567869 +},{ + "args" : + { + "functionArgs" : "GLOBAL PROPERTY FIND_LIBRARY_USE_LIBX32_PATHS TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake:111" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567872 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567885 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CROSSCOMPILING", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:86" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567894 +},{ + "args" : + { + "functionArgs" : "EXISTS /etc/debian_version", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:87" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567898 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567906 +},{ + "args" : + { + "functionArgs" : "GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS FALSE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:88" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567916 +},{ + "args" : + { + "functionArgs" : "GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:89" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567934 +},{ + "args" : + { + "functionArgs" : "EXISTS /etc/arch-release", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake:91" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567954 +},{ + "args" : + { + "functionArgs" : "NOT _INCLUDED_SYSTEM_INFO_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:34" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567963 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXTRA_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:48" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567973 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_MODULE_EXISTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:58" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567982 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_MODULE_PREFIX ${CMAKE_SHARED_LIBRARY_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:59" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567992 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_MODULE_SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:60" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003567996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568027 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_SPECIFIC_INFORMATION_LOADED 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake:64" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568032 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568038 +},{ + "args" : + { + "functionArgs" : "CMakeLanguageInformation", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:11" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568229 +},{ + "args" : + { + "functionArgs" : "__cmake_include_compiler_wrapper lang", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake:9" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568298 +},{ + "args" : + { + "functionArgs" : "UNIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568308 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_OUTPUT_EXTENSION .o", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:16" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568318 +},{ + "args" : + { + "functionArgs" : "_INCLUDED_FILE 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:21" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568328 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_ID", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:24" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568331 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568336 +},{ + "args" : + { + "functionArgs" : "Compiler/${CMAKE_CXX_COMPILER_ID}-CXX OPTIONAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:25" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568340 +},{ + "args" : + { + "functionArgs" : "Compiler/GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:1" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568423 +},{ + "args" : + { + "functionArgs" : "__COMPILER_GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:6" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568579 +},{ + "args" : + { + "functionArgs" : "__COMPILER_GNU 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:9" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568590 +},{ + "args" : + { + "functionArgs" : "Compiler/CMakeCommonCompilerMacros", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:11" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568593 +},{ + "args" : + { + "functionArgs" : "__COMPILER_CMAKE_COMMON_COMPILER_MACROS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:5" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568754 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568763 +},{ + "args" : + { + "functionArgs" : "__COMPILER_CMAKE_COMMON_COMPILER_MACROS 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:8" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568788 +},{ + "args" : + { + "functionArgs" : "__compiler_check_default_language_standard lang stdver1 std1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:32" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568791 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568797 +},{ + "args" : + { + "functionArgs" : "cmake_record_c_compile_features", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:71" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568812 +},{ + "args" : + { + "functionArgs" : "cmake_record_cxx_compile_features", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:106" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568825 +},{ + "args" : + { + "functionArgs" : "cmake_record_cuda_compile_features", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:143" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568833 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568849 +},{ + "args" : + { + "functionArgs" : "cmake_record_hip_compile_features", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:180" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568857 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568873 +},{ + "args" : + { + "functionArgs" : "__pch_header_C c-header", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:13" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568882 +},{ + "args" : + { + "functionArgs" : "__pch_header_CXX c++-header", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:14" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568891 +},{ + "args" : + { + "functionArgs" : "__pch_header_OBJC objective-c-header", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568900 +},{ + "args" : + { + "functionArgs" : "__pch_header_OBJCXX objective-c++-header", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:16" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568908 +},{ + "args" : + { + "functionArgs" : "__compiler_gnu lang", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:18" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568916 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568930 +},{ + "args" : + { + "functionArgs" : "CXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:2" + }, + "cat" : "script", + "name" : "__compiler_gnu", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568934 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_VERBOSE_FLAG -v", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:20" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568951 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_WARNING_AS_ERROR -Werror", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:21" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568956 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568961 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_PIC -fPIC", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568965 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568971 +},{ + "args" : + { + "functionArgs" : "_CMAKE_CXX_PIE_MAY_BE_SUPPORTED_BY_LINKER NO", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:23" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568980 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:24" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003568994 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_PIE -fPIE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:25" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569007 +},{ + "args" : + { + "functionArgs" : "_CMAKE_CXX_PIE_MAY_BE_SUPPORTED_BY_LINKER YES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:28" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569010 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569016 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINK_OPTIONS_PIE ${CMAKE_CXX_COMPILE_OPTIONS_PIE} -pie", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:29" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569027 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINK_OPTIONS_NO_PIE -no-pie", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:30" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569036 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:32" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569048 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY -fvisibility=", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569052 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569057 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_CXX_FLAGS -fPIC", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:35" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569080 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS -shared", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:36" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569089 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_SYSROOT --sysroot=", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:37" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569097 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINKER_WRAPPER_FLAG -Wl,", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:39" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569101 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569106 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINKER_WRAPPER_FLAG_SEP ,", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:40" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569122 +},{ + "args" : + { + "functionArgs" : "_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:46" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569134 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_ID STREQUAL GNU AND _IN_TC AND NOT CMAKE_FORCE_DEPFILES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:47" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569138 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569148 +},{ + "args" : + { + "functionArgs" : "CMAKE_DEPFILE_FLAGS_CXX -MD -MT -MF ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:52" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569158 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINKER_DEPFILE_FLAGS LINKER:--dependency-file,", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:56" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569168 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINKER_DEPFILE_FORMAT gcc", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:57" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569176 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_CXX_LINKER_DEPFILE_SUPPORTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:59" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569186 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINKER_DEPFILE_SUPPORTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:88" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569199 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569204 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINK_DEPENDS_USE_LINKER TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:89" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569214 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_LINK_DEPENDS_USE_LINKER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:97" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569224 +},{ + "args" : + { + "functionArgs" : "CMAKE_LINK_DEPENDS_USE_LINKER FALSE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:98" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569228 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569233 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_CXX_FLAGS_INIT ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:102" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569245 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_CXX_FLAGS_DEBUG_INIT -g", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:103" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569249 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569254 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_CXX_FLAGS_MINSIZEREL_INIT -Os -DNDEBUG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:104" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569263 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_CXX_FLAGS_RELEASE_INIT -O3 -DNDEBUG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:105" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569267 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569272 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT -O2 -g -DNDEBUG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:106" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569276 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569281 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_CREATE_PREPROCESSED_SOURCE -E > ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:107" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569285 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569291 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_CREATE_ASSEMBLY_SOURCE -S -o ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:108" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569295 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569300 +},{ + "args" : + { + "functionArgs" : "NOT APPLE OR NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:109" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569313 +},{ + "args" : + { + "functionArgs" : "CMAKE_INCLUDE_SYSTEM_FLAG_CXX -isystem ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:110" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569322 +},{ + "args" : + { + "functionArgs" : "_CMAKE_CXX_IPO_SUPPORTED_BY_CMAKE YES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:113" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569331 +},{ + "args" : + { + "functionArgs" : "_CMAKE_CXX_IPO_MAY_BE_SUPPORTED_BY_COMPILER NO", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:114" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569340 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.5", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:119" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569350 +},{ + "args" : + { + "functionArgs" : "_CMAKE_CXX_IPO_MAY_BE_SUPPORTED_BY_COMPILER YES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:120" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569376 +},{ + "args" : + { + "functionArgs" : "__lto_flags ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:122" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569380 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569385 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11.0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:129" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569395 +},{ + "args" : + { + "functionArgs" : "APPEND __lto_flags -flto=auto", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:130" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569405 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:141" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569415 +},{ + "args" : + { + "functionArgs" : "APPEND __lto_flags -fno-fat-lto-objects", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:145" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569424 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_IPO ${__lto_flags}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:148" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569435 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_ARCHIVE_CREATE_IPO \\\"${CMAKE_CXX_COMPILER_AR}\\\" cr ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:157" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569439 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569447 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_ARCHIVE_APPEND_IPO \\\"${CMAKE_CXX_COMPILER_AR}\\\" r ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:161" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569458 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_ARCHIVE_FINISH_IPO \\\"${CMAKE_CXX_COMPILER_RANLIB}\\\" ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:165" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569469 +},{ + "args" : + { + "functionArgs" : "CXX STREQUAL CXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:170" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569475 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569481 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_PREDEFINES_COMMAND ${CMAKE_CXX_COMPILER}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:171" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569495 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_ARG1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:172" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569499 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569504 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_CXX_COMPILER_PREDEFINES_COMMAND -dM -E -c ${CMAKE_ROOT}/Modules/CMakeCXXCompilerABI.cpp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:177" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569517 +},{ + "args" : + { + "functionArgs" : "NOT xCXX STREQUAL xFortran", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:180" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569528 +},{ + "args" : + { + "functionArgs" : "CMAKE_PCH_EXTENSION .gch", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:181" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569540 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_GENERATOR MATCHES Xcode", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:182" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569551 +},{ + "args" : + { + "functionArgs" : "CMAKE_PCH_PROLOGUE #pragma GCC system_header", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:183" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569560 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_INVALID_PCH -Winvalid-pch", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:185" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569569 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_USE_PCH -include ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:186" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569577 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_CREATE_PCH -x ${__pch_header_CXX} -include ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:187" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569588 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 4.9", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:192" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569599 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_COLOR_DIAGNOSTICS -fdiagnostics-color=always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:193" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569609 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_COLOR_DIAGNOSTICS_OFF -fno-diagnostics-color", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:194" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569688 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569693 +},{ + "args" : + { + "functionArgs" : "( NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER ) AND CMAKE_GENERATOR MATCHES Makefiles|WMake AND CMAKE_DEPFILE_FLAGS_CXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:5" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569712 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_DEPFILE_FORMAT gcc", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:9" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569722 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_DEPENDS_USE_COMPILER TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569730 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_EXPLICIT_LANGUAGE -x c++", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:13" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569734 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569739 +},{ + "args" : + { + "functionArgs" : "WIN32", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569742 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569748 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:20" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569752 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569758 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN -fvisibility-inlines-hidden", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:21" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569762 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569767 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:25" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569777 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX98_STANDARD_COMPILE_OPTION -std=c++98", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:26" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569780 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569785 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX98_EXTENSION_COMPILE_OPTION -std=gnu++98", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:27" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569793 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569803 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX98_STANDARD__HAS_FULL_SUPPORT ON", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:31" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569811 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX11_STANDARD_COMPILE_OPTION -std=c++11", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:32" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569839 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX11_EXTENSION_COMPILE_OPTION -std=gnu++11", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569842 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569847 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8.1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:40" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569850 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569856 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX11_STANDARD__HAS_FULL_SUPPORT ON", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:41" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569865 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:44" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569874 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX14_STANDARD_COMPILE_OPTION -std=c++14", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:45" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569883 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX14_EXTENSION_COMPILE_OPTION -std=gnu++14", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:46" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569891 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:52" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569900 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX14_STANDARD__HAS_FULL_SUPPORT ON", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:53" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569908 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:56" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569918 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX17_STANDARD_COMPILE_OPTION -std=c++17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:57" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569934 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX17_EXTENSION_COMPILE_OPTION -std=gnu++17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:58" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569943 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 11.1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:64" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569947 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569953 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX20_STANDARD_COMPILE_OPTION -std=c++20", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:65" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569962 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX20_EXTENSION_COMPILE_OPTION -std=gnu++20", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:66" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569965 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569971 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX23_STANDARD_COMPILE_OPTION -std=c++23", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:67" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569979 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX23_EXTENSION_COMPILE_OPTION -std=gnu++23", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:68" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569987 +},{ + "args" : + { + "functionArgs" : "CXX 3.4 98 6.0 14 11.1 17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake:74" + }, + "cat" : "script", + "name" : "__compiler_check_default_language_standard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003569991 +},{ + "args" : + { + "functionArgs" : "__std_ver_pairs 3.4;98;6.0;14;11.1;17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570003 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570009 +},{ + "args" : + { + "functionArgs" : "REGEX REPLACE *; * __std_ver_pairs ${__std_ver_pairs}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:34" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570014 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570029 +},{ + "args" : + { + "functionArgs" : "REGEX MATCHALL [^ ]+ [^ ]+ __std_ver_pairs ${__std_ver_pairs}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:35" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570045 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 3.4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:39" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570056 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_FORCED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:40" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570079 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_STANDARD_COMPUTED_DEFAULT OR NOT DEFINED CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:41" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570085 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570093 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_STANDARD_DEFAULT ${CMAKE_CXX_STANDARD_COMPUTED_DEFAULT}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:44" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570104 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_EXTENSIONS_DEFAULT ${CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:45" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570114 +},{ + "args" : + { + "functionArgs" : "__std_ver_pairs", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:67" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570138 +},{ + "args" : + { + "functionArgs" : "CMAKE_BASE_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:28" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570142 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570147 +},{ + "args" : + { + "functionArgs" : "CMAKE_BASE_NAME ${CMAKE_CXX_COMPILER} NAME_WE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:29" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570150 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570157 +},{ + "args" : + { + "functionArgs" : "CMAKE_COMPILER_IS_GNUCXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:31" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570166 +},{ + "args" : + { + "functionArgs" : "CMAKE_BASE_NAME g++", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:32" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570175 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_PROCESSOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:37" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570183 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_ID", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:38" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570201 +},{ + "args" : + { + "functionArgs" : "Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_CXX_COMPILER_ID}-CXX-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL RESULT_VARIABLE _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:39" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570205 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570225 +},{ + "args" : + { + "functionArgs" : "NOT _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:41" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570236 +},{ + "args" : + { + "functionArgs" : "Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_BASE_NAME}-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:42" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570255 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_ID", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:47" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570265 +},{ + "args" : + { + "functionArgs" : "Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_CXX_COMPILER_ID}-CXX OPTIONAL RESULT_VARIABLE _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:48" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570268 +},{ + "args" : + { + "functionArgs" : "Platform/Linux-GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-CXX.cmake:1" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570313 +},{ + "args" : + { + "functionArgs" : "__LINUX_COMPILER_GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake:6" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570362 +},{ + "args" : + { + "functionArgs" : "__LINUX_COMPILER_GNU 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake:9" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570366 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570372 +},{ + "args" : + { + "functionArgs" : "__linux_compiler_gnu lang", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake:11" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570389 +},{ + "args" : + { + "functionArgs" : "CXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-CXX.cmake:2" + }, + "cat" : "script", + "name" : "__linux_compiler_gnu", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570393 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS -rdynamic", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake:14" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570414 +},{ + "args" : + { + "functionArgs" : "NOT _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:50" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570423 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILER_WRAPPER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:56" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570432 +},{ + "args" : + { + "functionArgs" : "NOT _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:64" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570441 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_SIZEOF_DATA_PTR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:68" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570449 +},{ + "args" : + { + "functionArgs" : "f ${CMAKE_CXX_ABI_FILES}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:69" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570460 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_ABI_FILES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:72" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570464 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570469 +},{ + "args" : + { + "functionArgs" : "CMAKE_USER_MAKE_RULES_OVERRIDE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:81" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570478 +},{ + "args" : + { + "functionArgs" : "CMAKE_USER_MAKE_RULES_OVERRIDE_CXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:87" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570487 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:97" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570496 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILE_OPTIONS_PIC", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:101" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570499 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570504 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILE_OPTIONS_PIE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:105" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570524 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_LINK_OPTIONS_PIE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:108" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570528 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570542 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_LINK_OPTIONS_NO_PIE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:111" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570546 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570552 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILE_OPTIONS_DLL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:115" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570561 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OPTIONS_DLL ${CMAKE_C_COMPILE_OPTIONS_DLL}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:116" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570571 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_SHARED_LIBRARY_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:119" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570574 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570580 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:123" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570589 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:127" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570598 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:128" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570609 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:131" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570617 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:132" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570628 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:135" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570637 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:136" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570640 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570647 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_EXE_EXPORTS_CXX_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:139" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570650 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570657 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXE_EXPORTS_CXX_FLAG ${CMAKE_EXE_EXPORTS_C_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:140" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570667 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570670 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570676 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG ${CMAKE_SHARED_LIBRARY_SONAME_C_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:144" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570679 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570686 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:147" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570695 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:148" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570705 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570714 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_RUNTIME_CXX_FLAG_SEP ${CMAKE_SHARED_LIBRARY_RUNTIME_CXX_FLAG_SEP}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:152" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570717 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570723 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:155" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570727 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570732 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_RPATH_LINK_CXX_FLAG ${CMAKE_SHARED_LIBRARY_RPATH_LINK_CXX_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:156" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570742 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:159" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570751 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_LINK_CXX_WITH_RUNTIME_PATH ${CMAKE_SHARED_LIBRARY_LINK_C_WITH_RUNTIME_PATH}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570769 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_INCLUDE_FLAG_CXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570773 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570779 +},{ + "args" : + { + "functionArgs" : "CMAKE_INCLUDE_FLAG_CXX ${CMAKE_INCLUDE_FLAG_C}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:164" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570789 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_MODULE_EXISTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:170" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570792 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570798 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_MODULE_CXX_FLAGS ${CMAKE_SHARED_LIBRARY_CXX_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:171" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570801 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570808 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS ${CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570818 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:176" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570821 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570827 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_SHARED_MODULE_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:180" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570835 +},{ + "args" : + { + "functionArgs" : "type SHARED_LIBRARY SHARED_MODULE EXE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:185" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570839 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570844 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_${type}_LINK_STATIC_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:186" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570856 +},{ + "args" : + { + "functionArgs" : "CMAKE_${type}_LINK_STATIC_CXX_FLAGS ${CMAKE_${type}_LINK_STATIC_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:187" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570869 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:190" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570872 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570879 +},{ + "args" : + { + "functionArgs" : "CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ${CMAKE_${type}_LINK_DYNAMIC_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:191" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570891 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_${type}_LINK_STATIC_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:186" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570901 +},{ + "args" : + { + "functionArgs" : "CMAKE_${type}_LINK_STATIC_CXX_FLAGS ${CMAKE_${type}_LINK_STATIC_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:187" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570913 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:190" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570923 +},{ + "args" : + { + "functionArgs" : "CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ${CMAKE_${type}_LINK_DYNAMIC_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:191" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570927 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570935 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_${type}_LINK_STATIC_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:186" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570945 +},{ + "args" : + { + "functionArgs" : "CMAKE_${type}_LINK_STATIC_CXX_FLAGS ${CMAKE_${type}_LINK_STATIC_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:187" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570949 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570957 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:190" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570967 +},{ + "args" : + { + "functionArgs" : "CMAKE_${type}_LINK_DYNAMIC_CXX_FLAGS ${CMAKE_${type}_LINK_DYNAMIC_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:191" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570978 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_FORMAT STREQUAL ELF", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:196" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570989 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_CXX_LINK_WHAT_YOU_USE_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:197" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003570993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571007 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINK_WHAT_YOU_USE_FLAG LINKER:--no-as-needed", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:198" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571011 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571017 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_LINK_WHAT_YOU_USE_CHECK", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:200" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571027 +},{ + "args" : + { + "functionArgs" : "CMAKE_LINK_WHAT_YOU_USE_CHECK ldd -u -r", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:201" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571036 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_FLAGS_INIT $ENV{CXXFLAGS} ${CMAKE_CXX_FLAGS_INIT}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:209" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571048 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_FLAGS Flags used by the CXX compiler", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:211" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571051 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571072 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571076 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571086 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571096 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571105 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571116 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571127 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571130 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571136 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571140 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571146 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571150 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571160 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571163 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571171 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571182 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571212 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571227 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571231 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571239 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571265 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571280 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571290 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571313 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571324 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571336 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571339 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571349 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571359 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571371 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571380 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571384 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571391 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571404 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571414 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571418 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571425 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571429 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571435 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571446 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571459 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571469 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571474 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_STANDARD_LIBRARIES_INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:213" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571477 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571483 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILER_LAUNCHER AND DEFINED ENV{CMAKE_CXX_COMPILER_LAUNCHER}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:219" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571495 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_LINKER_LAUNCHER AND DEFINED ENV{CMAKE_CXX_LINKER_LAUNCHER}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:224" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571499 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571506 +},{ + "args" : + { + "functionArgs" : "CMakeCommonLanguageInclude", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:229" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571509 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_EXE_LINKER_FLAGS_INIT $ENV{LDFLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571570 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_SHARED_LINKER_FLAGS_INIT $ENV{LDFLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:10" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571574 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571581 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_MODULE_LINKER_FLAGS_INIT $ENV{LDFLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:11" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571591 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXE_LINKER_FLAGS Flags used by the linker", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:13" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571595 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571616 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571625 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571638 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571648 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571651 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571658 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571669 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571679 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571688 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571698 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571710 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571721 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571732 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571741 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571754 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571764 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571777 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571780 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571790 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571801 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571804 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571812 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571822 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571833 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571846 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571856 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571876 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571887 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571890 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571898 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571911 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571922 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571933 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571943 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571953 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571966 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571980 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LINKER_FLAGS Flags used by the linker during the creation of shared libraries", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:14" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571984 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003571995 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572091 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572113 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572119 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572130 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572146 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572163 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572169 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572180 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572194 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572210 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572229 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572235 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572247 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572264 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572293 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572315 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572321 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572331 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572337 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572351 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572356 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572373 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572407 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572425 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572441 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572478 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572492 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572495 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572502 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572506 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572533 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572566 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572578 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572591 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572601 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572605 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572613 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572617 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572623 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572626 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572634 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572665 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572680 +},{ + "args" : + { + "functionArgs" : "CMAKE_MODULE_LINKER_FLAGS Flags used by the linker during the creation of modules", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:15" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572705 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572753 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572767 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572793 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572803 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572814 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572823 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572832 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572841 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572853 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572863 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572866 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572874 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572883 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572887 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572895 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572899 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572905 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572908 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572916 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572920 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572929 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572932 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572939 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572950 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572954 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572960 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572970 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572982 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572992 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003572995 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573003 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573006 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573020 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573024 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573032 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573035 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573044 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573053 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573087 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573096 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573107 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573119 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573133 +},{ + "args" : + { + "functionArgs" : "CMAKE_STATIC_LINKER_FLAGS Flags used by the linker during the creation of static libraries", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:16" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573137 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573155 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573168 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573177 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573187 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573198 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573208 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573211 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573217 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573221 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573226 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573238 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573241 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573248 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573259 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573268 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573289 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573300 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573303 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573312 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573325 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573335 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573339 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573347 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573351 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573357 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573360 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573368 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573381 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573384 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573391 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573394 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573402 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573411 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573422 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573434 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573444 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573455 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573464 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573475 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573487 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573497 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573502 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TOOL ${CMAKE_MAKE_PROGRAM}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:19" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573512 +},{ + "args" : + { + "functionArgs" : "CMAKE_VERBOSE_MAKEFILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:21" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573527 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_CREATE_SHARED_LIBRARY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:258" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573536 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_CREATE_SHARED_LIBRARY -o ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573557 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_CREATE_SHARED_MODULE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:264" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573566 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_CREATE_SHARED_MODULE ${CMAKE_CXX_CREATE_SHARED_LIBRARY}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:265" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573594 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_CXX_ARCHIVE_CREATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573598 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573604 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_ARCHIVE_CREATE qc ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:272" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573613 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_CXX_ARCHIVE_APPEND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:274" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573617 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573622 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_ARCHIVE_APPEND q ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:275" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573626 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573631 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_CXX_ARCHIVE_FINISH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573640 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_ARCHIVE_FINISH ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:278" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573648 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_COMPILE_OBJECT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:282" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573651 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573656 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_COMPILE_OBJECT -o -c ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:283" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573665 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_CXX_LINK_EXECUTABLE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:287" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573673 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_LINK_EXECUTABLE -o ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:288" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573682 +},{ + "args" : + { + "functionArgs" : "CMAKE_VERBOSE_MAKEFILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:292" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573690 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_INFORMATION_LOADED 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake:296" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573698 +},{ + "args" : + { + "functionArgs" : "CMakeLanguageInformation", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:11" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573857 +},{ + "args" : + { + "functionArgs" : "__cmake_include_compiler_wrapper lang", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake:9" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573925 +},{ + "args" : + { + "functionArgs" : "UNIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573936 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_OUTPUT_EXTENSION .o", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:16" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573945 +},{ + "args" : + { + "functionArgs" : "_INCLUDED_FILE 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:21" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573949 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573955 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_ID", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:24" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573958 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573963 +},{ + "args" : + { + "functionArgs" : "Compiler/${CMAKE_C_COMPILER_ID}-C OPTIONAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:25" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003573967 +},{ + "args" : + { + "functionArgs" : "Compiler/GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:1" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574031 +},{ + "args" : + { + "functionArgs" : "__COMPILER_GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:6" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574184 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574192 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:7" + }, + "cat" : "script", + "name" : "return", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574196 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574213 +},{ + "args" : + { + "functionArgs" : "C", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:2" + }, + "cat" : "script", + "name" : "__compiler_gnu", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574217 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_VERBOSE_FLAG -v", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:20" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574240 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_WARNING_AS_ERROR -Werror", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:21" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574245 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574250 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_PIC -fPIC", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574254 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574260 +},{ + "args" : + { + "functionArgs" : "_CMAKE_C_PIE_MAY_BE_SUPPORTED_BY_LINKER NO", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:23" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574263 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574269 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:24" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574281 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_PIE -fPIE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:25" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574287 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574293 +},{ + "args" : + { + "functionArgs" : "_CMAKE_C_PIE_MAY_BE_SUPPORTED_BY_LINKER YES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:28" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574302 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINK_OPTIONS_PIE ${CMAKE_C_COMPILE_OPTIONS_PIE} -pie", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:29" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574313 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINK_OPTIONS_NO_PIE -no-pie", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:30" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574321 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:32" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574333 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_VISIBILITY -fvisibility=", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574337 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574343 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_C_FLAGS -fPIC", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:35" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574347 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574352 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS -shared", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:36" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574356 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574361 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_SYSROOT --sysroot=", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:37" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574369 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINKER_WRAPPER_FLAG -Wl,", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:39" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574378 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINKER_WRAPPER_FLAG_SEP ,", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:40" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574386 +},{ + "args" : + { + "functionArgs" : "_IN_TC GLOBAL PROPERTY IN_TRY_COMPILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:46" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574416 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_ID STREQUAL GNU AND _IN_TC AND NOT CMAKE_FORCE_DEPFILES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:47" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574431 +},{ + "args" : + { + "functionArgs" : "CMAKE_DEPFILE_FLAGS_C -MD -MT -MF ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:52" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574441 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINKER_DEPFILE_FLAGS LINKER:--dependency-file,", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:56" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574445 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574451 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINKER_DEPFILE_FORMAT gcc", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:57" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574469 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_C_LINKER_DEPFILE_SUPPORTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:59" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574481 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINKER_DEPFILE_SUPPORTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:88" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574500 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINK_DEPENDS_USE_LINKER TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:89" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574510 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_LINK_DEPENDS_USE_LINKER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:97" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574521 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_C_FLAGS_INIT ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:102" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574525 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574531 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_C_FLAGS_DEBUG_INIT -g", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:103" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574540 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT -Os -DNDEBUG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:104" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574550 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_C_FLAGS_RELEASE_INIT -O3 -DNDEBUG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:105" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574554 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574559 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT -O2 -g -DNDEBUG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:106" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574569 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_CREATE_PREPROCESSED_SOURCE -E > ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:107" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574589 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_CREATE_ASSEMBLY_SOURCE -S -o ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:108" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574601 +},{ + "args" : + { + "functionArgs" : "NOT APPLE OR NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:109" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574605 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574614 +},{ + "args" : + { + "functionArgs" : "CMAKE_INCLUDE_SYSTEM_FLAG_C -isystem ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:110" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574637 +},{ + "args" : + { + "functionArgs" : "_CMAKE_C_IPO_SUPPORTED_BY_CMAKE YES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:113" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574646 +},{ + "args" : + { + "functionArgs" : "_CMAKE_C_IPO_MAY_BE_SUPPORTED_BY_COMPILER NO", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:114" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574650 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574655 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.5", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:119" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574665 +},{ + "args" : + { + "functionArgs" : "_CMAKE_C_IPO_MAY_BE_SUPPORTED_BY_COMPILER YES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:120" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574677 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574683 +},{ + "args" : + { + "functionArgs" : "__lto_flags ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:122" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574691 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 11.0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:129" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574701 +},{ + "args" : + { + "functionArgs" : "APPEND __lto_flags -flto=auto", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:130" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574711 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.7", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:141" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574715 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574721 +},{ + "args" : + { + "functionArgs" : "APPEND __lto_flags -fno-fat-lto-objects", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:145" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574729 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_IPO ${__lto_flags}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:148" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574733 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574751 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_ARCHIVE_CREATE_IPO \\\"${CMAKE_C_COMPILER_AR}\\\" cr ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:157" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574764 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_ARCHIVE_APPEND_IPO \\\"${CMAKE_C_COMPILER_AR}\\\" r ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:161" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574775 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_ARCHIVE_FINISH_IPO \\\"${CMAKE_C_COMPILER_RANLIB}\\\" ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:165" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574778 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574785 +},{ + "args" : + { + "functionArgs" : "C STREQUAL CXX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:170" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574791 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574798 +},{ + "args" : + { + "functionArgs" : "NOT xC STREQUAL xFortran", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:180" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574813 +},{ + "args" : + { + "functionArgs" : "CMAKE_PCH_EXTENSION .gch", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:181" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574819 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574825 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_GENERATOR MATCHES Xcode", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:182" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574836 +},{ + "args" : + { + "functionArgs" : "CMAKE_PCH_PROLOGUE #pragma GCC system_header", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:183" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574839 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574845 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_INVALID_PCH -Winvalid-pch", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:185" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574853 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_USE_PCH -include ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:186" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574857 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574862 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_CREATE_PCH -x ${__pch_header_C} -include ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:187" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574873 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.9", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:192" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574884 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_COLOR_DIAGNOSTICS -fdiagnostics-color=always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:193" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574893 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_COLOR_DIAGNOSTICS_OFF -fno-diagnostics-color", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake:194" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574896 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574905 +},{ + "args" : + { + "functionArgs" : "( NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER ) AND CMAKE_GENERATOR MATCHES Makefiles|WMake AND CMAKE_DEPFILE_FLAGS_C", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:5" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574909 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574923 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_DEPFILE_FORMAT gcc", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:9" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574927 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574932 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_DEPENDS_USE_COMPILER TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574935 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574940 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OPTIONS_EXPLICIT_LANGUAGE -x c", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:13" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574944 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574949 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.5", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574952 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574959 +},{ + "args" : + { + "functionArgs" : "CMAKE_C90_STANDARD_COMPILE_OPTION -std=c90", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:16" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574967 +},{ + "args" : + { + "functionArgs" : "CMAKE_C90_EXTENSION_COMPILE_OPTION -std=gnu90", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:17" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574975 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:23" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574985 +},{ + "args" : + { + "functionArgs" : "CMAKE_C90_STANDARD__HAS_FULL_SUPPORT ON", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:24" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003574988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575001 +},{ + "args" : + { + "functionArgs" : "CMAKE_C99_STANDARD_COMPILE_OPTION -std=c99", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:25" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575005 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575010 +},{ + "args" : + { + "functionArgs" : "CMAKE_C99_EXTENSION_COMPILE_OPTION -std=gnu99", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:26" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575017 +},{ + "args" : + { + "functionArgs" : "CMAKE_C99_STANDARD__HAS_FULL_SUPPORT ON", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:27" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575025 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 4.7", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575028 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575034 +},{ + "args" : + { + "functionArgs" : "CMAKE_C11_STANDARD_COMPILE_OPTION -std=c11", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:31" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575043 +},{ + "args" : + { + "functionArgs" : "CMAKE_C11_EXTENSION_COMPILE_OPTION -std=gnu11", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:32" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575050 +},{ + "args" : + { + "functionArgs" : "CMAKE_C11_STANDARD__HAS_FULL_SUPPORT ON", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575053 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575058 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 8.1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:39" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575062 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575067 +},{ + "args" : + { + "functionArgs" : "CMAKE_C17_STANDARD_COMPILE_OPTION -std=c17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:40" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575071 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575076 +},{ + "args" : + { + "functionArgs" : "CMAKE_C17_EXTENSION_COMPILE_OPTION -std=gnu17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:41" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575079 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575083 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 9.1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:44" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575092 +},{ + "args" : + { + "functionArgs" : "CMAKE_C23_STANDARD_COMPILE_OPTION -std=c2x", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:45" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575095 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575100 +},{ + "args" : + { + "functionArgs" : "CMAKE_C23_EXTENSION_COMPILE_OPTION -std=gnu2x", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:46" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575108 +},{ + "args" : + { + "functionArgs" : "C 3.4 90 5.0 11 8.1 17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake:49" + }, + "cat" : "script", + "name" : "__compiler_check_default_language_standard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575111 +},{ + "args" : + { + "functionArgs" : "__std_ver_pairs 3.4;90;5.0;11;8.1;17", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575129 +},{ + "args" : + { + "functionArgs" : "REGEX REPLACE *; * __std_ver_pairs ${__std_ver_pairs}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:34" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575148 +},{ + "args" : + { + "functionArgs" : "REGEX MATCHALL [^ ]+ [^ ]+ __std_ver_pairs ${__std_ver_pairs}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:35" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575164 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 3.4", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:39" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575174 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_FORCED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:40" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575189 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575195 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_STANDARD_COMPUTED_DEFAULT OR NOT DEFINED CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:41" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575200 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575209 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_STANDARD_DEFAULT ${CMAKE_C_STANDARD_COMPUTED_DEFAULT}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:44" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575220 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_EXTENSIONS_DEFAULT ${CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:45" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575237 +},{ + "args" : + { + "functionArgs" : "__std_ver_pairs", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake:67" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575245 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575250 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575260 +},{ + "args" : + { + "functionArgs" : "CMAKE_BASE_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:28" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575263 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575268 +},{ + "args" : + { + "functionArgs" : "CMAKE_BASE_NAME ${CMAKE_C_COMPILER} NAME_WE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:29" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575297 +},{ + "args" : + { + "functionArgs" : "CMAKE_COMPILER_IS_GNUCC", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575306 +},{ + "args" : + { + "functionArgs" : "CMAKE_BASE_NAME gcc", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:31" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575310 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575315 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_PROCESSOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:36" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575324 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_ID", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:37" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575332 +},{ + "args" : + { + "functionArgs" : "Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_C_COMPILER_ID}-C-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL RESULT_VARIABLE _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:38" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575356 +},{ + "args" : + { + "functionArgs" : "NOT _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:40" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575360 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575389 +},{ + "args" : + { + "functionArgs" : "Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_BASE_NAME}-${CMAKE_SYSTEM_PROCESSOR} OPTIONAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:41" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575393 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575408 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_ID", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:47" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575432 +},{ + "args" : + { + "functionArgs" : "Platform/${CMAKE_EFFECTIVE_SYSTEM_NAME}-${CMAKE_C_COMPILER_ID}-C OPTIONAL RESULT_VARIABLE _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:48" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575436 +},{ + "args" : + { + "functionArgs" : "Platform/Linux-GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-C.cmake:1" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575495 +},{ + "args" : + { + "functionArgs" : "__LINUX_COMPILER_GNU", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake:6" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575546 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575554 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake:7" + }, + "cat" : "script", + "name" : "return", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575567 +},{ + "args" : + { + "functionArgs" : "C", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-C.cmake:2" + }, + "cat" : "script", + "name" : "__linux_compiler_gnu", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575570 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LIBRARY_LINK_C_FLAGS -rdynamic", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake:14" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575591 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575594 +},{ + "args" : + { + "functionArgs" : "NOT _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:51" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575598 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575604 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_WRAPPER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:57" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575607 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575612 +},{ + "args" : + { + "functionArgs" : "NOT _INCLUDED_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:65" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575616 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575621 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_SIZEOF_DATA_PTR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:69" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575629 +},{ + "args" : + { + "functionArgs" : "f ${CMAKE_C_ABI_FILES}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:70" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575639 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_ABI_FILES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:73" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575649 +},{ + "args" : + { + "functionArgs" : "CMAKE_USER_MAKE_RULES_OVERRIDE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:82" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575667 +},{ + "args" : + { + "functionArgs" : "CMAKE_USER_MAKE_RULES_OVERRIDE_C", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:88" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575671 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575676 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_FORMAT STREQUAL ELF", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:94" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575680 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575686 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_C_LINK_WHAT_YOU_USE_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:95" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575696 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINK_WHAT_YOU_USE_FLAG LINKER:--no-as-needed", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:96" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575699 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575704 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_LINK_WHAT_YOU_USE_CHECK", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:98" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575714 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_MODULE_EXISTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:106" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575717 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575723 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_MODULE_C_FLAGS ${CMAKE_SHARED_LIBRARY_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:107" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575733 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_MODULE_CREATE_C_FLAGS ${CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:108" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575743 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_FLAGS_INIT $ENV{CFLAGS} ${CMAKE_C_FLAGS_INIT}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:111" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575747 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575755 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_FLAGS Flags used by the C compiler", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:113" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575758 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575778 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575791 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575801 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575810 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575815 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575821 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575832 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575840 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575850 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575853 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575861 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575872 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575883 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575892 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575914 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575925 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575937 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575951 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575954 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575961 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575965 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575972 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575982 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575993 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003575996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576035 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576047 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576059 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576083 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576094 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576107 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576117 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576128 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576132 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576138 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576141 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576149 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576152 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576162 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576165 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576172 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576177 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_STANDARD_LIBRARIES_INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:115" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576186 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILER_LAUNCHER AND DEFINED ENV{CMAKE_C_COMPILER_LAUNCHER}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:121" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576190 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576199 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_LINKER_LAUNCHER AND DEFINED ENV{CMAKE_C_LINKER_LAUNCHER}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:126" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576220 +},{ + "args" : + { + "functionArgs" : "CMakeCommonLanguageInclude", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:131" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576224 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_EXE_LINKER_FLAGS_INIT $ENV{LDFLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576284 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_SHARED_LINKER_FLAGS_INIT $ENV{LDFLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:10" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576295 +},{ + "args" : + { + "functionArgs" : "APPEND CMAKE_MODULE_LINKER_FLAGS_INIT $ENV{LDFLAGS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:11" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576298 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576305 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXE_LINKER_FLAGS Flags used by the linker", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:13" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576308 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576320 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576329 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576333 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576342 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576352 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576362 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576367 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576374 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576384 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576391 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576401 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576431 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576443 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576447 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576454 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576466 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576483 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576490 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576495 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576503 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576507 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576513 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576526 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576529 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576539 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576550 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576578 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576587 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576591 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576598 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576609 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576622 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576632 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576635 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576643 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576652 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576663 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576666 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576675 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576678 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576698 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576729 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576738 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576741 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576748 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576752 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576761 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576775 +},{ + "args" : + { + "functionArgs" : "CMAKE_SHARED_LINKER_FLAGS Flags used by the linker during the creation of shared libraries", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:14" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576779 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576811 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576814 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576823 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576832 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576841 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576852 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576862 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576878 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576889 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576900 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576910 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576921 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576924 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576930 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576934 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576942 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576952 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576955 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576963 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576966 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576975 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576985 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003576996 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577006 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577016 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577029 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577032 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577038 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577042 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577049 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577052 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577058 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577068 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577080 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577083 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577090 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577093 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577100 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577118 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577129 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577132 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577141 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577144 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577155 +},{ + "args" : + { + "functionArgs" : "CMAKE_MODULE_LINKER_FLAGS Flags used by the linker during the creation of modules", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:15" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577159 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577169 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577177 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577188 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577197 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577206 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577211 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577217 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577227 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577235 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577244 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577255 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577265 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577275 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577285 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577289 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577297 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577300 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577320 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577323 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577331 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577343 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577353 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577356 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577363 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577381 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577384 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577392 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577404 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577413 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577424 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577428 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577433 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577444 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577447 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577456 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577465 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577475 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577484 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577495 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577506 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577509 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577520 +},{ + "args" : + { + "functionArgs" : "CMAKE_STATIC_LINKER_FLAGS Flags used by the linker during the creation of static libraries", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:16" + }, + "cat" : "script", + "name" : "cmake_initialize_per_config_variable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577523 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:9" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577541 +},{ + "args" : + { + "functionArgs" : "${_PREFIX} ${_INIT} CACHE STRING ${_DOCSTRING} during all build types.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:10" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577553 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:12" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577562 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NOT_USING_CONFIG_FLAGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:14" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577571 +},{ + "args" : + { + "functionArgs" : "_CONFIGS Debug Release MinSizeRel RelWithDebInfo", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:15" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577581 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:17" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577610 +},{ + "args" : + { + "functionArgs" : "_GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:18" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577613 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577618 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_NO_BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:21" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577622 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577636 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ...", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:22" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577640 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577661 +},{ + "args" : + { + "functionArgs" : "APPEND _CONFIGS ${CMAKE_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:25" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577664 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577671 +},{ + "args" : + { + "functionArgs" : "REMOVE_DUPLICATES _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:28" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577681 +},{ + "args" : + { + "functionArgs" : "_BUILD_TYPE IN LISTS _CONFIGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:29" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577690 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577702 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577711 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577714 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577722 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577734 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577743 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577747 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577754 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577757 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577763 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577773 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577785 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577794 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577804 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577813 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577823 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577835 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577844 +},{ + "args" : + { + "functionArgs" : "NOT ${_BUILD_TYPE} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:30" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577847 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577854 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_BUILD_TYPE} _BUILD_TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:31" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577857 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577863 +},{ + "args" : + { + "functionArgs" : "STRIP ${${_PREFIX}_${_BUILD_TYPE}_INIT} _INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:32" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577866 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577873 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE} ${_INIT} CACHE STRING ${_DOCSTRING} during ${_BUILD_TYPE} builds.", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:33" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577884 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577893 +},{ + "args" : + { + "functionArgs" : "${_PREFIX}_${_BUILD_TYPE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake:35" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577896 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577907 +},{ + "args" : + { + "functionArgs" : "CMAKE_BUILD_TOOL ${CMAKE_MAKE_PROGRAM}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:19" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577917 +},{ + "args" : + { + "functionArgs" : "CMAKE_VERBOSE_MAKEFILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake:21" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577920 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577930 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_CREATE_SHARED_LIBRARY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:161" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577939 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_CREATE_SHARED_LIBRARY -o ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:162" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577942 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577948 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_CREATE_SHARED_MODULE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:167" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577952 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577957 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_CREATE_SHARED_MODULE ${CMAKE_C_CREATE_SHARED_LIBRARY}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577967 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_C_ARCHIVE_CREATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:173" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577976 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_ARCHIVE_CREATE qc ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:174" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577984 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_C_ARCHIVE_APPEND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:176" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577993 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_ARCHIVE_APPEND q ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:177" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003577996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578001 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_C_ARCHIVE_FINISH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:179" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578004 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578010 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_ARCHIVE_FINISH ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:180" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578027 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_COMPILE_OBJECT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:184" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578035 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILE_OBJECT -o -c ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:185" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578044 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_C_LINK_EXECUTABLE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:189" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578052 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_LINK_EXECUTABLE -o ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:190" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578055 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578060 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:194" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578069 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_RUNTIME_C_FLAG ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:195" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578078 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:198" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578087 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_RUNTIME_C_FLAG_SEP ${CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:199" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578105 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:202" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578115 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXECUTABLE_RPATH_LINK_C_FLAG ${CMAKE_SHARED_LIBRARY_RPATH_LINK_C_FLAG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:203" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578118 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578124 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_INFORMATION_LOADED 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake:206" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578163 +},{ + "args" : + { + "functionArgs" : "PROJECT_URL https://github.com/lemire/FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:20" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578174 +},{ + "args" : + { + "functionArgs" : "PROJECT_DESCRIPTION The FastPFOR C++ library: Fast integer compression", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:21" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578182 +},{ + "args" : + { + "functionArgs" : "PROJECT_VERSION 0.1.9", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:23" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578190 +},{ + "args" : + { + "functionArgs" : "DetectCPUFeatures", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:25" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578193 +},{ + "args" : + { + "functionArgs" : "CheckCXXSourceCompiles", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:1" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578253 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake:48" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578318 +},{ + "args" : + { + "functionArgs" : "OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:3" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578321 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578329 +},{ + "args" : + { + "functionArgs" : "SSE4PROG \n\n#include\nint main(){\n__m128 x=_mm_set1_ps(0.5);\nx=_mm_dp_ps(x,x,0x77);\nreturn _mm_movemask_ps(x);\n}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:5" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578339 +},{ + "args" : + { + "functionArgs" : "AVXPROG \n\n#include\nint main(){\n__m128 x=_mm_set1_ps(0.5);\nx=_mm_permute_ps(x,1);\nreturn _mm_movemask_ps(x);\n}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:14" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578342 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578348 +},{ + "args" : + { + "functionArgs" : "AVX2PROG \n\n#include\nint main(){\n__m256i x=_mm256_set1_epi32(5);\nx=_mm256_add_epi32(x,x);\nreturn _mm256_movemask_epi8(x);\n}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:23" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578351 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578357 +},{ + "args" : + { + "functionArgs" : "MSVC", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:32" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578360 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578365 +},{ + "args" : + { + "functionArgs" : "CMAKE_REQUIRED_FLAGS -march=native -msse4.2", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:44" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578370 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578376 +},{ + "args" : + { + "functionArgs" : "${SSE4PROG} SUPPORT_SSE42", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:45" + }, + "cat" : "script", + "name" : "check_cxx_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578379 +},{ + "args" : + { + "functionArgs" : "CXX \n\n#include\nint main(){\n__m128 x=_mm_set1_ps(0.5);\nx=_mm_dp_ps(x,x,0x77);\nreturn _mm_movemask_ps(x);\n} SUPPORT_SSE42 ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake:52" + }, + "cat" : "script", + "name" : "cmake_check_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578390 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED ${_var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:11" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578406 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578430 +},{ + "args" : + { + "functionArgs" : "CMAKE_REQUIRED_FLAGS -march=native -mavx", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:46" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578433 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578439 +},{ + "args" : + { + "functionArgs" : "${AVXPROG} SUPPORT_AVX", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:47" + }, + "cat" : "script", + "name" : "check_cxx_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578442 +},{ + "args" : + { + "functionArgs" : "CXX \n\n#include\nint main(){\n__m128 x=_mm_set1_ps(0.5);\nx=_mm_permute_ps(x,1);\nreturn _mm_movemask_ps(x);\n} SUPPORT_AVX ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake:52" + }, + "cat" : "script", + "name" : "cmake_check_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578452 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED ${_var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:11" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578465 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578484 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578487 +},{ + "args" : + { + "functionArgs" : "CMAKE_REQUIRED_FLAGS -march=native -mavx2", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:48" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578505 +},{ + "args" : + { + "functionArgs" : "${AVX2PROG} SUPPORT_AVX2", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:49" + }, + "cat" : "script", + "name" : "check_cxx_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578509 +},{ + "args" : + { + "functionArgs" : "CXX \n\n#include\nint main(){\n__m256i x=_mm256_set1_epi32(5);\nx=_mm256_add_epi32(x,x);\nreturn _mm256_movemask_epi8(x);\n} SUPPORT_AVX2 ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake:52" + }, + "cat" : "script", + "name" : "cmake_check_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578519 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED ${_var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:11" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578540 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578553 +},{ + "args" : + { + "functionArgs" : "CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake:52" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578570 +},{ + "args" : + { + "functionArgs" : "CheckCXXCompilerFlag", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:26" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578592 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:30" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578642 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578651 +},{ + "args" : + { + "functionArgs" : "Internal/CheckCompilerFlag", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:31" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578654 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:4" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578720 +},{ + "args" : + { + "functionArgs" : "Internal/CheckFlagCommonConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:5" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578723 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake:9" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578811 +},{ + "args" : + { + "functionArgs" : "SCOPE_FOR POLICIES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake:11" + }, + "cat" : "script", + "name" : "block", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578814 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578821 +},{ + "args" : + { + "functionArgs" : "SET CMP0054 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake:12" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578833 +},{ + "args" : + { + "functionArgs" : "SET CMP0057 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake:13" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578841 +},{ + "args" : + { + "functionArgs" : "CMAKE_CHECK_FLAG_COMMON_INIT _FUNC _LANG _SRC _PATTERNS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake:15" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578849 +},{ + "args" : + { + "functionArgs" : "CMAKE_CHECK_FLAG_COMMON_FINISH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake:72" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578864 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578873 +},{ + "args" : + { + "functionArgs" : "Internal/CheckSourceCompiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:6" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578877 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:4" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003578991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579002 +},{ + "args" : + { + "functionArgs" : "CMakeCheckCompilerFlagCommonPatterns", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:7" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579006 +},{ + "args" : + { + "functionArgs" : "CHECK_COMPILER_FLAG_COMMON_PATTERNS _VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake:9" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579066 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579075 +},{ + "args" : + { + "functionArgs" : "CMAKE_CHECK_COMPILER_FLAG _lang _flag _var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:9" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579078 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579092 +},{ + "args" : + { + "functionArgs" : "CHECK_CXX_COMPILER_FLAG _FLAG _RESULT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:33" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579095 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579100 +},{ + "args" : + { + "functionArgs" : "CheckCXXSourceCompiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:39" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579106 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake:48" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579172 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579176 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579180 +},{ + "args" : + { + "functionArgs" : "${CMAKE_MODULE_PATH}/environment.cmake", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:27" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579183 +},{ + "args" : + { + "functionArgs" : "CheckCXXCompilerFlag", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/environment.cmake:1" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579217 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:30" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579257 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579265 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579269 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_PROCESSOR MATCHES arm OR CMAKE_SYSTEM_PROCESSOR MATCHES aarch64", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/environment.cmake:3" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579288 +},{ + "args" : + { + "functionArgs" : "Building for architecture: ${CMAKE_SYSTEM_PROCESSOR}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:29" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579291 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579304 +},{ + "args" : + { + "functionArgs" : "CXX_COMPILER_DUMPVERSION _OUTPUT_VERSION", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:36" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579307 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579312 +},{ + "args" : + { + "functionArgs" : "NOT WIN32", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:48" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579319 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579325 +},{ + "args" : + { + "functionArgs" : "CXX_COMPILER_VERSION", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:49" + }, + "cat" : "script", + "name" : "cxx_compiler_dumpversion", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579328 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CXX_COMPILER} ARGS ${CMAKE_CXX_COMPILER_ARG1} -dumpversion OUTPUT_VARIABLE COMPILER_VERSION", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:38" + }, + "cat" : "script", + "name" : "exec_program", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003579338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580509 +},{ + "args" : + { + "functionArgs" : "${_OUTPUT_VERSION} ${COMPILER_VERSION} PARENT_SCOPE", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:45" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580526 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580557 +},{ + "args" : + { + "functionArgs" : "STATUS CMAKE_SIZEOF_VOID_P (should be 8): ${CMAKE_SIZEOF_VOID_P}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:52" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580579 +},{ + "args" : + { + "functionArgs" : "CMAKE_SIZEOF_VOID_P EQUAL 8", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:53" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580637 +},{ + "args" : + { + "functionArgs" : "STATUS Good. You appear to have a 64-bit system. ", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:54" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580651 +},{ + "args" : + { + "functionArgs" : "STATUS CMAKE_CXX_COMPILER_ID: ${CMAKE_CXX_COMPILER_ID}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:59" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580664 +},{ + "args" : + { + "functionArgs" : "STATUS CMAKE_C_COMPILER: ${CMAKE_C_COMPILER}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:60" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580675 +},{ + "args" : + { + "functionArgs" : "STATUS CXX_COMPILER_VERSION: ${CXX_COMPILER_VERSION}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:61" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580721 +},{ + "args" : + { + "functionArgs" : "SUPPORT_SSE42", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:63" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580731 +},{ + "args" : + { + "functionArgs" : "STATUS SSE 4.2 support detected", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:64" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580742 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CXX_COMPILER_ID} STREQUAL GNU", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:74" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580754 +},{ + "args" : + { + "functionArgs" : "CXX_COMPILER_VERSION VERSION_LESS 4.7", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:76" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580762 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580784 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_FLAGS_RELEASE -Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c++11 -DHAVE_CXX0X -march=native", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:83" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580795 +},{ + "args" : + { + "functionArgs" : "CMAKE_CXX_FLAGS_DEBUG -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:84" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580805 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_FLAGS_RELEASE -Wall -Wcast-align -Ofast -lm -DNDEBUG -std=c99 -march=native", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:85" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580814 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_FLAGS_DEBUG -Wall -Wcast-align -ggdb -lm -std=c99 -march=native", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:86" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580823 +},{ + "args" : + { + "functionArgs" : "headers", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:113" + }, + "cat" : "script", + "name" : "include_directories", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580850 +},{ + "args" : + { + "functionArgs" : "FastPFOR STATIC src/bitpacking.cpp src/bitpackingaligned.cpp src/bitpackingunaligned.cpp src/horizontalbitpacking.cpp src/simdunalignedbitpacking.cpp src/codecfactory.cpp src/simdbitpacking.cpp src/varintdecode.c src/streamvbyte.c", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:114" + }, + "cat" : "script", + "name" : "add_library", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580854 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580981 +},{ + "args" : + { + "functionArgs" : "FastPFOR PROPERTIES POSITION_INDEPENDENT_CODE TRUE", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:124" + }, + "cat" : "script", + "name" : "set_target_properties", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580995 +},{ + "args" : + { + "functionArgs" : "gapstats src/gapstats.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:127" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003580998 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581052 +},{ + "args" : + { + "functionArgs" : "partitionbylength src/partitionbylength.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:128" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581056 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581107 +},{ + "args" : + { + "functionArgs" : "csv2maropu src/csv2maropu.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:129" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581112 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581181 +},{ + "args" : + { + "functionArgs" : "SUPPORT_NEON", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:131" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581200 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581207 +},{ + "args" : + { + "functionArgs" : "entropy src/entropy.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:138" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581232 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581295 +},{ + "args" : + { + "functionArgs" : "entropy FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:139" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581316 +},{ + "args" : + { + "functionArgs" : "SUPPORT_SSE42", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:141" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581319 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581326 +},{ + "args" : + { + "functionArgs" : "benchbitpacking src/benchbitpacking.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:142" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581330 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581378 +},{ + "args" : + { + "functionArgs" : "benchbitpacking FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:143" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581389 +},{ + "args" : + { + "functionArgs" : "snappy", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:146" + }, + "cat" : "script", + "name" : "find_package", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581393 +},{ + "args" : + { + "functionArgs" : "NOT snappy_ROOT", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake:15" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581495 +},{ + "args" : + { + "functionArgs" : "snappy_INCLUDE_DIRS snappy.h", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake:16" + }, + "cat" : "script", + "name" : "find_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581500 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581511 +},{ + "args" : + { + "functionArgs" : "snappy_LIBRARIES NAMES snappy", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake:17" + }, + "cat" : "script", + "name" : "find_library", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581524 +},{ + "args" : + { + "functionArgs" : "snappy_INCLUDE_DIRS AND snappy_LIBRARIES", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake:23" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581528 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581536 +},{ + "args" : + { + "functionArgs" : "snappy_FOUND TRUE", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake:24" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581540 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581546 +},{ + "args" : + { + "functionArgs" : "snappy_LIBRARIES snappy_INCLUDE_DIRS", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake:31" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581568 +},{ + "args" : + { + "functionArgs" : "NOT ${snappy_FOUND}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:147" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581581 +},{ + "args" : + { + "functionArgs" : "STATUS Snappy was found. Building additional targets codecssnappy and inmemorybenchmarksnappy.", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:151" + }, + "cat" : "script", + "name" : "message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581587 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581596 +},{ + "args" : + { + "functionArgs" : "${snappy_INCLUDE_DIRS}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:153" + }, + "cat" : "script", + "name" : "include_directories", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581599 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581608 +},{ + "args" : + { + "functionArgs" : "codecssnappy src/codecs.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:154" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581667 +},{ + "args" : + { + "functionArgs" : "codecssnappy PROPERTIES DEFINE_SYMBOL USESNAPPY", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:155" + }, + "cat" : "script", + "name" : "set_target_properties", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581672 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581679 +},{ + "args" : + { + "functionArgs" : "codecssnappy FastPFOR ${snappy_LIBRARIES}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:156" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581693 +},{ + "args" : + { + "functionArgs" : "inmemorybenchmarksnappy src/inmemorybenchmark.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:158" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581784 +},{ + "args" : + { + "functionArgs" : "inmemorybenchmarksnappy PROPERTIES DEFINE_SYMBOL USESNAPPY", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:159" + }, + "cat" : "script", + "name" : "set_target_properties", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581818 +},{ + "args" : + { + "functionArgs" : "inmemorybenchmarksnappy FastPFOR ${snappy_LIBRARIES}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:160" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581833 +},{ + "args" : + { + "functionArgs" : "${CMAKE_MODULE_PATH}/googletest.cmake", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:163" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581837 +},{ + "args" : + { + "functionArgs" : "ExternalProject", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:5" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003581929 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585374 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_LIST_DIR}/ExternalProject/shared_internal_commands.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1213" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585378 +},{ + "args" : + { + "functionArgs" : "VERSION 3.25", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:1" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585503 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585530 +},{ + "args" : + { + "functionArgs" : "_ep_get_git_remote_url output_variable working_directory", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:5" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585541 +},{ + "args" : + { + "functionArgs" : "_ep_is_relative_git_remote output_variable remote_url", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:78" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585555 +},{ + "args" : + { + "functionArgs" : "_ep_resolve_relative_git_remote output_variable parent_remote_url relative_remote_url", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:89" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585567 +},{ + "args" : + { + "functionArgs" : "_ep_resolve_git_remote output_variable git_repository cmp0150 cmp0150_old_base_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:139" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585574 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585580 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585589 +},{ + "args" : + { + "functionArgs" : "PUSH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1215" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585598 +},{ + "args" : + { + "functionArgs" : "SET CMP0054 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1216" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585607 +},{ + "args" : + { + "functionArgs" : "SET CMP0057 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1217" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585615 +},{ + "args" : + { + "functionArgs" : "_ep_get_hash_algos out_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1219" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585624 +},{ + "args" : + { + "functionArgs" : "_ep_get_hash_regex out_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1234" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585638 +},{ + "args" : + { + "functionArgs" : "_ep_parse_arguments f keywords name ns args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1240" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585651 +},{ + "args" : + { + "functionArgs" : "DIRECTORY PROPERTY EP_BASE INHERITED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1297" + }, + "cat" : "script", + "name" : "define_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585669 +},{ + "args" : + { + "functionArgs" : "DIRECTORY PROPERTY EP_PREFIX INHERITED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1298" + }, + "cat" : "script", + "name" : "define_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585672 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585678 +},{ + "args" : + { + "functionArgs" : "DIRECTORY PROPERTY EP_STEP_TARGETS INHERITED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1299" + }, + "cat" : "script", + "name" : "define_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585687 +},{ + "args" : + { + "functionArgs" : "DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS INHERITED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1300" + }, + "cat" : "script", + "name" : "define_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585691 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585697 +},{ + "args" : + { + "functionArgs" : "DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED INHERITED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1301" + }, + "cat" : "script", + "name" : "define_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585706 +},{ + "args" : + { + "functionArgs" : "_ep_write_gitclone_script script_filename source_dir git_EXECUTABLE git_repository git_tag git_remote_name init_submodules git_submodules_recurse git_submodules git_shallow git_progress git_config src_name work_dir gitclone_infofile gitclone_stampfile tls_verify", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1303" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585710 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585730 +},{ + "args" : + { + "functionArgs" : "_ep_write_hgclone_script script_filename source_dir hg_EXECUTABLE hg_repository hg_tag src_name work_dir hgclone_infofile hgclone_stampfile", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1387" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585741 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585747 +},{ + "args" : + { + "functionArgs" : "_ep_write_gitupdate_script script_filename git_EXECUTABLE git_tag git_remote_name init_submodules git_submodules_recurse git_submodules git_repository work_dir git_update_strategy tls_verify", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1411" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585763 +},{ + "args" : + { + "functionArgs" : "_ep_write_downloadfile_script script_filename REMOTE LOCAL timeout inactivity_timeout no_progress hash tls_verify tls_cainfo userpwd http_headers netrc netrc_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1460" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585778 +},{ + "args" : + { + "functionArgs" : "_ep_write_verifyfile_script script_filename LOCAL hash", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1582" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585789 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585795 +},{ + "args" : + { + "functionArgs" : "_ep_write_extractfile_script script_filename name filename directory options", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1608" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585807 +},{ + "args" : + { + "functionArgs" : "_ep_set_directories name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1640" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585815 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585820 +},{ + "args" : + { + "functionArgs" : "_ep_replace_location_tags target_name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1751" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585838 +},{ + "args" : + { + "functionArgs" : "_ep_command_line_to_initial_cache var args force", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1773" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585852 +},{ + "args" : + { + "functionArgs" : "_ep_write_initial_cache target_name script_filename script_initial_cache", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1821" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585866 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Get_Property name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1840" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585878 +},{ + "args" : + { + "functionArgs" : "_ep_get_configure_command_id name cfg_cmd_id_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1853" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585890 +},{ + "args" : + { + "functionArgs" : "_ep_get_build_command name step cmd_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1882" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585898 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585903 +},{ + "args" : + { + "functionArgs" : "_ep_write_log_script name step cmd_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1975" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585917 +},{ + "args" : + { + "functionArgs" : "_ep_get_configuration_subdir_genex suffix_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2140" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585927 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585932 +},{ + "args" : + { + "functionArgs" : "_ep_get_step_stampfile name step stampfile_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2150" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585944 +},{ + "args" : + { + "functionArgs" : "_ep_get_complete_stampfile name stampfile_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2164" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585956 +},{ + "args" : + { + "functionArgs" : "_ep_step_add_target name step no_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2176" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585968 +},{ + "args" : + { + "functionArgs" : "_ep_step_add_target_dependencies name step node", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2232" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585981 +},{ + "args" : + { + "functionArgs" : "_ep_step_add_target_dependents name step node", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2267" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003585993 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_StepTargets name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2287" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586005 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step name step", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2324" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586017 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_StepDependencies name step", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2619" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586045 +},{ + "args" : + { + "functionArgs" : "_ep_add_mkdir_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2690" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586058 +},{ + "args" : + { + "functionArgs" : "_ep_is_dir_empty dir empty_var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2703" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586065 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586070 +},{ + "args" : + { + "functionArgs" : "_ep_get_git_submodules_recurse git_submodules_recurse", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2712" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586082 +},{ + "args" : + { + "functionArgs" : "_ep_add_download_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2746" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586094 +},{ + "args" : + { + "functionArgs" : "_ep_get_update_disconnected var name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3240" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586113 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586119 +},{ + "args" : + { + "functionArgs" : "_ep_add_update_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3260" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586131 +},{ + "args" : + { + "functionArgs" : "_ep_add_patch_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3527" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586151 +},{ + "args" : + { + "functionArgs" : "_ep_get_file_deps var name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3603" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586163 +},{ + "args" : + { + "functionArgs" : "_ep_extract_configure_command var name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3630" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586175 +},{ + "args" : + { + "functionArgs" : "_ep_add_configure_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3783" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586192 +},{ + "args" : + { + "functionArgs" : "_ep_add_build_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3855" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586200 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586205 +},{ + "args" : + { + "functionArgs" : "_ep_add_install_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3937" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586213 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586218 +},{ + "args" : + { + "functionArgs" : "_ep_add_test_command name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4011" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586231 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4090" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586241 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586246 +},{ + "args" : + { + "functionArgs" : "POP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4358" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586255 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586260 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586285 +},{ + "args" : + { + "functionArgs" : "Git REQUIRED", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:6" + }, + "cat" : "script", + "name" : "find_package", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586290 +},{ + "args" : + { + "functionArgs" : "git_names git", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:36" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586422 +},{ + "args" : + { + "functionArgs" : "CMAKE_HOST_WIN32", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:41" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586433 +},{ + "args" : + { + "functionArgs" : "GIT_EXECUTABLE NAMES ${git_names} PATHS ${github_path} ${_git_sourcetree_path} DOC Git command line client", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:55" + }, + "cat" : "script", + "name" : "find_program", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586456 +},{ + "args" : + { + "functionArgs" : "CMAKE_HOST_WIN32", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:61" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586466 +},{ + "args" : + { + "functionArgs" : "GIT_EXECUTABLE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:74" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586469 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586475 +},{ + "args" : + { + "functionArgs" : "git_names", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:76" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586483 +},{ + "args" : + { + "functionArgs" : "_git_sourcetree_path", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:77" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586491 +},{ + "args" : + { + "functionArgs" : "GIT_EXECUTABLE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:79" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586510 +},{ + "args" : + { + "functionArgs" : "__doGitVersionCheck TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:88" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586521 +},{ + "args" : + { + "functionArgs" : "__gitVersionProp GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:89" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586525 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586532 +},{ + "args" : + { + "functionArgs" : "__gitVersionProp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:92" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586540 +},{ + "args" : + { + "functionArgs" : "__gitVersionProp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:102" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586549 +},{ + "args" : + { + "functionArgs" : "__doGitVersionCheck", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:104" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586552 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586557 +},{ + "args" : + { + "functionArgs" : "COMMAND ${GIT_EXECUTABLE} --version OUTPUT_VARIABLE git_version ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:105" + }, + "cat" : "script", + "name" : "execute_process", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003586563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587410 +},{ + "args" : + { + "functionArgs" : "git_version MATCHES ^git version [0-9]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:109" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587422 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587437 +},{ + "args" : + { + "functionArgs" : "REPLACE git version GIT_VERSION_STRING ${git_version}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:110" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587443 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587455 +},{ + "args" : + { + "functionArgs" : "GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION ${GIT_EXECUTABLE};${GIT_VERSION_STRING}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:111" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587472 +},{ + "args" : + { + "functionArgs" : "git_version", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:115" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587476 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587481 +},{ + "args" : + { + "functionArgs" : "__doGitVersionCheck", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:117" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587485 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587491 +},{ + "args" : + { + "functionArgs" : "_findgit_role GLOBAL PROPERTY CMAKE_ROLE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:119" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587502 +},{ + "args" : + { + "functionArgs" : "_findgit_role STREQUAL PROJECT AND NOT TARGET Git::Git", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:120" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587506 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587517 +},{ + "args" : + { + "functionArgs" : "Git::Git IMPORTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:121" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587546 +},{ + "args" : + { + "functionArgs" : "TARGET Git::Git PROPERTY IMPORTED_LOCATION ${GIT_EXECUTABLE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:122" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587562 +},{ + "args" : + { + "functionArgs" : "_findgit_role", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:124" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587571 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:127" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587577 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:213" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003587961 +},{ + "args" : + { + "functionArgs" : "find_package_message pkg msg details", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:33" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588050 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588096 +},{ + "args" : + { + "functionArgs" : "PUSH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:216" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588106 +},{ + "args" : + { + "functionArgs" : "SET CMP0012 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:218" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588115 +},{ + "args" : + { + "functionArgs" : "SET CMP0057 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:220" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588118 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588123 +},{ + "args" : + { + "functionArgs" : "_FPHSA_FAILURE_MESSAGE _msg", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:224" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588143 +},{ + "args" : + { + "functionArgs" : "_FPHSA_HANDLE_FAILURE_CONFIG_MODE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:240" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588158 +},{ + "args" : + { + "functionArgs" : "FIND_PACKAGE_CHECK_VERSION version result", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:275" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588167 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588172 +},{ + "args" : + { + "functionArgs" : "FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:375" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588183 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588189 +},{ + "args" : + { + "functionArgs" : "POP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:611" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588215 +},{ + "args" : + { + "functionArgs" : "Git REQUIRED_VARS GIT_EXECUTABLE VERSION_VAR GIT_VERSION_STRING", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake:128" + }, + "cat" : "script", + "name" : "find_package_handle_standard_args", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588218 +},{ + "args" : + { + "functionArgs" : "options CONFIG_MODE HANDLE_COMPONENTS NAME_MISMATCHED HANDLE_VERSION_RANGE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:378" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588248 +},{ + "args" : + { + "functionArgs" : "oneValueArgs FAIL_MESSAGE REASON_FAILURE_MESSAGE VERSION_VAR FOUND_VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:379" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588258 +},{ + "args" : + { + "functionArgs" : "multiValueArgs REQUIRED_VARS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:380" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588267 +},{ + "args" : + { + "functionArgs" : "_KEYWORDS_FOR_EXTENDED_MODE ${options} ${oneValueArgs} ${multiValueArgs}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:383" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588282 +},{ + "args" : + { + "functionArgs" : "FIND _KEYWORDS_FOR_EXTENDED_MODE ${_FIRST_ARG} INDEX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:384" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588285 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588295 +},{ + "args" : + { + "functionArgs" : "FPHSA_NAME_MISMATCHED_override", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:386" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588298 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588303 +},{ + "args" : + { + "functionArgs" : "DEFINED FPHSA_NAME_MISMATCHED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:387" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588313 +},{ + "args" : + { + "functionArgs" : "${INDEX} EQUAL -1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:403" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588317 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588327 +},{ + "args" : + { + "functionArgs" : "FPHSA ${options} ${oneValueArgs} ${multiValueArgs} ${_FIRST_ARG} ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:408" + }, + "cat" : "script", + "name" : "cmake_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588351 +},{ + "args" : + { + "functionArgs" : "FPHSA_UNPARSED_ARGUMENTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:410" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588360 +},{ + "args" : + { + "functionArgs" : "NOT FPHSA_FAIL_MESSAGE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:414" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588369 +},{ + "args" : + { + "functionArgs" : "FPHSA_FAIL_MESSAGE DEFAULT_MSG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:415" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588378 +},{ + "args" : + { + "functionArgs" : "FPHSA_CONFIG_MODE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:420" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588386 +},{ + "args" : + { + "functionArgs" : "NOT FPHSA_REQUIRED_VARS AND NOT FPHSA_HANDLE_COMPONENTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:426" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588390 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588397 +},{ + "args" : + { + "functionArgs" : "DEFINED FPHSA_NAME_MISMATCHED_override", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:431" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588406 +},{ + "args" : + { + "functionArgs" : "DEFINED CMAKE_FIND_PACKAGE_NAME AND NOT FPHSA_NAME_MISMATCHED AND NOT _NAME STREQUAL CMAKE_FIND_PACKAGE_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:435" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588420 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FIND_VERSION_RANGE AND NOT FPHSA_HANDLE_VERSION_RANGE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:446" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588423 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588442 +},{ + "args" : + { + "functionArgs" : "_CMAKE_FPHSA_PACKAGE_NAME ${_NAME}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:454" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588452 +},{ + "args" : + { + "functionArgs" : "x${FPHSA_FAIL_MESSAGE} STREQUAL xDEFAULT_MSG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:458" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588456 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588463 +},{ + "args" : + { + "functionArgs" : "FPHSA_FAIL_MESSAGE Could NOT find ${_NAME}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:459" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588467 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588474 +},{ + "args" : + { + "functionArgs" : "FPHSA_REQUIRED_VARS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:462" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588477 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588482 +},{ + "args" : + { + "functionArgs" : "GET FPHSA_REQUIRED_VARS 0 _FIRST_REQUIRED_VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:463" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588485 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588492 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_NAME} _NAME_UPPER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:466" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588495 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588502 +},{ + "args" : + { + "functionArgs" : "TOLOWER ${_NAME} _NAME_LOWER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:467" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588512 +},{ + "args" : + { + "functionArgs" : "FPHSA_FOUND_VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:469" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588520 +},{ + "args" : + { + "functionArgs" : "_FOUND_VAR ${_NAME_UPPER}_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:478" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588531 +},{ + "args" : + { + "functionArgs" : "MISSING_VARS ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588541 +},{ + "args" : + { + "functionArgs" : "DETAILS ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:484" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588549 +},{ + "args" : + { + "functionArgs" : "FPHSA_FOUND_${_NAME} TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:486" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588552 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588559 +},{ + "args" : + { + "functionArgs" : "_CURRENT_VAR ${FPHSA_REQUIRED_VARS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:487" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588568 +},{ + "args" : + { + "functionArgs" : "NOT ${_CURRENT_VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:488" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588579 +},{ + "args" : + { + "functionArgs" : "APPEND DETAILS [${${_CURRENT_VAR}}]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:492" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588591 +},{ + "args" : + { + "functionArgs" : "FPHSA_FOUND_${_NAME}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:495" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588602 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FOUND TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:496" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588605 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588612 +},{ + "args" : + { + "functionArgs" : "${_NAME_UPPER}_FOUND TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:497" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588615 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588621 +},{ + "args" : + { + "functionArgs" : "FOUND_COMPONENTS_MSG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:504" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588629 +},{ + "args" : + { + "functionArgs" : "MISSING_COMPONENTS_MSG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:505" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588636 +},{ + "args" : + { + "functionArgs" : "FPHSA_HANDLE_COMPONENTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:507" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588644 +},{ + "args" : + { + "functionArgs" : "VERSION_MSG ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:535" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588649 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588654 +},{ + "args" : + { + "functionArgs" : "VERSION_OK TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:536" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588662 +},{ + "args" : + { + "functionArgs" : "DEFINED ${_NAME}_FIND_VERSION", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:540" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588672 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588681 +},{ + "args" : + { + "functionArgs" : "DEFINED ${FPHSA_VERSION_VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:567" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588712 +},{ + "args" : + { + "functionArgs" : "VERSION_MSG (found version \\\"${${FPHSA_VERSION_VAR}}\\\")", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:568" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588725 +},{ + "args" : + { + "functionArgs" : "VERSION_OK", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:572" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588734 +},{ + "args" : + { + "functionArgs" : "APPEND DETAILS [v${${FPHSA_VERSION_VAR}}(${${_NAME}_FIND_VERSION})]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:573" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588747 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:580" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588751 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588757 +},{ + "args" : + { + "functionArgs" : "${_NAME} Found ${_NAME}: ${${_FIRST_REQUIRED_VAR}} ${VERSION_MSG} ${COMPONENT_MSG} ${DETAILS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:581" + }, + "cat" : "script", + "name" : "find_package_message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588762 +},{ + "args" : + { + "functionArgs" : "NOT ${pkg}_FIND_QUIETLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:35" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588789 +},{ + "args" : + { + "functionArgs" : "REPLACE \\n details ${details}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:36" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588801 +},{ + "args" : + { + "functionArgs" : "DETAILS_VAR FIND_PACKAGE_MESSAGE_DETAILS_${pkg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:37" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588812 +},{ + "args" : + { + "functionArgs" : "NOT ${details} STREQUAL ${${DETAILS_VAR}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:38" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588815 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588845 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FOUND ${${_NAME}_FOUND} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:606" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588858 +},{ + "args" : + { + "functionArgs" : "${_NAME_UPPER}_FOUND ${${_NAME}_FOUND} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:607" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588869 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588905 +},{ + "args" : + { + "functionArgs" : "Threads REQUIRED", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:7" + }, + "cat" : "script", + "name" : "find_package", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003588909 +},{ + "args" : + { + "functionArgs" : "CheckLibraryExists", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:54" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589085 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckLibraryExists.cmake:41" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589167 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589177 +},{ + "args" : + { + "functionArgs" : "CHECK_LIBRARY_EXISTS LIBRARY FUNCTION LOCATION VARIABLE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckLibraryExists.cmake:43" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589188 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589199 +},{ + "args" : + { + "functionArgs" : "Threads_FOUND FALSE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:55" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589209 +},{ + "args" : + { + "functionArgs" : "CMAKE_REQUIRED_QUIET_SAVE ${CMAKE_REQUIRED_QUIET}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:56" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589220 +},{ + "args" : + { + "functionArgs" : "CMAKE_REQUIRED_QUIET ${Threads_FIND_QUIETLY}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:57" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589230 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_LOADED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:59" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589239 +},{ + "args" : + { + "functionArgs" : "CheckIncludeFile", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:60" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589243 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckIncludeFile.cmake:41" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589342 +},{ + "args" : + { + "functionArgs" : "CHECK_INCLUDE_FILE INCLUDE VARIABLE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckIncludeFile.cmake:43" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589373 +},{ + "args" : + { + "functionArgs" : "CheckCSourceCompiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:61" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589377 +},{ + "args" : + { + "functionArgs" : "GLOBAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake:48" + }, + "cat" : "script", + "name" : "include_guard", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589474 +},{ + "args" : + { + "functionArgs" : "PTHREAD_C_CXX_TEST_SOURCE #include \n\nstatic void* test_func(void* data)\n{\n return data;\n}\n\nint main(void)\n{\n pthread_t thread;\n pthread_create(&thread, NULL, test_func, NULL);\n pthread_detach(thread);\n pthread_cancel(thread);\n pthread_join(thread, NULL);\n pthread_atfork(NULL, NULL, NULL);\n pthread_exit(NULL);\n\n return 0;\n}\n", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:70" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589487 +},{ + "args" : + { + "functionArgs" : "_threads_check_libc", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:94" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589491 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589496 +},{ + "args" : + { + "functionArgs" : "_threads_check_lib LIBNAME FUNCNAME VARNAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:110" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589519 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589525 +},{ + "args" : + { + "functionArgs" : "_threads_check_flag_pthread", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:122" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589537 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:163" + }, + "cat" : "script", + "name" : "_threads_check_libc", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589544 +},{ + "args" : + { + "functionArgs" : "NOT Threads_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:95" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589578 +},{ + "args" : + { + "functionArgs" : "CMAKE_C_COMPILER_LOADED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:96" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589591 +},{ + "args" : + { + "functionArgs" : "${PTHREAD_C_CXX_TEST_SOURCE} CMAKE_HAVE_LIBC_PTHREAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:97" + }, + "cat" : "script", + "name" : "check_c_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589595 +},{ + "args" : + { + "functionArgs" : "C #include \n\nstatic void* test_func(void* data)\n{\n return data;\n}\n\nint main(void)\n{\n pthread_t thread;\n pthread_create(&thread, NULL, test_func, NULL);\n pthread_detach(thread);\n pthread_cancel(thread);\n pthread_join(thread, NULL);\n pthread_atfork(NULL, NULL, NULL);\n pthread_exit(NULL);\n\n return 0;\n}\n CMAKE_HAVE_LIBC_PTHREAD ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake:52" + }, + "cat" : "script", + "name" : "cmake_check_source_compiles", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589609 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED ${_var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:11" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589636 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589663 +},{ + "args" : + { + "functionArgs" : "CMAKE_HAVE_LIBC_PTHREAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:101" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589674 +},{ + "args" : + { + "functionArgs" : "CMAKE_THREAD_LIBS_INIT ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:102" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589678 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589698 +},{ + "args" : + { + "functionArgs" : "Threads_FOUND TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:103" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589701 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589707 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589710 +},{ + "args" : + { + "functionArgs" : "THREADS_PREFER_PTHREAD_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:168" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589719 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM MATCHES GHS-MULTI", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:172" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589731 +},{ + "args" : + { + "functionArgs" : "pthreads pthread_create CMAKE_HAVE_PTHREADS_CREATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:175" + }, + "cat" : "script", + "name" : "_threads_check_lib", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589734 +},{ + "args" : + { + "functionArgs" : "NOT Threads_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:111" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589755 +},{ + "args" : + { + "functionArgs" : "pthread pthread_create CMAKE_HAVE_PTHREAD_CREATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:176" + }, + "cat" : "script", + "name" : "_threads_check_lib", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589759 +},{ + "args" : + { + "functionArgs" : "NOT Threads_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:111" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589777 +},{ + "args" : + { + "functionArgs" : "NOT THREADS_PREFER_PTHREAD_FLAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:178" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589780 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589796 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:179" + }, + "cat" : "script", + "name" : "_threads_check_flag_pthread", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589800 +},{ + "args" : + { + "functionArgs" : "NOT Threads_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:123" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589812 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589822 +},{ + "args" : + { + "functionArgs" : "CMAKE_THREAD_LIBS_INIT OR CMAKE_HAVE_LIBC_PTHREAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:182" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589833 +},{ + "args" : + { + "functionArgs" : "CMAKE_USE_PTHREADS_INIT 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:183" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589842 +},{ + "args" : + { + "functionArgs" : "Threads_FOUND TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:184" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589851 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_NAME MATCHES Windows", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:187" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589854 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589861 +},{ + "args" : + { + "functionArgs" : "CMAKE_USE_PTHREADS_INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:192" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589884 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_NAME MATCHES HP-UX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:193" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589894 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM MATCHES OSF1-V", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:211" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589899 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589905 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM MATCHES CYGWIN_NT OR CMAKE_SYSTEM MATCHES MSYS_NT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:216" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589908 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589917 +},{ + "args" : + { + "functionArgs" : "CMAKE_REQUIRED_QUIET ${CMAKE_REQUIRED_QUIET_SAVE}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:224" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589928 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:225" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003589931 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:213" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590279 +},{ + "args" : + { + "functionArgs" : "find_package_message pkg msg details", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:33" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590340 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590350 +},{ + "args" : + { + "functionArgs" : "PUSH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:216" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590360 +},{ + "args" : + { + "functionArgs" : "SET CMP0012 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:218" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590369 +},{ + "args" : + { + "functionArgs" : "SET CMP0057 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:220" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590377 +},{ + "args" : + { + "functionArgs" : "_FPHSA_FAILURE_MESSAGE _msg", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:224" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590380 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590386 +},{ + "args" : + { + "functionArgs" : "_FPHSA_HANDLE_FAILURE_CONFIG_MODE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:240" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590406 +},{ + "args" : + { + "functionArgs" : "FIND_PACKAGE_CHECK_VERSION version result", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:275" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590421 +},{ + "args" : + { + "functionArgs" : "FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:375" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590441 +},{ + "args" : + { + "functionArgs" : "POP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:611" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590509 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590517 +},{ + "args" : + { + "functionArgs" : "Threads DEFAULT_MSG Threads_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:226" + }, + "cat" : "script", + "name" : "find_package_handle_standard_args", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590521 +},{ + "args" : + { + "functionArgs" : "options CONFIG_MODE HANDLE_COMPONENTS NAME_MISMATCHED HANDLE_VERSION_RANGE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:378" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590557 +},{ + "args" : + { + "functionArgs" : "oneValueArgs FAIL_MESSAGE REASON_FAILURE_MESSAGE VERSION_VAR FOUND_VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:379" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590569 +},{ + "args" : + { + "functionArgs" : "multiValueArgs REQUIRED_VARS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:380" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590578 +},{ + "args" : + { + "functionArgs" : "_KEYWORDS_FOR_EXTENDED_MODE ${options} ${oneValueArgs} ${multiValueArgs}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:383" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590582 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590593 +},{ + "args" : + { + "functionArgs" : "FIND _KEYWORDS_FOR_EXTENDED_MODE ${_FIRST_ARG} INDEX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:384" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590597 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590607 +},{ + "args" : + { + "functionArgs" : "FPHSA_NAME_MISMATCHED_override", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:386" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590616 +},{ + "args" : + { + "functionArgs" : "DEFINED FPHSA_NAME_MISMATCHED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:387" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590620 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590627 +},{ + "args" : + { + "functionArgs" : "${INDEX} EQUAL -1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:403" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590641 +},{ + "args" : + { + "functionArgs" : "FPHSA_FAIL_MESSAGE ${_FIRST_ARG}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:404" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590653 +},{ + "args" : + { + "functionArgs" : "FPHSA_REQUIRED_VARS ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:405" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590664 +},{ + "args" : + { + "functionArgs" : "FPHSA_VERSION_VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:406" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590672 +},{ + "args" : + { + "functionArgs" : "DEFINED FPHSA_NAME_MISMATCHED_override", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:431" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590683 +},{ + "args" : + { + "functionArgs" : "DEFINED CMAKE_FIND_PACKAGE_NAME AND NOT FPHSA_NAME_MISMATCHED AND NOT _NAME STREQUAL CMAKE_FIND_PACKAGE_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:435" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590698 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FIND_VERSION_RANGE AND NOT FPHSA_HANDLE_VERSION_RANGE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:446" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590711 +},{ + "args" : + { + "functionArgs" : "_CMAKE_FPHSA_PACKAGE_NAME ${_NAME}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:454" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590715 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590722 +},{ + "args" : + { + "functionArgs" : "x${FPHSA_FAIL_MESSAGE} STREQUAL xDEFAULT_MSG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:458" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590734 +},{ + "args" : + { + "functionArgs" : "FPHSA_FAIL_MESSAGE Could NOT find ${_NAME}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:459" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590745 +},{ + "args" : + { + "functionArgs" : "FPHSA_REQUIRED_VARS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:462" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590754 +},{ + "args" : + { + "functionArgs" : "GET FPHSA_REQUIRED_VARS 0 _FIRST_REQUIRED_VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:463" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590757 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590764 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${_NAME} _NAME_UPPER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:466" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590775 +},{ + "args" : + { + "functionArgs" : "TOLOWER ${_NAME} _NAME_LOWER", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:467" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590778 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590785 +},{ + "args" : + { + "functionArgs" : "FPHSA_FOUND_VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:469" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590794 +},{ + "args" : + { + "functionArgs" : "_FOUND_VAR ${_NAME_UPPER}_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:478" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590814 +},{ + "args" : + { + "functionArgs" : "MISSING_VARS ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590819 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590824 +},{ + "args" : + { + "functionArgs" : "DETAILS ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:484" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590833 +},{ + "args" : + { + "functionArgs" : "FPHSA_FOUND_${_NAME} TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:486" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590843 +},{ + "args" : + { + "functionArgs" : "_CURRENT_VAR ${FPHSA_REQUIRED_VARS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:487" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590853 +},{ + "args" : + { + "functionArgs" : "NOT ${_CURRENT_VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:488" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590858 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590865 +},{ + "args" : + { + "functionArgs" : "APPEND DETAILS [${${_CURRENT_VAR}}]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:492" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590878 +},{ + "args" : + { + "functionArgs" : "FPHSA_FOUND_${_NAME}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:495" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590882 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590889 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FOUND TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:496" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590893 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590899 +},{ + "args" : + { + "functionArgs" : "${_NAME_UPPER}_FOUND TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:497" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590909 +},{ + "args" : + { + "functionArgs" : "FOUND_COMPONENTS_MSG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:504" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590918 +},{ + "args" : + { + "functionArgs" : "MISSING_COMPONENTS_MSG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:505" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590926 +},{ + "args" : + { + "functionArgs" : "FPHSA_HANDLE_COMPONENTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:507" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590935 +},{ + "args" : + { + "functionArgs" : "VERSION_MSG ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:535" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590945 +},{ + "args" : + { + "functionArgs" : "VERSION_OK TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:536" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590953 +},{ + "args" : + { + "functionArgs" : "DEFINED ${_NAME}_FIND_VERSION", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:540" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590964 +},{ + "args" : + { + "functionArgs" : "DEFINED ${FPHSA_VERSION_VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:567" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590976 +},{ + "args" : + { + "functionArgs" : "VERSION_OK", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:572" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590986 +},{ + "args" : + { + "functionArgs" : "APPEND DETAILS [v${${FPHSA_VERSION_VAR}}(${${_NAME}_FIND_VERSION})]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:573" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003590989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591000 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FOUND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:580" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591003 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591010 +},{ + "args" : + { + "functionArgs" : "${_NAME} Found ${_NAME}: ${${_FIRST_REQUIRED_VAR}} ${VERSION_MSG} ${COMPONENT_MSG} ${DETAILS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:581" + }, + "cat" : "script", + "name" : "find_package_message", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591014 +},{ + "args" : + { + "functionArgs" : "NOT ${pkg}_FIND_QUIETLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:35" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591042 +},{ + "args" : + { + "functionArgs" : "REPLACE \\n details ${details}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:36" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591055 +},{ + "args" : + { + "functionArgs" : "DETAILS_VAR FIND_PACKAGE_MESSAGE_DETAILS_${pkg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:37" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591066 +},{ + "args" : + { + "functionArgs" : "NOT ${details} STREQUAL ${${DETAILS_VAR}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake:38" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591093 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591098 +},{ + "args" : + { + "functionArgs" : "${_NAME}_FOUND ${${_NAME}_FOUND} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:606" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591112 +},{ + "args" : + { + "functionArgs" : "${_NAME_UPPER}_FOUND ${${_NAME}_FOUND} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:607" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591131 +},{ + "args" : + { + "functionArgs" : "THREADS_FOUND AND NOT TARGET Threads::Threads", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:228" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591144 +},{ + "args" : + { + "functionArgs" : "Threads::Threads INTERFACE IMPORTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:229" + }, + "cat" : "script", + "name" : "add_library", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591169 +},{ + "args" : + { + "functionArgs" : "THREADS_HAVE_PTHREAD_ARG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:231" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591173 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591180 +},{ + "args" : + { + "functionArgs" : "CMAKE_THREAD_LIBS_INIT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake:237" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591184 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591189 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591208 +},{ + "args" : + { + "functionArgs" : "googletest PREFIX vendor/gtm GIT_REPOSITORY https://github.com/google/googletest.git GIT_TAG release-1.8.0 TIMEOUT 10 CONFIGURE_COMMAND BUILD_COMMAND INSTALL_COMMAND UPDATE_COMMAND ", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:10" + }, + "cat" : "script", + "name" : "externalproject_add", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591214 +},{ + "args" : + { + "functionArgs" : "GET CMP0097 _EP_CMP0097 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4091" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591241 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591248 +},{ + "args" : + { + "functionArgs" : "GET CMP0114 cmp0114 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4094" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591258 +},{ + "args" : + { + "functionArgs" : "CMAKE_XCODE_BUILD_SYSTEM VERSION_GREATER_EQUAL 12 AND NOT cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4097" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591273 +},{ + "args" : + { + "functionArgs" : "GET CMP0135 _EP_CMP0135 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4110" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591283 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4114" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591286 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591303 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591313 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591317 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591323 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591340 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4117" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591351 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4118" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591355 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591367 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591375 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591378 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591394 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591404 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591408 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591424 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591429 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591441 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591445 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591454 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591466 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591470 +},{ + "args" : + { + "functionArgs" : "PUSH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4120" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591479 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4121" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591489 +},{ + "args" : + { + "functionArgs" : "${name} ALL DEPENDS ${complete_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4129" + }, + "cat" : "script", + "name" : "add_custom_target", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591493 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591522 +},{ + "args" : + { + "functionArgs" : "POP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4130" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591526 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591532 +},{ + "args" : + { + "functionArgs" : "${name} PROPERTIES _EP_IS_EXTERNAL_PROJECT 1 LABELS ${name} FOLDER ExternalProjectTargets/${name} _EP_CMP0114 ${cmp0114}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4131" + }, + "cat" : "script", + "name" : "set_target_properties", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591536 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591549 +},{ + "args" : + { + "functionArgs" : "keywords PREFIX TMP_DIR STAMP_DIR LOG_DIR DOWNLOAD_DIR SOURCE_DIR BINARY_DIR INSTALL_DIR DOWNLOAD_COMMAND URL URL_HASH URL_MD5 DOWNLOAD_NAME DOWNLOAD_EXTRACT_TIMESTAMP DOWNLOAD_NO_EXTRACT DOWNLOAD_NO_PROGRESS TIMEOUT INACTIVITY_TIMEOUT HTTP_USERNAME HTTP_PASSWORD HTTP_HEADER TLS_VERIFY TLS_CAINFO NETRC NETRC_FILE GIT_REPOSITORY GIT_TAG GIT_REMOTE_NAME GIT_SUBMODULES GIT_SUBMODULES_RECURSE GIT_SHALLOW GIT_PROGRESS GIT_CONFIG GIT_REMOTE_UPDATE_STRATEGY SVN_REPOSITORY SVN_REVISION SVN_USERNAME SVN_PASSWORD SVN_TRUST_CERT HG_REPOSITORY HG_TAG CVS_REPOSITORY CVS_MODULE CVS_TAG UPDATE_COMMAND UPDATE_DISCONNECTED PATCH_COMMAND CONFIGURE_COMMAND CMAKE_COMMAND CMAKE_GENERATOR CMAKE_GENERATOR_PLATFORM CMAKE_GENERATOR_TOOLSET CMAKE_GENERATOR_INSTANCE CMAKE_ARGS CMAKE_CACHE_ARGS CMAKE_CACHE_DEFAULT_ARGS SOURCE_SUBDIR CONFIGURE_HANDLED_BY_BUILD BUILD_COMMAND BUILD_IN_SOURCE BUILD_ALWAYS BUILD_BYPRODUCTS INSTALL_COMMAND INSTALL_BYPRODUCTS TEST_COMMAND TEST_BEFORE_INSTALL TEST_AFTER_INSTALL TEST_EXCLUDE_FROM_MAIN LOG_DOWNLOAD LOG_UPDATE LOG_PATCH LOG_CONFIGURE LOG_BUILD LOG_INSTALL LOG_TEST LOG_MERGED_STDOUTERR LOG_OUTPUT_ON_FAILURE USES_TERMINAL_DOWNLOAD USES_TERMINAL_UPDATE USES_TERMINAL_PATCH USES_TERMINAL_CONFIGURE USES_TERMINAL_BUILD USES_TERMINAL_INSTALL USES_TERMINAL_TEST DEPENDS EXCLUDE_FROM_ALL STEP_TARGETS INDEPENDENT_STEP_TARGETS LIST_SEPARATOR EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4138" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591561 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591599 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add ${keywords} ${name} _EP_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4274" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591604 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591631 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591635 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591643 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591649 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591655 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591689 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591713 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591724 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591734 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591746 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591750 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591756 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591783 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591793 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591803 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591814 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591818 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591830 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591841 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591867 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591888 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591898 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591907 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591919 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591923 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591928 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591932 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591964 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591975 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591984 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591995 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003591999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592018 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592024 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592043 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592082 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592102 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592106 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592111 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592115 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592120 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592130 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592139 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592162 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592171 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592180 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592184 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592190 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592194 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592204 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592214 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592238 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592257 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592266 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592274 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592285 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592289 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592294 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592327 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592337 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592345 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592356 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592360 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592370 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592380 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592384 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592404 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592408 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592422 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592431 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592440 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592450 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592459 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592482 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592491 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592495 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592500 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592510 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592529 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592533 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592538 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592542 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592552 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592562 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592566 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592586 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592605 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592614 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592617 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592622 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592636 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592644 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592653 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592696 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592726 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592735 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592746 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592774 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592782 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592815 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592826 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592865 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592869 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592897 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592906 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592915 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592925 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592934 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592957 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592961 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592966 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592974 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592985 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003592998 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593006 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593010 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593026 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593045 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593070 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593074 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593090 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593093 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593099 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593102 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593107 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593112 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593118 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593126 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593130 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593149 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593158 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593167 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593177 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593190 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593193 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593198 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593211 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593219 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4281" + }, + "cat" : "script", + "name" : "_ep_set_directories", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593223 +},{ + "args" : + { + "functionArgs" : "prefix TARGET ${name} PROPERTY _EP_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1641" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593251 +},{ + "args" : + { + "functionArgs" : "NOT prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1642" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593255 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593261 +},{ + "args" : + { + "functionArgs" : "prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1651" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593265 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593270 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${prefix} prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1652" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593291 +},{ + "args" : + { + "functionArgs" : "tmp_default ${prefix}/tmp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1653" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593295 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593303 +},{ + "args" : + { + "functionArgs" : "download_default ${prefix}/src", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1654" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593313 +},{ + "args" : + { + "functionArgs" : "source_default ${prefix}/src/${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1655" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593324 +},{ + "args" : + { + "functionArgs" : "binary_default ${prefix}/src/${name}-build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1656" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593335 +},{ + "args" : + { + "functionArgs" : "stamp_default ${prefix}/src/${name}-stamp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1657" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593345 +},{ + "args" : + { + "functionArgs" : "install_default ${prefix}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1658" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593364 +},{ + "args" : + { + "functionArgs" : "build_in_source TARGET ${name} PROPERTY _EP_BUILD_IN_SOURCE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1668" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593369 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593377 +},{ + "args" : + { + "functionArgs" : "build_in_source", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1669" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593387 +},{ + "args" : + { + "functionArgs" : "top ${CMAKE_CURRENT_BINARY_DIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1677" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593390 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593397 +},{ + "args" : + { + "functionArgs" : "places stamp download source binary install tmp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1680" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593407 +},{ + "args" : + { + "functionArgs" : "var ${places}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1681" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593417 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593422 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593429 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593442 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593445 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593452 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593456 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593463 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593466 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593474 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593477 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593488 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593532 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593546 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593570 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593573 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593582 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593592 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593604 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593615 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593628 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593640 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593653 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593663 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593666 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593683 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593694 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593705 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593716 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593729 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593741 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593754 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593757 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593763 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593775 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593778 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593785 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593796 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593799 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593806 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593819 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593830 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593843 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593852 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593864 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593874 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593885 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593889 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593896 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593899 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593909 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593920 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593924 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593933 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593943 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593963 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593974 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593985 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593995 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003593998 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594008 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594011 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594020 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594023 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594032 +},{ + "args" : + { + "functionArgs" : "log_dir TARGET ${name} PROPERTY _EP_LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1695" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594044 +},{ + "args" : + { + "functionArgs" : "NOT log_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1696" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594053 +},{ + "args" : + { + "functionArgs" : "log_dir TARGET ${name} PROPERTY _EP_STAMP_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1697" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594063 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${log_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1699" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594073 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${log_dir} log_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1702" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594084 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_LOG_DIR ${log_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1703" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594095 +},{ + "args" : + { + "functionArgs" : "source_subdir TARGET ${name} PROPERTY _EP_SOURCE_SUBDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1705" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594105 +},{ + "args" : + { + "functionArgs" : "NOT source_subdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1706" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594114 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_SOURCE_SUBDIR ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1707" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594118 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594125 +},{ + "args" : + { + "functionArgs" : "build_in_source", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1718" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594134 +},{ + "args" : + { + "functionArgs" : "script_filename ${tmp_dir}/${name}-mkdirs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1737" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594138 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594146 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/mkdirs.cmake.in ${script_filename} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1738" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594150 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594268 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1743" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594281 +},{ + "args" : + { + "functionArgs" : "${script_filename}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1744" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594284 +},{ + "args" : + { + "functionArgs" : "VERSION 3.5", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake:4" + }, + "cat" : "script", + "name" : "cmake_minimum_required", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594333 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594373 +},{ + "args" : + { + "functionArgs" : "MAKE_DIRECTORY /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake:6" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594378 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594417 +},{ + "args" : + { + "functionArgs" : "configSubDirs", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake:16" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594426 +},{ + "args" : + { + "functionArgs" : "subDir IN LISTS configSubDirs", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake:17" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594436 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake:20" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594454 +},{ + "args" : + { + "functionArgs" : "${name} done done_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4282" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594458 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594472 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594485 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594493 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594497 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594504 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594517 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594527 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594539 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594542 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594554 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594557 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594572 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594582 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594591 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594602 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594605 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594617 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594620 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594632 +},{ + "args" : + { + "functionArgs" : "${name} install install_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4283" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594635 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594646 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594663 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594674 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594678 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594696 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594706 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594710 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594718 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594721 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594733 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594736 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594750 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594753 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594760 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594763 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594768 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594782 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594785 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594794 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594808 +},{ + "args" : + { + "functionArgs" : "exclude_from_all TARGET ${name} PROPERTY _EP_EXCLUDE_FROM_ALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4286" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594812 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594819 +},{ + "args" : + { + "functionArgs" : "exclude_from_all", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4290" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594828 +},{ + "args" : + { + "functionArgs" : "repo TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4294" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594831 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594838 +},{ + "args" : + { + "functionArgs" : "NOT repo STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4295" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594842 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594848 +},{ + "args" : + { + "functionArgs" : "GET CMP0150 cmp0150 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4296" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594859 +},{ + "args" : + { + "functionArgs" : "source_dir TARGET ${name} PROPERTY _EP_SOURCE_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4299" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594889 +},{ + "args" : + { + "functionArgs" : "work_dir ${source_dir} PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4300" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594899 +},{ + "args" : + { + "functionArgs" : "resolved_git_repository ${repo} ${cmp0150} ${work_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4301" + }, + "cat" : "script", + "name" : "_ep_resolve_git_remote", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594903 +},{ + "args" : + { + "functionArgs" : "git_repository STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:145" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594925 +},{ + "args" : + { + "functionArgs" : "_git_repository_is_relative ${git_repository}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:150" + }, + "cat" : "script", + "name" : "_ep_is_relative_git_remote", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594928 +},{ + "args" : + { + "functionArgs" : "remote_url MATCHES ^\\\\.\\\\./", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:79" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594948 +},{ + "args" : + { + "functionArgs" : "${output_variable} FALSE PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:82" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594952 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594958 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594975 +},{ + "args" : + { + "functionArgs" : "NOT _git_repository_is_relative", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:152" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594993 +},{ + "args" : + { + "functionArgs" : "${output_variable} ${git_repository} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:153" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003594997 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595004 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:154" + }, + "cat" : "script", + "name" : "return", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595007 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595011 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595015 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_GIT_REPOSITORY ${resolved_git_repository}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4302" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595018 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595028 +},{ + "args" : + { + "functionArgs" : "complete_outputs ${complete_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4314" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595038 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Ninja", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4315" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595051 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${complete_outputs} COMMENT Completed '${name}' COMMAND ${CMAKE_COMMAND} -E make_directory ${cmf_dir}${cfgdir} COMMAND ${CMAKE_COMMAND} -E touch ${complete_stamp_file} COMMAND ${CMAKE_COMMAND} -E touch ${done_stamp_file} DEPENDS ${install_stamp_file} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4319" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595094 +},{ + "args" : + { + "functionArgs" : "deps TARGET ${name} PROPERTY _EP_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4330" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595107 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4334" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595111 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595117 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4344" + }, + "cat" : "script", + "name" : "_ep_add_mkdir_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595121 +},{ + "args" : + { + "functionArgs" : "${name} tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2691" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595132 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595151 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595156 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595162 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595174 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595184 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595188 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595196 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595199 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595211 +},{ + "args" : + { + "functionArgs" : "script_filename ${tmp_dir}/${name}-mkdirs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2692" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595222 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2693" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595225 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595240 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595243 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595249 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595257 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595272 +},{ + "args" : + { + "functionArgs" : "${name} mkdir INDEPENDENT TRUE COMMENT Creating directories for '${name}' COMMAND ${CMAKE_COMMAND} -Dcfgdir=${cfgdir} -P ${script_filename}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2695" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595276 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595320 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595328 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595332 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595351 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595354 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595369 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595379 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595387 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595391 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595402 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595414 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595424 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595428 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595431 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595442 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595453 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595459 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595464 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595471 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595483 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595492 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595496 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595504 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595507 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595519 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595522 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595536 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595545 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595554 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595568 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595571 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595589 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595607 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595619 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595622 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595638 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595643 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595653 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595658 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595664 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595694 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595706 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595710 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595715 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595724 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595735 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595744 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595770 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595774 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595779 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595788 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595792 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595798 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595813 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595818 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595823 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595848 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595859 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595867 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595876 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595880 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595895 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595899 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595905 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595909 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595929 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595938 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595942 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595947 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595957 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595961 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595971 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595981 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003595985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596081 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596116 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596126 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596134 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596139 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596146 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596149 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596154 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596208 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596218 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596227 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596231 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596256 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596271 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596299 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596305 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596348 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596357 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596366 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596395 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596411 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596423 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596428 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596434 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596459 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596468 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596472 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596478 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596488 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596492 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596514 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596526 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596552 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596562 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596566 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596571 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596582 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596586 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596603 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596607 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596635 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596667 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596671 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596681 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596691 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596707 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596737 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596741 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596750 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596754 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596760 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596765 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596773 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596795 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596808 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596820 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596824 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596829 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596842 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596851 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596863 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596874 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596885 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596895 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596898 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596917 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596928 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596944 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596954 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596959 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596967 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596980 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596983 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596991 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003596994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597003 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597006 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597013 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597016 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597025 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597028 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597035 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597047 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597050 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597066 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597079 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597082 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597089 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597100 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597111 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597123 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597133 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597136 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597144 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597179 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597196 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597200 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597208 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597255 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597265 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597276 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597280 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597286 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597298 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597308 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597319 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597329 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597340 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597350 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597361 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597371 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597391 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597402 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597413 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597424 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597433 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597438 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597441 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597450 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597453 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597458 +},{ + "args" : + { + "functionArgs" : "comment TARGET ${name} PROPERTY _EP_${step}_COMMENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2469" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597469 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597480 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597484 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597489 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597492 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597498 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597501 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597509 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597517 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597531 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597542 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597552 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597562 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597570 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597574 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597580 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597592 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597601 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597605 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597611 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597614 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597620 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597624 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597701 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597715 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597726 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597736 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597740 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597747 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597750 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597756 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597768 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597778 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597788 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597792 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597798 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597810 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597814 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597828 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4345" + }, + "cat" : "script", + "name" : "_ep_add_download_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597831 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir download_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2747" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597863 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597886 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597890 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597897 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597910 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597919 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597923 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597931 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597935 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597942 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597952 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597955 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597973 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597983 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597995 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003597998 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598005 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598008 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598016 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598027 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598036 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598040 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598048 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598058 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598067 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598078 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598086 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598098 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598101 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598113 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2754" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598124 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2755" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598134 +},{ + "args" : + { + "functionArgs" : "cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2756" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598144 +},{ + "args" : + { + "functionArgs" : "svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2757" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598155 +},{ + "args" : + { + "functionArgs" : "git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2758" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598165 +},{ + "args" : + { + "functionArgs" : "hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2759" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598175 +},{ + "args" : + { + "functionArgs" : "url TARGET ${name} PROPERTY _EP_URL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2760" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598184 +},{ + "args" : + { + "functionArgs" : "fname TARGET ${name} PROPERTY _EP_DOWNLOAD_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2761" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598194 +},{ + "args" : + { + "functionArgs" : "REGEX REPLACE file:// url ${url}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2764" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598206 +},{ + "args" : + { + "functionArgs" : "depends", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2766" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598223 +},{ + "args" : + { + "functionArgs" : "comment", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2767" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598227 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598232 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2768" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598239 +},{ + "args" : + { + "functionArgs" : "extra_repo_info", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2769" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598246 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2771" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598249 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598255 +},{ + "args" : + { + "functionArgs" : "method git", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2845" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598280 +},{ + "args" : + { + "functionArgs" : "NOT GIT_EXECUTABLE OR NOT GIT_VERSION_STRING", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2847" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598291 +},{ + "args" : + { + "functionArgs" : "git_submodules_recurse", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2855" + }, + "cat" : "script", + "name" : "_ep_get_git_submodules_recurse", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598295 +},{ + "args" : + { + "functionArgs" : "git_submodules_recurse_set TARGET ${name} PROPERTY _EP_GIT_SUBMODULES_RECURSE SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2716" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598315 +},{ + "args" : + { + "functionArgs" : "NOT git_submodules_recurse_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2721" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598324 +},{ + "args" : + { + "functionArgs" : "recurseFlag --recursive", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2722" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598334 +},{ + "args" : + { + "functionArgs" : "${git_submodules_recurse} ${recurseFlag} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2734" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598337 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598345 +},{ + "args" : + { + "functionArgs" : "recurseFlag AND GIT_VERSION_STRING VERSION_LESS 1.6.5", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2737" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598356 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598360 +},{ + "args" : + { + "functionArgs" : "git_tag TARGET ${name} PROPERTY _EP_GIT_TAG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2857" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598370 +},{ + "args" : + { + "functionArgs" : "NOT git_tag", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2858" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598379 +},{ + "args" : + { + "functionArgs" : "git_init_submodules TRUE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2862" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598388 +},{ + "args" : + { + "functionArgs" : "git_submodules_set TARGET ${name} PROPERTY _EP_GIT_SUBMODULES SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2863" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598391 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598398 +},{ + "args" : + { + "functionArgs" : "git_submodules_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2867" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598406 +},{ + "args" : + { + "functionArgs" : "git_remote_name TARGET ${name} PROPERTY _EP_GIT_REMOTE_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2874" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598417 +},{ + "args" : + { + "functionArgs" : "NOT git_remote_name", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2875" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598420 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598426 +},{ + "args" : + { + "functionArgs" : "git_remote_name origin", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2876" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598429 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598434 +},{ + "args" : + { + "functionArgs" : "tls_verify TARGET ${name} PROPERTY _EP_TLS_VERIFY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2879" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598444 +},{ + "args" : + { + "functionArgs" : "x${tls_verify} STREQUAL x AND DEFINED CMAKE_TLS_VERIFY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2880" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598457 +},{ + "args" : + { + "functionArgs" : "git_shallow TARGET ${name} PROPERTY _EP_GIT_SHALLOW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2883" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598468 +},{ + "args" : + { + "functionArgs" : "git_progress TARGET ${name} PROPERTY _EP_GIT_PROGRESS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2884" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598486 +},{ + "args" : + { + "functionArgs" : "git_config TARGET ${name} PROPERTY _EP_GIT_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2885" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598517 +},{ + "args" : + { + "functionArgs" : "GIT_VERSION_STRING VERSION_GREATER_EQUAL 1.7.7", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2889" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598527 +},{ + "args" : + { + "functionArgs" : "PREPEND git_config advice.detachedHead=false", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2890" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598537 +},{ + "args" : + { + "functionArgs" : "extra_repo_info repository=${git_repository}\nremote=${git_remote_name}\ninit_submodules=${git_init_submodules}\nrecurse_submodules=${git_submodules_recurse}\nsubmodules=${git_submodules}\nCMP0097=${_EP_CMP0097}\n", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2900" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598540 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598554 +},{ + "args" : + { + "functionArgs" : "src_name ${source_dir} NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2908" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598566 +},{ + "args" : + { + "functionArgs" : "work_dir ${source_dir} PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2909" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598595 +},{ + "args" : + { + "functionArgs" : "${tmp_dir}/${name}-gitclone.cmake ${source_dir} ${GIT_EXECUTABLE} ${git_repository} ${git_tag} ${git_remote_name} ${git_init_submodules} ${git_submodules_recurse} ${git_submodules} ${git_shallow} ${git_progress} ${git_config} ${src_name} ${work_dir} ${stamp_dir}/${name}-gitinfo.txt ${stamp_dir}/${name}-gitclone-lastrun.txt ${tls_verify}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2915" + }, + "cat" : "script", + "name" : "_ep_write_gitclone_script", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598600 +},{ + "args" : + { + "functionArgs" : "NOT GIT_VERSION_STRING VERSION_LESS 1.8.5", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1323" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598669 +},{ + "args" : + { + "functionArgs" : "git_checkout_explicit-- --", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1325" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598679 +},{ + "args" : + { + "functionArgs" : "${git_tag} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1332" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598690 +},{ + "args" : + { + "functionArgs" : "git_submodules_config_options ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1336" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598700 +},{ + "args" : + { + "functionArgs" : "GIT_VERSION_STRING VERSION_LESS 2.20 OR 2.21 VERSION_LESS_EQUAL GIT_VERSION_STRING", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1338" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598703 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598712 +},{ + "args" : + { + "functionArgs" : "git_clone_options --no-checkout", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1340" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598724 +},{ + "args" : + { + "functionArgs" : "git_shallow", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1344" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598733 +},{ + "args" : + { + "functionArgs" : "git_progress", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1351" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598742 +},{ + "args" : + { + "functionArgs" : "config IN LISTS git_config", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1354" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598752 +},{ + "args" : + { + "functionArgs" : "APPEND git_clone_options --config \\\"${config}\\\"", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1355" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598756 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598765 +},{ + "args" : + { + "functionArgs" : "NOT ${git_remote_name} STREQUAL origin", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1357" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598769 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598778 +},{ + "args" : + { + "functionArgs" : "NOT x${tls_verify} STREQUAL x", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1360" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598789 +},{ + "args" : + { + "functionArgs" : "REPLACE ; git_clone_options ${git_clone_options}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1378" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598801 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/gitclone.cmake.in ${script_filename} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1380" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598804 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598979 +},{ + "args" : + { + "functionArgs" : "comment Performing download step (git clone) for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2934" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598995 +},{ + "args" : + { + "functionArgs" : "cmd ${CMAKE_COMMAND} -P ${tmp_dir}/${name}-gitclone.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2935" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003598999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599010 +},{ + "args" : + { + "functionArgs" : "repo_info_file ${stamp_dir}/${name}-${method}info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3194" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599029 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${repo_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3195" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599040 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/RepositoryInfo.txt.in ${repo_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3196" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599137 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_DOWNLOAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3202" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599154 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3206" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599157 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599164 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3209" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599174 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_DOWNLOAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3212" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599186 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3216" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599189 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599195 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3219" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599199 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599205 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3222" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599213 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3223" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599223 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3224" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599227 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599236 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3224" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599247 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3224" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599250 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599257 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(\\${name} download\n INDEPENDENT TRUE\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${work_dir}\n DEPENDS \\${depends}\n DEPENDEES mkdir\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3226" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599261 +},{ + "args" : + { + "functionArgs" : "${name} download INDEPENDENT TRUE COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake WORKING_DIRECTORY ${work_dir} DEPENDS ${depends} DEPENDEES mkdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3226:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599294 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599339 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599343 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599363 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599367 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599394 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599406 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599415 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599452 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599464 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599476 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599480 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599483 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599496 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599515 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599528 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599541 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599558 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599571 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599588 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599591 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599607 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599617 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599627 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599642 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599655 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599671 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599684 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599687 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599704 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599720 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599732 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599744 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599776 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599790 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599794 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599800 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599809 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599814 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599821 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599831 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599863 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599869 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599875 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599880 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599885 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599890 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599897 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599913 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599925 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599951 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599956 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599964 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599973 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599982 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599994 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003599997 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600010 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600037 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600047 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600057 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600092 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600108 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600119 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600144 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600156 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600164 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600173 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600184 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600192 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600196 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600216 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600225 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600234 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600238 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600244 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600258 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600263 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600269 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600292 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600301 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600310 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600320 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600334 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600344 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600351 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600376 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600387 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600391 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600405 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600416 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600420 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600431 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600441 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600445 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600466 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600469 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600477 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600486 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600489 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600494 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600499 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600505 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600509 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600522 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600527 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600547 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600556 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600565 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600575 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600589 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600599 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600623 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600627 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600634 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600638 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600643 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600652 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600662 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600666 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600671 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600694 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600703 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600722 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600755 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600770 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600781 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600812 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600825 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600829 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600834 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600843 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600855 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600864 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600888 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600897 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600907 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600911 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600917 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600932 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600940 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600953 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600964 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600977 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600987 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003600990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601003 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601007 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601016 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601030 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601051 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601066 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601078 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601082 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601090 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601093 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601103 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601107 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601112 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601119 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601128 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601132 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601146 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601167 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601172 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601179 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601183 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601191 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601195 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601201 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601205 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601214 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601225 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601230 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601233 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601243 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601249 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601259 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601263 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601268 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601284 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601297 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601309 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601313 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601317 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601324 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601336 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601360 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601370 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601382 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601395 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601406 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601417 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601421 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601433 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601440 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601451 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601466 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601477 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601491 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601495 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601505 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601509 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601516 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601529 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601539 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601552 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601562 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601566 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601574 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601578 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601585 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601597 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601607 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601619 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601639 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601653 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601664 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601676 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601680 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601687 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601691 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601698 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601710 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601722 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601733 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601745 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601755 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601767 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601778 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601789 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601800 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601812 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601815 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601822 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601834 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601837 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601844 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601856 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601867 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601879 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601889 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601908 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601920 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601924 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601950 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601954 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601960 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601972 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601975 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601982 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601993 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003601996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602003 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602006 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602014 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602017 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602024 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602035 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602045 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602048 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602056 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602066 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602069 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602078 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602088 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602091 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602099 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602113 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602117 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602126 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602135 +},{ + "args" : + { + "functionArgs" : "comment TARGET ${name} PROPERTY _EP_${step}_COMMENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2469" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602138 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602146 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602150 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602158 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602174 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602184 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602196 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602199 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602204 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602218 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602230 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602240 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602243 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602250 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602254 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602259 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602268 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602280 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602290 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602300 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602304 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602376 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602380 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602390 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602394 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602402 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602412 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602416 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602423 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602433 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602445 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602455 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602475 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602486 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602491 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602499 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602527 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4346" + }, + "cat" : "script", + "name" : "_ep_add_update_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602530 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3261" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602555 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602571 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602579 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602590 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602603 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602606 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602612 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602616 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602624 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602635 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602645 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602656 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602665 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602676 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602680 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602687 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602696 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602707 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602710 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602716 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602727 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602742 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_UPDATE_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3263" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602753 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_UPDATE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3264" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602757 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602773 +},{ + "args" : + { + "functionArgs" : "cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3265" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602784 +},{ + "args" : + { + "functionArgs" : "svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3266" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602794 +},{ + "args" : + { + "functionArgs" : "git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3267" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602805 +},{ + "args" : + { + "functionArgs" : "hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3268" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602816 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3270" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602819 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602831 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602838 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602842 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602848 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602859 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602874 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3272" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602882 +},{ + "args" : + { + "functionArgs" : "comment", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3273" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602890 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3274" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602893 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602897 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3275" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602900 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602904 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602912 +},{ + "args" : + { + "functionArgs" : "work_dir ${source_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3278" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602929 +},{ + "args" : + { + "functionArgs" : "NOT x${cmd} STREQUAL x", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3279" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602941 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED cmd_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3452" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602949 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602976 +},{ + "args" : + { + "functionArgs" : "cmd_disconnected ${cmd}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3453" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602986 +},{ + "args" : + { + "functionArgs" : "update_info_file ${stamp_dir}/${name}-update-info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3455" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003602998 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${update_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3456" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603002 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603024 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/UpdateInfo.txt.in ${update_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3457" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603126 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_UPDATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603132 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603142 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3467" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603146 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603152 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3470" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603156 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603171 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_UPDATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3473" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603176 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603184 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3477" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603192 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3480" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603196 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603201 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603204 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603209 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3484" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603213 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603218 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} update\n INDEPENDENT TRUE\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ALWAYS \\${always}\n EXCLUDE_FROM_MAIN \\${update_disconnected}\n WORKING_DIRECTORY \\${work_dir}\n DEPENDEES download\n DEPENDS \\${file_deps}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3487" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603222 +},{ + "args" : + { + "functionArgs" : "googletest update INDEPENDENT TRUE COMMENT ${comment} COMMAND ALWAYS ${always} EXCLUDE_FROM_MAIN ${update_disconnected} WORKING_DIRECTORY ${work_dir} DEPENDEES download DEPENDS ${file_deps}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3487:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603256 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603287 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603296 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603300 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603321 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603324 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603340 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603344 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603351 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603359 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603389 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603392 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603401 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603404 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603415 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603418 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603430 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603447 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603458 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603471 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603483 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603490 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603503 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603506 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603518 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603521 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603536 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603545 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603548 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603554 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603568 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603571 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603580 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603591 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603595 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603598 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603606 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603610 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603630 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603641 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603651 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603681 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603693 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603702 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603710 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603715 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603721 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603730 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603734 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603755 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603759 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603764 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603783 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603793 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603808 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603813 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603819 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603823 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603844 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603847 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603855 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603858 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603863 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603871 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603882 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603890 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603914 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603924 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603933 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603941 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603951 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603955 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603960 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603982 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603986 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603993 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003603996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604031 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604041 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604053 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604062 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604115 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604119 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604135 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604139 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604145 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604153 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604164 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604175 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604179 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604200 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604210 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604219 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604228 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604232 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604238 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604247 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604250 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604269 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604278 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604287 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604291 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604298 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604302 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604312 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604317 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604323 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604346 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604357 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604360 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604366 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604369 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604374 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604378 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604384 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604393 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604397 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604415 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604433 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604442 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604453 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604457 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604467 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604472 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604478 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604501 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604512 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604521 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604529 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604540 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604548 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604552 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604571 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604580 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604589 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604600 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604604 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604614 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604620 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604633 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604637 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604643 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604656 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604665 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604680 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604693 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604706 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604725 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604744 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604762 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604781 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604805 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604817 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604832 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604836 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604849 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604861 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604868 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604880 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604884 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604892 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604902 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604906 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604914 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604930 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604933 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604942 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604948 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604958 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604961 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604966 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604978 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604981 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604993 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003604996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605004 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605008 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605011 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605019 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605022 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605040 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605056 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605085 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605097 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605130 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605140 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605144 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605165 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605168 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605195 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605201 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605205 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605212 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605219 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605226 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605237 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605241 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605249 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605263 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605266 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605273 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605276 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605284 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605300 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605333 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605337 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605344 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605356 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605380 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605392 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605401 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605422 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605434 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605446 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605456 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605467 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605488 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605493 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605519 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605530 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605542 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605559 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605583 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605586 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605593 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605597 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605605 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605615 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605627 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605638 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605649 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605653 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605660 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605671 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605681 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605693 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605704 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605707 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605716 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605726 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605746 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605751 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605762 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605775 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605784 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605796 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605799 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605805 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605814 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605818 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605826 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605829 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605834 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605839 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605848 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605860 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605864 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605890 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605902 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605914 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605922 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605946 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605950 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605958 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605961 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605968 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605971 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605978 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003605982 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606029 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606063 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606077 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606105 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606117 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606128 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606131 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606138 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606151 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606160 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606171 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606180 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606193 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606204 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606214 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3501" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606230 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4347" + }, + "cat" : "script", + "name" : "_ep_add_patch_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606233 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3528" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606248 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606267 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606274 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606286 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606299 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606303 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606309 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606313 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606322 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606325 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606333 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606337 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606343 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606347 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606354 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606358 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606363 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606367 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606375 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606378 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606400 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_PATCH_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3530" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606404 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606412 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_PATCH_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3531" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606416 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606423 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3533" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606432 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3535" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606441 +},{ + "args" : + { + "functionArgs" : "patch_info_file ${stamp_dir}/${name}-patch-info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3541" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606453 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/PatchInfo.txt.in ${patch_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3542" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606457 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606558 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_PATCH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3548" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606575 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3552" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606585 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3555" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606610 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_PATCH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3558" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606613 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606622 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3562" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606631 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3565" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606640 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3568" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606643 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606665 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606674 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606678 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606685 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606701 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3570" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606704 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606709 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3571" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606718 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} patch\n INDEPENDENT TRUE\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${work_dir}\n EXCLUDE_FROM_MAIN \\${update_disconnected}\n DEPENDEES update\n DEPENDS \\${patch_info_file}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3574" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606722 +},{ + "args" : + { + "functionArgs" : "googletest patch INDEPENDENT TRUE COMMAND WORKING_DIRECTORY ${work_dir} EXCLUDE_FROM_MAIN ${update_disconnected} DEPENDEES update DEPENDS ${patch_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3574:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606753 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606780 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606789 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606792 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606859 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606863 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606872 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606881 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606897 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606908 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606925 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606937 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606941 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606949 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606953 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606956 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606969 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606988 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003606993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607000 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607004 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607013 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607017 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607023 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607036 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607040 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607053 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607058 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607061 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607071 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607077 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607087 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607091 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607097 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607112 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607115 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607125 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607128 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607150 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607155 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607164 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607167 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607190 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607194 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607201 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607207 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607213 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607245 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607250 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607258 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607268 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607277 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607289 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607298 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607302 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607326 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607330 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607336 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607340 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607345 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607357 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607372 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607377 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607383 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607387 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607409 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607421 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607430 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607434 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607439 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607450 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607459 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607494 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607499 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607506 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607516 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607519 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607524 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607529 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607536 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607545 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607569 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607573 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607581 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607590 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607598 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607609 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607613 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607619 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607643 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607654 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607658 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607663 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607672 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607683 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607692 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607715 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607725 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607734 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607745 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607761 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607772 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607806 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607819 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607828 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607837 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607842 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607848 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607857 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607881 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607891 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607900 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607911 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607933 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607946 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607950 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607956 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607969 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607972 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607979 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003607983 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608050 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608076 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608092 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608116 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608134 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608159 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608165 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608180 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608201 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608231 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608236 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608243 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608258 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608262 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608277 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608291 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608299 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608311 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608324 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608335 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608339 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608348 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608351 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608359 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608364 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608367 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608377 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608383 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608387 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608394 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608397 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608403 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608432 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608445 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608456 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608460 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608470 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608481 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608495 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608504 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608516 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608519 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608528 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608573 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608584 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608588 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608608 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608619 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608635 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608646 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608660 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608664 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608674 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608678 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608686 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608698 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608709 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608722 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608733 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608745 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608756 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608759 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608768 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608778 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608791 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608802 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608814 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608832 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608845 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608850 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608881 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608892 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608896 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608906 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608909 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608918 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608927 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608931 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608939 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608948 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608957 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608968 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608972 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608979 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003608996 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609009 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609019 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609022 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609029 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609041 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609049 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609053 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609059 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609071 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609074 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609081 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609091 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609094 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609132 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609166 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609190 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609194 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609202 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609212 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609223 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609233 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609238 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609245 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609255 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609265 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609274 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609280 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609287 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609291 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609298 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609303 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609307 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3587" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609317 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609320 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4348" + }, + "cat" : "script", + "name" : "_ep_add_configure_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609323 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3784" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609337 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609351 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609358 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609370 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609382 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609392 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609404 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609415 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609418 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609425 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609460 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609469 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609492 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609496 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609526 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3786" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609535 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build TARGET ${name} PROPERTY _EP_CONFIGURE_HANDLED_BY_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3787" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609538 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609546 +},{ + "args" : + { + "functionArgs" : "NOT configure_handled_by_build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3791" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609566 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609573 +},{ + "args" : + { + "functionArgs" : "file_deps ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3793" + }, + "cat" : "script", + "name" : "_ep_get_file_deps", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609576 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3604" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609587 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609593 +},{ + "args" : + { + "functionArgs" : "deps TARGET ${name} PROPERTY _EP_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3606" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609603 +},{ + "args" : + { + "functionArgs" : "dep IN LISTS deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3610" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609607 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609613 +},{ + "args" : + { + "functionArgs" : "${var} ${file_deps} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3627" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609617 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609631 +},{ + "args" : + { + "functionArgs" : "cmd ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3796" + }, + "cat" : "script", + "name" : "_ep_extract_configure_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609636 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_CONFIGURE_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3631" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609666 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609680 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3636" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609698 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_CONFIGURE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3637" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609721 +},{ + "args" : + { + "functionArgs" : "${var} ${cmd} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3779" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609740 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/cfgcmd.txt.in ${tmp_dir}/${name}-cfgcmd.txt @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3802" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609744 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609852 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${tmp_dir}/${name}-cfgcmd.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3807" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609858 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609870 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${_ep_cache_args_script}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3808" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609881 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3810" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609884 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609898 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609907 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609911 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609917 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609929 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609941 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609945 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3811" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609964 +},{ + "args" : + { + "functionArgs" : "dependees patch", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3814" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609974 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_CONFIGURE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3817" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609987 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3821" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003609996 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3824" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610006 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_CONFIGURE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3827" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610017 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3831" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610026 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3834" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610029 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610034 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3837" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610043 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3838" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610052 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} configure\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES \\${dependees}\n DEPENDS \\${file_deps}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3841" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610056 +},{ + "args" : + { + "functionArgs" : "googletest configure INDEPENDENT FALSE COMMAND WORKING_DIRECTORY ${binary_dir} DEPENDEES ${dependees} DEPENDS ${file_deps}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3841:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610087 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610124 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610128 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610140 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610149 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610153 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610168 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610172 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610179 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610188 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610200 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610204 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610207 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610216 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610228 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610232 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610235 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610247 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610276 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610289 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610302 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610312 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610325 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610341 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610344 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610359 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610369 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610378 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610390 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610393 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610405 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610421 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610433 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610437 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610453 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610459 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610470 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610475 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610481 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610513 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610525 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610529 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610535 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610544 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610556 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610574 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610603 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610614 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610623 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610635 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610650 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610661 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610665 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610687 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610700 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610703 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610709 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610717 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610722 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610728 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610737 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610742 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610762 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610774 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610783 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610792 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610802 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610811 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610835 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610845 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610854 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610858 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610865 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610869 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610880 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610893 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610900 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610925 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610930 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610937 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610941 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610946 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610950 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610955 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610966 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610975 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003610998 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611002 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611008 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611017 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611027 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611032 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611042 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611052 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611056 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611076 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611088 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611091 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611097 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611106 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611116 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611125 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611151 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611155 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611161 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611165 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611170 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611181 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611204 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611211 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611215 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611225 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611235 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611248 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611258 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611274 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611286 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611300 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611310 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611323 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611335 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611346 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611360 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611369 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611384 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611387 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611400 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611420 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611424 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611431 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611444 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611447 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611454 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611466 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611470 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611482 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611486 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611511 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611521 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611525 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611530 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611542 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611546 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611558 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611574 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611577 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611585 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611589 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611596 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611610 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611614 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611620 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611631 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611635 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611644 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611656 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611666 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611670 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611689 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611699 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611714 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611725 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611738 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611742 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611752 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611762 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611787 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611791 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611799 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611811 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611814 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611821 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611833 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611837 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611844 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611847 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611855 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611866 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611869 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611877 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611888 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611900 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611910 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611922 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611932 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611942 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611953 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611969 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611987 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003611994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612039 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612056 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612067 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612071 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612097 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612111 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612115 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612160 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612172 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612184 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612213 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612225 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612236 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612267 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612271 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612278 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612289 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612300 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612329 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612342 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612357 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612378 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612388 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612392 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612398 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612402 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612411 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612414 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612420 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612435 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612439 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612448 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612459 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612470 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612483 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612492 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612525 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612540 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612551 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612562 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612566 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612638 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612703 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612712 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612751 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612756 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612769 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612775 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612787 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612794 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612808 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612814 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612827 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612837 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612851 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612863 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612874 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612884 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612890 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612898 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612916 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612925 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4349" + }, + "cat" : "script", + "name" : "_ep_add_build_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612928 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3856" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612946 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612968 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612973 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612980 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612993 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003612997 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613014 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613029 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613045 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3858" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613054 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build TARGET ${name} PROPERTY _EP_CONFIGURE_HANDLED_BY_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3859" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613066 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3863" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613069 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613076 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_BUILD_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3868" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613087 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3873" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613091 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613096 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_BUILD_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3874" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613107 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3882" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613111 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613118 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3886" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613127 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3889" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613131 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613137 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3892" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613140 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613148 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3896" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613156 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3899" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613160 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613170 +},{ + "args" : + { + "functionArgs" : "build_always TARGET ${name} PROPERTY _EP_BUILD_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3902" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613187 +},{ + "args" : + { + "functionArgs" : "build_always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3906" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613193 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613201 +},{ + "args" : + { + "functionArgs" : "always 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3909" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613216 +},{ + "args" : + { + "functionArgs" : "build_byproducts TARGET ${name} PROPERTY _EP_BUILD_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3912" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613228 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3917" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613231 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613236 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3918" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613246 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} build\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n BYPRODUCTS \\${build_byproducts}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES configure\n DEPENDS \\${file_deps}\n ALWAYS \\${always}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3921" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613251 +},{ + "args" : + { + "functionArgs" : "googletest build INDEPENDENT FALSE COMMAND BYPRODUCTS ${build_byproducts} WORKING_DIRECTORY ${binary_dir} DEPENDEES configure DEPENDS ${file_deps} ALWAYS ${always}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3921:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613284 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613335 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613339 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613363 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613367 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613385 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613396 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613406 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613418 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613422 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613434 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613450 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613454 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613466 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613485 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613497 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613501 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613510 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613513 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613520 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613533 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613537 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613566 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613569 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613578 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613584 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613587 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613594 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613597 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613603 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613606 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613614 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613617 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613630 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613659 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613672 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613675 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613698 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613701 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613708 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613714 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613720 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613752 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613756 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613764 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613774 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613778 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613783 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613794 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613803 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613831 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613840 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613850 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613854 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613861 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613876 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613887 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613912 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613924 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613933 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613942 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613947 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613953 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613972 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003613998 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614002 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614009 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614018 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614022 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614027 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614032 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614038 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614042 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614047 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614071 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614075 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614082 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614091 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614095 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614100 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614111 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614119 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614143 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614147 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614153 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614157 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614162 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614173 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614188 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614193 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614198 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614223 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614227 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614234 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614238 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614243 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614247 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614252 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614256 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614271 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614276 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614281 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614285 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614305 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614309 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614314 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614323 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614334 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614349 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614359 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614383 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614387 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614394 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614403 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614412 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614416 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614423 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614432 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614455 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614466 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614470 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614475 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614484 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614495 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614504 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614526 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614536 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614540 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614545 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614569 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614573 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614600 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614604 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614614 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614625 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614629 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614638 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614642 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614651 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614658 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614672 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614685 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614699 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614708 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614722 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614734 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614745 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614759 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614762 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614768 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614773 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614783 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614787 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614800 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614828 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614833 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614840 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614853 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614857 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614864 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614876 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614880 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614892 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614905 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614922 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614932 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614941 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614954 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614957 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614961 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614970 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614986 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003614998 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615009 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615014 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615023 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615033 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615037 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615046 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615050 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615059 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615070 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615080 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615084 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615096 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615103 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615107 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615114 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615129 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615140 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615153 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615157 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615167 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615178 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615200 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615204 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615212 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615224 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615228 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615235 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615247 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615251 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615258 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615270 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615281 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615293 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615304 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615307 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615316 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615320 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615327 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615330 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615339 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615350 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615360 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615371 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615382 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615395 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615405 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615417 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615428 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615431 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615440 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615450 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615472 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615476 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615484 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615496 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615501 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615528 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615533 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615543 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615554 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615567 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615577 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615589 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615605 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615618 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615622 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615628 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615640 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615649 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615653 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615658 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615670 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615679 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615693 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615705 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615716 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615727 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615739 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615748 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615751 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615768 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615773 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615781 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615785 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615792 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615802 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615806 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615874 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615879 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615884 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615894 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615898 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615909 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615922 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615933 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615944 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615949 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615957 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615967 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615971 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615977 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615981 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615987 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003615993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616007 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616034 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4350" + }, + "cat" : "script", + "name" : "_ep_add_install_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616038 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3938" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616053 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616074 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616079 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616086 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616102 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616106 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616123 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616137 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616141 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616149 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616153 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_INSTALL_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3940" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616157 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616165 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3945" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616174 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_INSTALL_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3946" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616185 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3954" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616189 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616197 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3958" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616200 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616206 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3961" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616215 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3964" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616219 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616226 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3968" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616235 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3971" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616244 +},{ + "args" : + { + "functionArgs" : "build_always TARGET ${name} PROPERTY _EP_BUILD_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3977" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616255 +},{ + "args" : + { + "functionArgs" : "build_always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3981" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616264 +},{ + "args" : + { + "functionArgs" : "always 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3984" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616273 +},{ + "args" : + { + "functionArgs" : "install_byproducts TARGET ${name} PROPERTY _EP_INSTALL_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3987" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616285 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3992" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616289 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616294 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3993" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616303 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} install\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n BYPRODUCTS \\${install_byproducts}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES build\n ALWAYS \\${always}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3996" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616308 +},{ + "args" : + { + "functionArgs" : "googletest install INDEPENDENT FALSE COMMAND BYPRODUCTS ${install_byproducts} WORKING_DIRECTORY ${binary_dir} DEPENDEES build ALWAYS ${always}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3996:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616341 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616369 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616378 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616382 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616405 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616408 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616428 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616435 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616446 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616455 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616472 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616475 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616484 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616496 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616500 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616503 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616515 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616527 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616534 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616546 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616559 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616569 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616573 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616582 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616586 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616598 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616601 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616616 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616620 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616626 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616635 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616650 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616653 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616663 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616666 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616679 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616691 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616695 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616721 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616727 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616738 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616744 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616750 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616754 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616782 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616795 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616799 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616805 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616814 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616819 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616828 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616841 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616871 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616881 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616890 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616901 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616906 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616917 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616927 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616932 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616954 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616958 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616966 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616975 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616984 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003616996 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617005 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617030 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617054 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617064 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617073 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617084 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617093 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617119 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617130 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617139 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617148 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617159 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617163 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617168 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617172 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617193 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617202 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617211 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617222 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617237 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617248 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617273 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617284 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617293 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617302 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617307 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617313 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617317 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617322 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617346 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617364 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617369 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617374 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617385 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617400 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617411 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617435 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617447 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617456 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617465 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617469 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617476 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617485 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617489 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617508 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617517 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617526 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617537 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617558 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617571 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617581 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617594 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617598 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617604 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617620 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617633 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617637 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617647 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617650 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617666 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617671 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617681 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617693 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617705 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617718 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617722 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617728 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617733 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617743 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617746 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617760 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617774 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617782 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617794 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617807 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617817 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617821 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617829 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617833 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617841 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617846 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617849 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617865 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617875 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617884 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617887 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617899 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617911 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617923 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617927 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617930 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617938 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617941 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617958 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617973 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617983 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617995 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003617999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618009 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618020 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618024 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618030 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618034 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618053 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618065 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618080 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618091 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618096 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618104 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618118 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618129 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618141 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618152 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618156 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618164 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618175 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618179 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618187 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618198 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618210 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618213 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618220 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618242 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618246 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618254 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618257 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618266 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618277 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618280 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618289 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618300 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618310 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618321 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618325 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618332 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618345 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618349 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618355 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618359 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618367 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618378 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618390 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618393 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618400 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618404 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618412 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618416 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618423 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618435 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618439 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618445 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618457 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618467 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618480 +},{ + "args" : + { + "functionArgs" : "val TARGET googletest PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618484 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618490 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618511 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618527 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618540 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618550 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618553 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618562 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618571 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618580 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618592 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618601 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618606 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618615 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618627 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618637 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618648 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618660 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618664 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618669 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618672 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618679 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618691 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618701 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618711 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618715 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618752 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618786 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618790 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618800 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618804 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618822 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618834 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618845 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618855 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618868 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618878 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618888 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618898 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618911 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618916 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618932 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618935 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4355" + }, + "cat" : "script", + "name" : "_ep_add_test_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618939 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4012" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618955 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618980 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618992 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003618996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619005 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619015 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619028 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619044 +},{ + "args" : + { + "functionArgs" : "before TARGET ${name} PROPERTY _EP_TEST_BEFORE_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4014" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619055 +},{ + "args" : + { + "functionArgs" : "after TARGET ${name} PROPERTY _EP_TEST_AFTER_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4015" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619066 +},{ + "args" : + { + "functionArgs" : "exclude TARGET ${name} PROPERTY _EP_TEST_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4016" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619069 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619076 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_TEST_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4017" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619087 +},{ + "args" : + { + "functionArgs" : "cmd_set OR before OR after OR exclude", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4022" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619091 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619111 +},{ + "args" : + { + "functionArgs" : "gtest_src PREFIX vendor/gtm SOURCE_DIR vendor/gtm/src/googletest/googletest INSTALL_DIR vendor/gtm/gtest CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/vendor/gtm/gtest -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} DOWNLOAD_COMMAND UPDATE_COMMAND ", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:23" + }, + "cat" : "script", + "name" : "externalproject_add", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619116 +},{ + "args" : + { + "functionArgs" : "GET CMP0097 _EP_CMP0097 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4091" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619167 +},{ + "args" : + { + "functionArgs" : "GET CMP0114 cmp0114 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4094" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619177 +},{ + "args" : + { + "functionArgs" : "CMAKE_XCODE_BUILD_SYSTEM VERSION_GREATER_EQUAL 12 AND NOT cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4097" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619191 +},{ + "args" : + { + "functionArgs" : "GET CMP0135 _EP_CMP0135 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4110" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619196 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619202 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4114" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619205 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619215 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619221 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619225 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619231 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619235 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619240 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619256 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4117" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619260 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619268 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4118" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619271 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619290 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619293 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619312 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619322 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619331 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619335 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619346 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619359 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619370 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619374 +},{ + "args" : + { + "functionArgs" : "PUSH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4120" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619377 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619382 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4121" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619392 +},{ + "args" : + { + "functionArgs" : "${name} ALL DEPENDS ${complete_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4129" + }, + "cat" : "script", + "name" : "add_custom_target", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619424 +},{ + "args" : + { + "functionArgs" : "POP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4130" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619443 +},{ + "args" : + { + "functionArgs" : "${name} PROPERTIES _EP_IS_EXTERNAL_PROJECT 1 LABELS ${name} FOLDER ExternalProjectTargets/${name} _EP_CMP0114 ${cmp0114}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4131" + }, + "cat" : "script", + "name" : "set_target_properties", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619447 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619461 +},{ + "args" : + { + "functionArgs" : "keywords PREFIX TMP_DIR STAMP_DIR LOG_DIR DOWNLOAD_DIR SOURCE_DIR BINARY_DIR INSTALL_DIR DOWNLOAD_COMMAND URL URL_HASH URL_MD5 DOWNLOAD_NAME DOWNLOAD_EXTRACT_TIMESTAMP DOWNLOAD_NO_EXTRACT DOWNLOAD_NO_PROGRESS TIMEOUT INACTIVITY_TIMEOUT HTTP_USERNAME HTTP_PASSWORD HTTP_HEADER TLS_VERIFY TLS_CAINFO NETRC NETRC_FILE GIT_REPOSITORY GIT_TAG GIT_REMOTE_NAME GIT_SUBMODULES GIT_SUBMODULES_RECURSE GIT_SHALLOW GIT_PROGRESS GIT_CONFIG GIT_REMOTE_UPDATE_STRATEGY SVN_REPOSITORY SVN_REVISION SVN_USERNAME SVN_PASSWORD SVN_TRUST_CERT HG_REPOSITORY HG_TAG CVS_REPOSITORY CVS_MODULE CVS_TAG UPDATE_COMMAND UPDATE_DISCONNECTED PATCH_COMMAND CONFIGURE_COMMAND CMAKE_COMMAND CMAKE_GENERATOR CMAKE_GENERATOR_PLATFORM CMAKE_GENERATOR_TOOLSET CMAKE_GENERATOR_INSTANCE CMAKE_ARGS CMAKE_CACHE_ARGS CMAKE_CACHE_DEFAULT_ARGS SOURCE_SUBDIR CONFIGURE_HANDLED_BY_BUILD BUILD_COMMAND BUILD_IN_SOURCE BUILD_ALWAYS BUILD_BYPRODUCTS INSTALL_COMMAND INSTALL_BYPRODUCTS TEST_COMMAND TEST_BEFORE_INSTALL TEST_AFTER_INSTALL TEST_EXCLUDE_FROM_MAIN LOG_DOWNLOAD LOG_UPDATE LOG_PATCH LOG_CONFIGURE LOG_BUILD LOG_INSTALL LOG_TEST LOG_MERGED_STDOUTERR LOG_OUTPUT_ON_FAILURE USES_TERMINAL_DOWNLOAD USES_TERMINAL_UPDATE USES_TERMINAL_PATCH USES_TERMINAL_CONFIGURE USES_TERMINAL_BUILD USES_TERMINAL_INSTALL USES_TERMINAL_TEST DEPENDS EXCLUDE_FROM_ALL STEP_TARGETS INDEPENDENT_STEP_TARGETS LIST_SEPARATOR EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4138" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619508 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add ${keywords} ${name} _EP_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4274" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619513 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619540 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619547 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619559 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619571 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619604 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619627 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619638 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619647 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619659 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619668 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619695 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619705 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619714 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619726 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619742 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619747 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619753 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619757 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619779 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619813 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619824 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619833 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619845 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619854 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619891 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619896 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619902 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619906 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619911 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619916 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619922 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619937 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619949 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619974 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619978 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619995 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003619999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620013 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620018 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620023 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620028 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620035 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620044 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620069 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620074 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620079 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620083 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620088 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620093 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620099 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620114 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620125 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620130 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620150 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620171 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620181 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620190 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620195 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620201 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620205 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620210 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620215 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620247 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620257 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620267 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620271 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620277 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620292 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620303 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620308 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620328 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620337 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620347 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620351 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620357 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620371 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620376 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620382 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620406 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620415 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620424 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620429 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620435 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620439 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620449 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620460 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620464 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620483 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620493 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620497 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620502 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620506 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620512 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620526 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620545 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620571 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620595 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620599 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620605 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620614 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620626 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620629 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620634 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620659 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620669 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620678 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620689 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620703 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620707 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620712 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620717 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620726 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620737 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620741 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620762 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620783 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620792 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620801 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620813 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620822 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620854 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620869 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620879 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620900 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620916 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620925 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620946 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4281" + }, + "cat" : "script", + "name" : "_ep_set_directories", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620950 +},{ + "args" : + { + "functionArgs" : "prefix TARGET ${name} PROPERTY _EP_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1641" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620976 +},{ + "args" : + { + "functionArgs" : "NOT prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1642" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620987 +},{ + "args" : + { + "functionArgs" : "prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1651" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003620997 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${prefix} prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1652" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621010 +},{ + "args" : + { + "functionArgs" : "tmp_default ${prefix}/tmp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1653" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621014 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621022 +},{ + "args" : + { + "functionArgs" : "download_default ${prefix}/src", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1654" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621025 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621032 +},{ + "args" : + { + "functionArgs" : "source_default ${prefix}/src/${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1655" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621044 +},{ + "args" : + { + "functionArgs" : "binary_default ${prefix}/src/${name}-build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1656" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621055 +},{ + "args" : + { + "functionArgs" : "stamp_default ${prefix}/src/${name}-stamp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1657" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621066 +},{ + "args" : + { + "functionArgs" : "install_default ${prefix}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1658" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621069 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621076 +},{ + "args" : + { + "functionArgs" : "build_in_source TARGET ${name} PROPERTY _EP_BUILD_IN_SOURCE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1668" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621089 +},{ + "args" : + { + "functionArgs" : "build_in_source", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1669" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621098 +},{ + "args" : + { + "functionArgs" : "top ${CMAKE_CURRENT_BINARY_DIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1677" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621110 +},{ + "args" : + { + "functionArgs" : "places stamp download source binary install tmp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1680" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621121 +},{ + "args" : + { + "functionArgs" : "var ${places}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1681" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621132 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621144 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621158 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621169 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621173 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621181 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621202 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621218 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621231 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621235 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621245 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621249 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621256 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621268 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621279 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621291 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621295 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621302 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621316 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621320 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621329 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621342 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621352 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621356 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621365 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621368 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621375 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621387 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621390 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621401 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621404 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621413 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621426 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621436 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621449 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621459 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621471 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621491 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621495 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621506 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621509 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621518 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621532 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621542 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621546 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621555 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621581 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621592 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621606 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621619 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621622 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621632 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621636 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621642 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621655 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621666 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621670 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621678 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621689 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621703 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621707 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621716 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621729 +},{ + "args" : + { + "functionArgs" : "log_dir TARGET ${name} PROPERTY _EP_LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1695" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621734 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621741 +},{ + "args" : + { + "functionArgs" : "NOT log_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1696" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621751 +},{ + "args" : + { + "functionArgs" : "log_dir TARGET ${name} PROPERTY _EP_STAMP_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1697" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621763 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${log_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1699" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621780 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${log_dir} log_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1702" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621785 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621805 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_LOG_DIR ${log_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1703" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621818 +},{ + "args" : + { + "functionArgs" : "source_subdir TARGET ${name} PROPERTY _EP_SOURCE_SUBDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1705" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621830 +},{ + "args" : + { + "functionArgs" : "NOT source_subdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1706" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621840 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_SOURCE_SUBDIR ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1707" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621852 +},{ + "args" : + { + "functionArgs" : "build_in_source", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1718" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621862 +},{ + "args" : + { + "functionArgs" : "script_filename ${tmp_dir}/${name}-mkdirs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1737" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621866 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621875 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/mkdirs.cmake.in ${script_filename} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1738" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003621879 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622005 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1743" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622020 +},{ + "args" : + { + "functionArgs" : "${script_filename}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1744" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622024 +},{ + "args" : + { + "functionArgs" : "VERSION 3.5", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake:4" + }, + "cat" : "script", + "name" : "cmake_minimum_required", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622127 +},{ + "args" : + { + "functionArgs" : "MAKE_DIRECTORY /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake:6" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622167 +},{ + "args" : + { + "functionArgs" : "configSubDirs", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake:16" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622176 +},{ + "args" : + { + "functionArgs" : "subDir IN LISTS configSubDirs", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake:17" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622187 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake:20" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622207 +},{ + "args" : + { + "functionArgs" : "${name} done done_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4282" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622210 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622227 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622248 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622260 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622265 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622274 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622278 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622285 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622299 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622303 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622323 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622328 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622332 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622342 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622348 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622359 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622369 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622385 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622399 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622403 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622416 +},{ + "args" : + { + "functionArgs" : "${name} install install_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4283" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622419 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622431 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622443 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622450 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622463 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622475 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622485 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622495 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622499 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622508 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622524 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622528 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622537 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622543 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622554 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622563 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622578 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622591 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622607 +},{ + "args" : + { + "functionArgs" : "exclude_from_all TARGET ${name} PROPERTY _EP_EXCLUDE_FROM_ALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4286" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622628 +},{ + "args" : + { + "functionArgs" : "exclude_from_all", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4290" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622638 +},{ + "args" : + { + "functionArgs" : "repo TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4294" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622650 +},{ + "args" : + { + "functionArgs" : "NOT repo STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4295" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622654 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622662 +},{ + "args" : + { + "functionArgs" : "GET CMP0150 cmp0150 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4296" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622666 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622672 +},{ + "args" : + { + "functionArgs" : "source_dir TARGET ${name} PROPERTY _EP_SOURCE_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4299" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622685 +},{ + "args" : + { + "functionArgs" : "work_dir ${source_dir} PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4300" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622696 +},{ + "args" : + { + "functionArgs" : "resolved_git_repository ${repo} ${cmp0150} ${work_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4301" + }, + "cat" : "script", + "name" : "_ep_resolve_git_remote", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622700 +},{ + "args" : + { + "functionArgs" : "git_repository STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:145" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622715 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622722 +},{ + "args" : + { + "functionArgs" : "${output_variable} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622733 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:147" + }, + "cat" : "script", + "name" : "return", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622742 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622746 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_GIT_REPOSITORY ${resolved_git_repository}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4302" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622750 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622759 +},{ + "args" : + { + "functionArgs" : "complete_outputs ${complete_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4314" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622776 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Ninja", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4315" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622780 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622791 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${complete_outputs} COMMENT Completed '${name}' COMMAND ${CMAKE_COMMAND} -E make_directory ${cmf_dir}${cfgdir} COMMAND ${CMAKE_COMMAND} -E touch ${complete_stamp_file} COMMAND ${CMAKE_COMMAND} -E touch ${done_stamp_file} DEPENDS ${install_stamp_file} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4319" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622828 +},{ + "args" : + { + "functionArgs" : "deps TARGET ${name} PROPERTY _EP_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4330" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622841 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4334" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622851 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4344" + }, + "cat" : "script", + "name" : "_ep_add_mkdir_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622855 +},{ + "args" : + { + "functionArgs" : "${name} tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2691" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622867 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622879 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622887 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622899 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622913 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622916 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622923 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622927 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622936 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622950 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622959 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622964 +},{ + "args" : + { + "functionArgs" : "script_filename ${tmp_dir}/${name}-mkdirs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2692" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622977 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2693" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622980 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003622996 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623014 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623018 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623024 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623028 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623040 +},{ + "args" : + { + "functionArgs" : "${name} mkdir INDEPENDENT TRUE COMMENT Creating directories for '${name}' COMMAND ${CMAKE_COMMAND} -Dcfgdir=${cfgdir} -P ${script_filename}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2695" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623044 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623082 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623086 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623107 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623111 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623126 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623130 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623137 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623140 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623146 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623150 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623162 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623175 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623190 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623194 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623206 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623225 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623237 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623241 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623250 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623254 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623270 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623275 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623284 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623301 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623304 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623320 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623331 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623340 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623344 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623356 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623359 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623369 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623385 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623397 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623401 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623427 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623438 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623450 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623482 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623496 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623500 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623506 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623509 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623515 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623527 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623537 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623565 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623575 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623595 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623607 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623625 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623636 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623664 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623676 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623680 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623685 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623694 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623699 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623706 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623710 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623715 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623741 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623751 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623760 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623771 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623775 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623786 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623791 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623797 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623801 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623823 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623835 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623839 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623844 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623853 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623858 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623865 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623869 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623874 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623899 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623909 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623928 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623939 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623944 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623955 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623966 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623991 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003623995 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624038 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624054 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624066 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624071 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624084 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624096 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624101 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624123 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624128 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624134 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624138 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624143 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624154 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624169 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624180 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624184 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624206 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624216 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624225 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624236 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624251 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624258 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624272 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624276 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624283 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624287 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624312 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624317 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624324 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624342 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624355 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624359 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624370 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624380 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624394 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624406 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624418 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624422 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624431 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624441 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624454 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624464 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624477 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624490 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624493 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624500 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624511 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624515 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624529 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624537 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624549 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624566 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624577 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624582 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624615 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624630 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624642 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624654 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624658 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624665 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624678 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624681 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624689 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624701 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624712 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624715 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624724 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624735 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624747 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624750 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624757 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624770 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624774 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624781 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624793 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624804 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624815 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624819 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624826 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624842 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624854 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624857 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624866 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624877 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624898 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624910 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624922 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624933 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624945 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624949 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624957 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624969 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624973 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624980 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624983 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624992 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003624996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625003 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625007 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625015 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625026 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625037 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625042 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625055 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625064 +},{ + "args" : + { + "functionArgs" : "comment TARGET ${name} PROPERTY _EP_${step}_COMMENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2469" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625068 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625076 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625088 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625097 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625101 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625107 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625111 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625119 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625128 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625142 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625146 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625154 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625174 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625186 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625190 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625195 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625198 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625205 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625218 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625229 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625232 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625239 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625249 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625254 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625334 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625348 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625360 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625371 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625383 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625393 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625406 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625416 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625420 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625427 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625431 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625437 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625443 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625451 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625471 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4345" + }, + "cat" : "script", + "name" : "_ep_add_download_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625474 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir download_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2747" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625499 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625525 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625534 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625546 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625559 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625583 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625587 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625597 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625610 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625614 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625620 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625633 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625636 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625642 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625655 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625658 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625669 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625679 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625691 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625695 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625701 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625713 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625717 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625724 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625734 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625746 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625755 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625759 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625767 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625784 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2754" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625796 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2755" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625818 +},{ + "args" : + { + "functionArgs" : "cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2756" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625823 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625832 +},{ + "args" : + { + "functionArgs" : "svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2757" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625844 +},{ + "args" : + { + "functionArgs" : "git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2758" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625855 +},{ + "args" : + { + "functionArgs" : "hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2759" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625866 +},{ + "args" : + { + "functionArgs" : "url TARGET ${name} PROPERTY _EP_URL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2760" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625878 +},{ + "args" : + { + "functionArgs" : "fname TARGET ${name} PROPERTY _EP_DOWNLOAD_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2761" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625882 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625889 +},{ + "args" : + { + "functionArgs" : "REGEX REPLACE file:// url ${url}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2764" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625893 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625903 +},{ + "args" : + { + "functionArgs" : "depends", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2766" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625913 +},{ + "args" : + { + "functionArgs" : "comment", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2767" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625916 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625921 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2768" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625924 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625929 +},{ + "args" : + { + "functionArgs" : "extra_repo_info", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2769" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625938 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2771" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625941 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625947 +},{ + "args" : + { + "functionArgs" : "work_dir ${download_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2772" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625975 +},{ + "args" : + { + "functionArgs" : "method custom", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2773" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625985 +},{ + "args" : + { + "functionArgs" : "repo_info_file ${stamp_dir}/${name}-${method}info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3194" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003625998 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626008 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${repo_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3195" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626021 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/RepositoryInfo.txt.in ${repo_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3196" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626024 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626142 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_DOWNLOAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3202" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626160 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3206" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626171 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3209" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626176 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626182 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_DOWNLOAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3212" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626195 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3216" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626198 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626204 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3219" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626214 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3222" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626233 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3223" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626244 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(\\${name} download\n INDEPENDENT TRUE\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${work_dir}\n DEPENDS \\${depends}\n DEPENDEES mkdir\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3226" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626249 +},{ + "args" : + { + "functionArgs" : "${name} download INDEPENDENT TRUE COMMENT ${comment} COMMAND WORKING_DIRECTORY ${work_dir} DEPENDS ${depends} DEPENDEES mkdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3226:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626282 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626321 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626325 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626340 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626350 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626354 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626370 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626381 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626392 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626409 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626422 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626439 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626443 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626456 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626475 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626480 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626488 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626492 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626502 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626512 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626525 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626529 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626537 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626542 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626545 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626561 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626574 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626582 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626586 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626592 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626622 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626626 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626635 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626652 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626665 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626668 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626691 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626695 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626702 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626714 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626749 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626754 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626763 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626773 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626782 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626794 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626804 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626832 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626837 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626842 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626847 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626852 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626857 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626863 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626879 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626884 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626890 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626928 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626932 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626941 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626950 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626954 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626960 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626971 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626975 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626981 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003626985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627006 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627010 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627017 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627027 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627036 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627040 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627047 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627056 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627082 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627093 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627102 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627106 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627111 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627123 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627132 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627136 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627156 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627166 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627175 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627186 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627202 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627207 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627213 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627248 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627260 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627264 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627270 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627279 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627290 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627299 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627324 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627334 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627343 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627354 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627359 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627369 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627380 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627406 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627417 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627427 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627435 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627447 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627456 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627480 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627484 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627490 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627499 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627510 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627531 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627554 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627565 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627579 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627582 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627589 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627605 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627618 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627622 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627632 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627636 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627642 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627656 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627668 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627672 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627680 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627694 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627703 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627718 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627722 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627735 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627756 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627769 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627773 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627781 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627785 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627792 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627805 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627825 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627828 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627844 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627867 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627876 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627880 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627889 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627893 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627897 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627907 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627925 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627936 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627948 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627963 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627973 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627986 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003627990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628006 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628022 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628033 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628037 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628050 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628057 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628062 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628069 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628084 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628095 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628108 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628112 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628123 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628134 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628138 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628147 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628169 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628173 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628183 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628194 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628206 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628217 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628229 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628240 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628243 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628252 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628256 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628263 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628267 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628276 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628280 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628287 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628299 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628303 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628310 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628321 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628325 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628332 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628344 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628347 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628357 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628368 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628380 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628384 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628391 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628394 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628403 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628414 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628418 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628427 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628446 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628450 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628459 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628470 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628482 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628493 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628497 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628506 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628517 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628529 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628540 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628545 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628558 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628568 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628580 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628589 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628599 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628611 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628615 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628620 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628626 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628635 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628647 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628651 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628658 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628669 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628681 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628690 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628700 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628713 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628733 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628744 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628748 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628823 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628838 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628841 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628850 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628854 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628861 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628873 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628884 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628889 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628897 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628900 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628907 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628911 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628918 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628928 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628934 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628942 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628959 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628970 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4346" + }, + "cat" : "script", + "name" : "_ep_add_update_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628974 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3261" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003628993 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629017 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629022 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629030 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629043 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629054 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629078 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629082 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629091 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629095 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629102 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629113 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629117 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629123 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629136 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629139 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629147 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629157 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629169 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629172 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629178 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629190 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629194 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629206 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_UPDATE_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3263" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629218 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_UPDATE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3264" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629229 +},{ + "args" : + { + "functionArgs" : "cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3265" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629240 +},{ + "args" : + { + "functionArgs" : "svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3266" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629251 +},{ + "args" : + { + "functionArgs" : "git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3267" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629255 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629263 +},{ + "args" : + { + "functionArgs" : "hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3268" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629266 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629274 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3270" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629277 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629298 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629302 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629308 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629320 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629336 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3272" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629339 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629353 +},{ + "args" : + { + "functionArgs" : "comment", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3273" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629357 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629362 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3274" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629366 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629371 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3275" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629379 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629388 +},{ + "args" : + { + "functionArgs" : "work_dir ${source_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3278" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629402 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629410 +},{ + "args" : + { + "functionArgs" : "NOT x${cmd} STREQUAL x", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3279" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629414 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629423 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED cmd_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3452" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629440 +},{ + "args" : + { + "functionArgs" : "cmd_disconnected ${cmd}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3453" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629451 +},{ + "args" : + { + "functionArgs" : "update_info_file ${stamp_dir}/${name}-update-info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3455" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629463 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${update_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3456" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629467 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629475 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/UpdateInfo.txt.in ${update_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3457" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629480 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629599 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_UPDATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629605 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629617 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3467" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629628 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3470" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629633 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629639 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_UPDATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3473" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629642 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629651 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3477" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629660 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3480" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629665 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629670 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629679 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3484" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629688 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} update\n INDEPENDENT TRUE\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ALWAYS \\${always}\n EXCLUDE_FROM_MAIN \\${update_disconnected}\n WORKING_DIRECTORY \\${work_dir}\n DEPENDEES download\n DEPENDS \\${file_deps}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3487" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629693 +},{ + "args" : + { + "functionArgs" : "gtest_src update INDEPENDENT TRUE COMMENT ${comment} COMMAND ALWAYS ${always} EXCLUDE_FROM_MAIN ${update_disconnected} WORKING_DIRECTORY ${work_dir} DEPENDEES download DEPENDS ${file_deps}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3487:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629730 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629770 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629774 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629811 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629815 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629831 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629843 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629852 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629869 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629882 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629898 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629902 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629914 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629934 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629946 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629963 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629974 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629978 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629987 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003629999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630004 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630007 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630017 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630023 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630033 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630037 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630042 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630058 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630071 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630075 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630088 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630110 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630114 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630132 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630138 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630142 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630150 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630155 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630161 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630195 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630199 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630208 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630218 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630228 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630240 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630249 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630254 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630278 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630288 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630292 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630298 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630302 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630309 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630313 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630325 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630330 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630336 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630363 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630368 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630376 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630380 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630386 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630390 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630395 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630406 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630416 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630420 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630451 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630456 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630464 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630474 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630483 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630494 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630504 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630534 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630538 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630547 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630556 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630565 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630577 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630580 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630586 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630612 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630616 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630624 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630627 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630633 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630637 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630642 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630653 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630662 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630687 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630691 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630699 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630703 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630708 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630717 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630722 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630728 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630737 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630742 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630774 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630785 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630790 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630795 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630806 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630822 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630834 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630859 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630863 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630871 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630880 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630884 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630889 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630900 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630910 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630934 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630943 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630953 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630964 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630979 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630989 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003630994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631014 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631018 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631026 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631036 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631045 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631056 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631065 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631078 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631100 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631110 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631120 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631131 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631153 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631156 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631166 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631177 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631190 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631194 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631200 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631204 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631218 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631231 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631235 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631245 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631249 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631255 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631270 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631282 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631286 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631294 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631298 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631308 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631317 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631323 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631333 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631336 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631350 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631371 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631376 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631395 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631408 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631419 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631423 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631432 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631449 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631453 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631469 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631472 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631480 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631483 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631489 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631493 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631501 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631505 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631518 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631534 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631538 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631545 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631557 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631573 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631582 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631587 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631595 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631599 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631608 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631619 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631630 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631633 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631653 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631658 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631665 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631680 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631701 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631707 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631716 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631720 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631730 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631734 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631742 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631754 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631766 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631769 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631778 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631789 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631802 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631813 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631825 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631829 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631836 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631849 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631860 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631863 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631872 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631883 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631887 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631896 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631900 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631907 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631911 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631917 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631929 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631940 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631944 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631956 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631975 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631989 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003631993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632007 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632026 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632038 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632050 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632061 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632064 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632073 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632084 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632096 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632107 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632111 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632120 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632131 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632143 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632147 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632159 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632163 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632173 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632182 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632195 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632198 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632204 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632213 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632226 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632235 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632249 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632272 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632284 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632296 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632300 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632309 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632317 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632321 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632327 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632340 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632351 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632362 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632366 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632441 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632445 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632455 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632468 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632478 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632490 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632500 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632506 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632514 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632524 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632528 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632535 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632545 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632559 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632581 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3501" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632607 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4347" + }, + "cat" : "script", + "name" : "_ep_add_patch_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632611 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3528" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632625 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632647 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632659 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632673 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632683 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632696 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632699 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632708 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632718 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632722 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632730 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632733 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632739 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632751 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632763 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632767 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_PATCH_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3530" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632779 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_PATCH_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3531" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632790 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3533" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632794 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632799 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3535" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632808 +},{ + "args" : + { + "functionArgs" : "patch_info_file ${stamp_dir}/${name}-patch-info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3541" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632812 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632820 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/PatchInfo.txt.in ${patch_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3542" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632824 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632934 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_PATCH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3548" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632951 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3552" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632955 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632963 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3555" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632974 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_PATCH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3558" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632987 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3562" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003632991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633007 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3565" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633018 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3568" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633022 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633037 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633046 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633050 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633056 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633068 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633084 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3570" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633093 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3571" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633103 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} patch\n INDEPENDENT TRUE\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${work_dir}\n EXCLUDE_FROM_MAIN \\${update_disconnected}\n DEPENDEES update\n DEPENDS \\${patch_info_file}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3574" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633108 +},{ + "args" : + { + "functionArgs" : "gtest_src patch INDEPENDENT TRUE COMMAND WORKING_DIRECTORY ${work_dir} EXCLUDE_FROM_MAIN ${update_disconnected} DEPENDEES update DEPENDS ${patch_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3574:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633141 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633180 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633184 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633196 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633206 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633210 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633219 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633227 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633231 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633238 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633248 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633264 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633277 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633289 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633293 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633296 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633309 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633331 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633339 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633344 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633351 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633365 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633368 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633375 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633388 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633392 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633405 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633408 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633423 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633434 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633443 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633447 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633458 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633471 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633475 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633484 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633488 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633492 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633500 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633504 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633526 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633537 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633549 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633553 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633582 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633587 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633595 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633599 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633605 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633614 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633626 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633645 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633650 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633675 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633679 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633685 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633695 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633706 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633722 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633727 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633733 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633760 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633772 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633782 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633785 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633791 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633802 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633812 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633837 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633841 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633849 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633853 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633858 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633867 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633872 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633879 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633882 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633888 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633913 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633925 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633934 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633943 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633954 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633967 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633973 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003633999 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634004 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634011 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634020 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634024 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634029 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634041 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634050 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634075 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634079 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634085 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634094 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634105 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634121 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634132 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634136 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634157 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634169 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634173 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634178 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634187 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634199 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634208 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634232 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634236 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634242 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634246 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634251 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634256 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634262 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634267 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634286 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634294 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634298 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634308 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634318 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634332 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634335 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634341 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634345 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634358 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634371 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634385 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634395 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634409 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634421 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634424 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634432 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634446 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634455 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634471 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634474 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634488 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634503 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634511 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634523 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634527 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634536 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634546 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634559 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634575 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634579 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634607 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634618 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634627 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634640 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634644 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634657 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634673 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634684 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634695 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634709 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634719 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634731 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634744 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634756 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634767 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634771 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634790 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634801 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634817 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634821 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634828 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634833 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634841 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634855 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634866 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634869 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634889 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634893 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634901 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634914 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634925 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634937 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634948 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634960 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634971 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634983 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634994 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003634998 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635007 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635010 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635018 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635030 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635041 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635051 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635055 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635066 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635079 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635083 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635088 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635101 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635110 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635119 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635131 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635140 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635163 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635177 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635188 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635199 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635211 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635215 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635220 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635230 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635235 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635243 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635247 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635254 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635264 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635268 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635341 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635356 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635360 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635368 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635379 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635390 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635394 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635401 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635406 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635413 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635424 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635435 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635439 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635445 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635450 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635458 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635480 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635491 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3587" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635495 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635505 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4348" + }, + "cat" : "script", + "name" : "_ep_add_configure_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635508 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3784" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635522 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635537 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635545 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635560 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635574 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635577 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635584 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635597 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635609 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635613 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635619 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635631 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635635 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635641 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635653 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635665 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635670 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3786" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635679 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build TARGET ${name} PROPERTY _EP_CONFIGURE_HANDLED_BY_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3787" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635691 +},{ + "args" : + { + "functionArgs" : "NOT configure_handled_by_build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3791" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635701 +},{ + "args" : + { + "functionArgs" : "file_deps ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3793" + }, + "cat" : "script", + "name" : "_ep_get_file_deps", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635704 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3604" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635722 +},{ + "args" : + { + "functionArgs" : "deps TARGET ${name} PROPERTY _EP_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3606" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635733 +},{ + "args" : + { + "functionArgs" : "dep IN LISTS deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3610" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635743 +},{ + "args" : + { + "functionArgs" : "${var} ${file_deps} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3627" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635756 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635760 +},{ + "args" : + { + "functionArgs" : "cmd ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3796" + }, + "cat" : "script", + "name" : "_ep_extract_configure_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635764 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_CONFIGURE_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3631" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635797 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3636" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635808 +},{ + "args" : + { + "functionArgs" : "cmake_command ${name} _EP_CMAKE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3642" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635819 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635828 +},{ + "args" : + { + "functionArgs" : "cmake_command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3643" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635838 +},{ + "args" : + { + "functionArgs" : "cmd ${CMAKE_COMMAND}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3646" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635842 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635850 +},{ + "args" : + { + "functionArgs" : "cmake_args TARGET ${name} PROPERTY _EP_CMAKE_ARGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3649" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635863 +},{ + "args" : + { + "functionArgs" : "APPEND cmd ${cmake_args}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3653" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635866 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635875 +},{ + "args" : + { + "functionArgs" : "cmake_cache_args TARGET ${name} PROPERTY _EP_CMAKE_CACHE_ARGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3657" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635879 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635887 +},{ + "args" : + { + "functionArgs" : "cmake_cache_default_args TARGET ${name} PROPERTY _EP_CMAKE_CACHE_DEFAULT_ARGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3661" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635899 +},{ + "args" : + { + "functionArgs" : "has_cmake_cache_args 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3666" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635908 +},{ + "args" : + { + "functionArgs" : "NOT ${cmake_cache_args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3667" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635921 +},{ + "args" : + { + "functionArgs" : "has_cmake_cache_default_args 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3671" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635931 +},{ + "args" : + { + "functionArgs" : "NOT ${cmake_cache_default_args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3672" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635934 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635942 +},{ + "args" : + { + "functionArgs" : "cmake_generator ${name} _EP_CMAKE_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3676" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635953 +},{ + "args" : + { + "functionArgs" : "cmake_generator_instance ${name} _EP_CMAKE_GENERATOR_INSTANCE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3679" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635964 +},{ + "args" : + { + "functionArgs" : "cmake_generator_platform ${name} _EP_CMAKE_GENERATOR_PLATFORM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3682" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635975 +},{ + "args" : + { + "functionArgs" : "cmake_generator_toolset ${name} _EP_CMAKE_GENERATOR_TOOLSET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3685" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635978 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635985 +},{ + "args" : + { + "functionArgs" : "cmake_generator", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3688" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003635995 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXTRA_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3702" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636008 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636016 +},{ + "args" : + { + "functionArgs" : "APPEND cmd -G${CMAKE_GENERATOR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3705" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636031 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Green Hills MULTI", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3706" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636044 +},{ + "args" : + { + "functionArgs" : "cmake_generator_platform", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3718" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636054 +},{ + "args" : + { + "functionArgs" : "CMAKE_GENERATOR_PLATFORM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3724" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636064 +},{ + "args" : + { + "functionArgs" : "cmake_generator_toolset", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3727" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636083 +},{ + "args" : + { + "functionArgs" : "CMAKE_GENERATOR_TOOLSET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3732" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636093 +},{ + "args" : + { + "functionArgs" : "cmake_generator_instance", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3735" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636102 +},{ + "args" : + { + "functionArgs" : "CMAKE_GENERATOR_INSTANCE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3740" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636112 +},{ + "args" : + { + "functionArgs" : "has_cmake_cache_args OR has_cmake_cache_default_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3747" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636123 +},{ + "args" : + { + "functionArgs" : "APPEND cmd -S -B ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3776" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636128 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636135 +},{ + "args" : + { + "functionArgs" : "${var} ${cmd} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3779" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636139 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636148 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636154 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/cfgcmd.txt.in ${tmp_dir}/${name}-cfgcmd.txt @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3802" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636157 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636262 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${tmp_dir}/${name}-cfgcmd.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3807" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636279 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${_ep_cache_args_script}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3808" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636291 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3810" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636294 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636309 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636318 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636329 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636342 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636358 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3811" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636367 +},{ + "args" : + { + "functionArgs" : "dependees patch", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3814" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636378 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_CONFIGURE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3817" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636391 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3821" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636394 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636400 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3824" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636404 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636410 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_CONFIGURE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3827" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636414 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636422 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3831" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636431 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3834" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636441 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3837" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636459 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3838" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636464 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636472 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636477 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636486 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636498 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636509 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636519 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636530 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636533 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636540 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636564 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636568 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636575 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636585 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636589 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636596 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} configure\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES \\${dependees}\n DEPENDS \\${file_deps}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3841" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636601 +},{ + "args" : + { + "functionArgs" : "gtest_src configure INDEPENDENT FALSE COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= -GUnix Makefiles -S -B WORKING_DIRECTORY ${binary_dir} DEPENDEES ${dependees} DEPENDS ${file_deps}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3841:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636639 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636684 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636688 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636712 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636716 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636734 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636746 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636750 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636756 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636774 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636796 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636814 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636818 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636831 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636843 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636851 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636864 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636877 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636888 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636903 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636908 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636928 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636932 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636942 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636948 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636952 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636959 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636969 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636973 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636981 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636987 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003636992 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637006 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637025 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637029 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637043 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637047 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637084 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637098 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637111 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637146 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637160 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637183 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637193 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637198 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637206 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637216 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637221 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637246 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637251 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637257 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637267 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637279 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637297 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637302 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637308 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637313 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637337 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637349 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637359 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637369 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637381 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637390 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637417 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637427 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637431 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637437 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637441 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637448 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637453 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637464 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637469 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637475 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637501 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637506 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637521 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637526 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637531 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637536 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637543 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637559 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637570 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637596 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637606 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637616 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637627 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637642 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637653 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637678 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637688 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637698 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637703 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637709 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637724 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637735 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637760 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637770 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637774 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637780 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637791 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637805 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637817 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637821 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637851 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637862 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637872 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637883 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637898 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637909 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637934 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637944 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637954 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637958 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637964 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637979 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637990 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003637994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638015 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638030 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638035 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638040 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638051 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638056 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638066 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638071 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638077 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638102 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638107 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638112 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638117 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638122 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638133 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638147 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638152 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638158 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638194 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638200 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638205 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638215 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638219 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638226 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638241 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638246 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638252 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638256 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638278 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638290 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638300 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638309 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638321 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638325 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638331 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638335 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638356 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638360 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638366 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638370 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638375 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638380 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638386 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638391 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638404 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638416 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638442 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638455 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638464 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638474 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638485 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638489 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638495 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638530 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638540 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638550 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638554 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638561 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638576 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638587 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638592 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638613 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638617 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638625 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638629 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638634 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638638 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638643 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638655 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638665 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638689 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638699 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638704 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638709 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638714 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638720 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638742 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638757 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638768 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638783 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638794 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638812 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638825 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638850 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638854 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638861 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638866 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638875 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638879 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638888 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638900 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638914 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638924 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638939 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638943 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638957 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638971 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638979 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638992 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003638996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639005 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639016 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639029 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639042 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639046 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639050 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639066 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639077 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639087 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639091 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639103 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639106 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639117 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639130 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639142 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639147 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639156 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639160 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639168 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639173 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639183 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639193 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639206 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639219 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639230 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639241 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639245 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639266 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639277 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639286 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639293 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639298 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639305 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639310 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639318 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639334 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639345 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639349 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639359 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639371 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639384 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639396 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639408 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639420 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639423 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639433 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639453 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639467 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639479 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639483 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639492 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639496 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639504 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639507 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639517 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639528 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639540 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639552 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639566 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639578 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639591 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639616 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639620 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639630 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639633 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639641 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639654 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639665 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639677 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639681 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639688 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639701 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639712 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639725 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639736 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639758 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639763 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639770 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639774 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639781 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639793 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639806 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639817 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639821 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639830 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639833 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639840 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639855 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639867 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639879 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639890 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639903 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639906 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639913 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639926 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639937 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639950 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639961 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639973 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639989 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003639993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640020 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640025 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640032 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640057 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640062 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640068 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640078 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640082 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640090 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640094 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640100 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640115 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640118 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640127 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640131 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640138 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640142 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640149 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640158 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640170 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640183 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640194 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640205 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640215 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640219 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640225 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640236 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640246 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640249 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640256 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640260 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640267 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640277 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640281 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= -GUnix Makefiles -S /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest -B /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640331 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640378 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640384 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640399 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640403 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640412 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640416 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640423 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640428 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640436 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640446 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640460 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640470 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640482 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640485 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640492 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640506 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640528 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640531 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4349" + }, + "cat" : "script", + "name" : "_ep_add_build_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640535 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3856" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640550 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640571 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640583 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640597 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640607 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640621 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640633 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640638 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3858" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640647 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build TARGET ${name} PROPERTY _EP_CONFIGURE_HANDLED_BY_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3859" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640651 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640659 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3863" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640668 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_BUILD_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3868" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640692 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3873" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640702 +},{ + "args" : + { + "functionArgs" : "${name} BUILD cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3879" + }, + "cat" : "script", + "name" : "_ep_get_build_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640706 +},{ + "args" : + { + "functionArgs" : "cmd ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1887" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640731 +},{ + "args" : + { + "functionArgs" : "args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1888" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640734 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640739 +},{ + "args" : + { + "functionArgs" : "${name} cfg_cmd_id", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1889" + }, + "cat" : "script", + "name" : "_ep_get_configure_command_id", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640743 +},{ + "args" : + { + "functionArgs" : "cmd ${name} _EP_CONFIGURE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1857" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640766 +},{ + "args" : + { + "functionArgs" : "cmd STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1859" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640777 +},{ + "args" : + { + "functionArgs" : "NOT cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1863" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640789 +},{ + "args" : + { + "functionArgs" : "${cfg_cmd_id_var} cmake PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1865" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640807 +},{ + "args" : + { + "functionArgs" : "cfg_cmd_id STREQUAL cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1890" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640818 +},{ + "args" : + { + "functionArgs" : "cmake_generator ${name} _EP_CMAKE_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1892" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640824 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640833 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Make AND ( ${cmake_generator} MATCHES Make OR NOT cmake_generator )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1893" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640837 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640856 +},{ + "args" : + { + "functionArgs" : "cmd $(MAKE)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1896" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640863 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640872 +},{ + "args" : + { + "functionArgs" : "step STREQUAL INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1897" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640882 +},{ + "args" : + { + "functionArgs" : "x${step}x STREQUAL xTESTx", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1900" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640886 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640894 +},{ + "args" : + { + "functionArgs" : "have_args TARGET ${name} PROPERTY _EP_${step}_ARGS SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1962" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640911 +},{ + "args" : + { + "functionArgs" : "have_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1963" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640920 +},{ + "args" : + { + "functionArgs" : "NOT ${args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1967" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640924 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640932 +},{ + "args" : + { + "functionArgs" : "${cmd_var} ${cmd} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1972" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640944 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640949 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3882" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640961 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3886" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640970 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3889" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640975 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640980 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3892" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003640984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641002 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3896" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641007 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641013 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3899" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641017 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641023 +},{ + "args" : + { + "functionArgs" : "build_always TARGET ${name} PROPERTY _EP_BUILD_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3902" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641034 +},{ + "args" : + { + "functionArgs" : "build_always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3906" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641044 +},{ + "args" : + { + "functionArgs" : "always 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3909" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641048 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641054 +},{ + "args" : + { + "functionArgs" : "build_byproducts TARGET ${name} PROPERTY _EP_BUILD_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3912" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641073 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3917" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641082 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3918" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641093 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3919" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641106 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} build\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n BYPRODUCTS \\${build_byproducts}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES configure\n DEPENDS \\${file_deps}\n ALWAYS \\${always}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3921" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641111 +},{ + "args" : + { + "functionArgs" : "gtest_src build INDEPENDENT FALSE COMMAND $(MAKE) BYPRODUCTS ${build_byproducts} WORKING_DIRECTORY ${binary_dir} DEPENDEES configure DEPENDS ${file_deps} ALWAYS ${always}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3921:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641151 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641201 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641205 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641230 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641234 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641249 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641255 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641267 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641277 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641294 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641307 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641319 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641323 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641327 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641339 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641371 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641377 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641384 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641398 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641402 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641409 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641422 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641434 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641438 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641442 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641457 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641468 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641472 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641477 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641489 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641493 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641496 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641506 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641519 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641523 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641527 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641536 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641540 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641563 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641566 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641574 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641580 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641586 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641591 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641623 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641637 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641647 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641651 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641656 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641669 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641688 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641718 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641729 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641733 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641739 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641744 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641750 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641767 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641778 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641805 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641818 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641827 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641831 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641836 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641841 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641848 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641858 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641883 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641887 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641893 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641897 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641902 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641913 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641928 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641934 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641939 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641944 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641965 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641977 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641981 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641987 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003641995 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642016 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642027 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642053 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642064 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642068 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642074 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642078 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642083 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642095 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642104 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642129 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642139 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642148 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642159 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642175 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642186 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642212 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642224 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642227 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642233 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642242 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642247 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642253 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642257 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642263 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642267 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642287 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642291 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642297 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642306 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642317 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642342 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642347 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642353 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642358 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642379 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642391 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642400 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642404 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642409 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642414 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642421 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642424 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642430 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642434 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642454 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642466 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642469 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642475 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642484 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642495 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642499 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642504 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642511 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642537 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642549 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642553 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642558 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642569 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642574 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642592 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642606 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642616 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642630 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642633 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642640 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642669 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642684 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642688 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642698 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642708 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642722 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642734 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642746 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642750 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642760 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642770 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642775 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642785 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642789 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642803 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642823 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642835 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642839 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642848 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642852 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642859 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642863 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642872 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642888 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642892 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642907 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642911 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642918 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642927 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642931 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642943 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642966 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642979 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642983 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642996 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003642999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643008 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643023 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643033 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643045 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643058 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643062 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643069 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643079 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643083 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643096 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643103 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643115 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643130 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643142 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643147 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643155 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643170 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643181 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643194 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643198 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643205 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643220 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643231 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643235 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643244 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643264 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643278 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643289 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643292 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643301 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643312 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643325 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643336 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643339 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643348 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643359 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643371 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643382 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643395 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643406 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643418 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643428 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643440 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643451 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643463 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643467 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643474 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643477 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643486 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643497 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643500 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643509 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643520 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643542 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643546 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643553 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643566 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643591 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643603 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643607 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643615 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643627 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643639 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643642 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643651 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643662 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643666 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643675 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643679 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643686 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643699 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643702 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643709 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643713 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643722 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643733 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643745 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643756 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643769 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643773 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643780 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643793 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643808 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643812 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643822 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643840 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643854 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643858 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643864 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643874 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643887 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643890 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643896 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643911 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643924 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643927 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643935 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643946 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643950 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643955 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643959 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643965 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643977 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003643981 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND $(MAKE) COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644066 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644082 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644094 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644105 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644117 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644129 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644142 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644152 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644156 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644175 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644187 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644193 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644201 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644213 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644219 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644227 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4350" + }, + "cat" : "script", + "name" : "_ep_add_install_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644231 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3938" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644245 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644267 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644279 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644293 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644304 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644308 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644317 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644321 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644330 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644334 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_INSTALL_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3940" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644346 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3945" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644356 +},{ + "args" : + { + "functionArgs" : "${name} INSTALL cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3951" + }, + "cat" : "script", + "name" : "_ep_get_build_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644361 +},{ + "args" : + { + "functionArgs" : "cmd ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1887" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644381 +},{ + "args" : + { + "functionArgs" : "args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1888" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644390 +},{ + "args" : + { + "functionArgs" : "${name} cfg_cmd_id", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1889" + }, + "cat" : "script", + "name" : "_ep_get_configure_command_id", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644393 +},{ + "args" : + { + "functionArgs" : "cmd ${name} _EP_CONFIGURE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1857" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644408 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644417 +},{ + "args" : + { + "functionArgs" : "cmd STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1859" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644428 +},{ + "args" : + { + "functionArgs" : "NOT cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1863" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644433 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644439 +},{ + "args" : + { + "functionArgs" : "${cfg_cmd_id_var} cmake PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1865" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644457 +},{ + "args" : + { + "functionArgs" : "cfg_cmd_id STREQUAL cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1890" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644467 +},{ + "args" : + { + "functionArgs" : "cmake_generator ${name} _EP_CMAKE_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1892" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644482 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Make AND ( ${cmake_generator} MATCHES Make OR NOT cmake_generator )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1893" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644515 +},{ + "args" : + { + "functionArgs" : "cmd $(MAKE)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1896" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644530 +},{ + "args" : + { + "functionArgs" : "step STREQUAL INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1897" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644541 +},{ + "args" : + { + "functionArgs" : "args install", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1898" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644564 +},{ + "args" : + { + "functionArgs" : "x${step}x STREQUAL xTESTx", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1900" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644575 +},{ + "args" : + { + "functionArgs" : "have_args TARGET ${name} PROPERTY _EP_${step}_ARGS SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1962" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644582 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644592 +},{ + "args" : + { + "functionArgs" : "have_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1963" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644602 +},{ + "args" : + { + "functionArgs" : "NOT ${args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1967" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644605 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644613 +},{ + "args" : + { + "functionArgs" : "APPEND cmd ${args}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1970" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644617 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644624 +},{ + "args" : + { + "functionArgs" : "${cmd_var} ${cmd} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1972" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644627 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644639 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3954" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644651 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3958" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644661 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3961" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644665 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644671 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3964" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644682 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3968" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644692 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3971" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644695 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644701 +},{ + "args" : + { + "functionArgs" : "build_always TARGET ${name} PROPERTY _EP_BUILD_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3977" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644713 +},{ + "args" : + { + "functionArgs" : "build_always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3981" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644716 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644722 +},{ + "args" : + { + "functionArgs" : "always 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3984" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644732 +},{ + "args" : + { + "functionArgs" : "install_byproducts TARGET ${name} PROPERTY _EP_INSTALL_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3987" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644743 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3992" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644747 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644752 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3993" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644762 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3994" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644775 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3994" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644778 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644785 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} install\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n BYPRODUCTS \\${install_byproducts}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES build\n ALWAYS \\${always}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3996" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644790 +},{ + "args" : + { + "functionArgs" : "gtest_src install INDEPENDENT FALSE COMMAND $(MAKE) install BYPRODUCTS ${install_byproducts} WORKING_DIRECTORY ${binary_dir} DEPENDEES build ALWAYS ${always}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3996:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644835 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644866 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644876 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644879 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644893 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644904 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644907 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644923 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644927 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644934 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644944 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644961 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644973 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644989 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003644992 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645005 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645017 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645024 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645029 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645036 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645040 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645049 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645053 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645059 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645072 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645076 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645083 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645088 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645091 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645106 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645117 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645126 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645130 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645149 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645153 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645157 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645167 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645179 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645183 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645196 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645199 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645222 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645234 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645245 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645250 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645278 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645291 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645295 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645301 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645310 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645322 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645332 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645360 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645370 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645380 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645392 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645408 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645419 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645424 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645446 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645450 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645458 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645468 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645487 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645492 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645499 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645503 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645509 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645513 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645534 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645544 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645554 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645565 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645580 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645591 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645616 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645620 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645625 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645635 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645646 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645650 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645660 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645665 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645671 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645696 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645701 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645708 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645718 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645721 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645727 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645738 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645742 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645747 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645752 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645773 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645784 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645802 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645812 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645824 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645834 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645859 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645863 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645869 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645879 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645890 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645905 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645916 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645920 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645942 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645953 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645957 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645963 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645966 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645971 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645987 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003645997 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646021 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646031 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646041 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646052 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646056 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646066 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646071 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646077 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646102 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646106 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646113 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646132 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646136 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646142 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646146 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646154 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646163 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646167 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646188 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646198 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646207 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646218 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646240 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646254 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646264 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646278 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646288 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646291 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646304 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646308 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646317 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646321 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646331 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646335 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646341 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646355 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646359 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646367 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646379 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646393 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646402 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646427 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646431 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646445 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646465 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646470 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646478 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646491 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646501 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646514 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646518 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646529 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646534 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646537 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646553 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646563 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646573 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646577 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646589 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646592 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646602 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646605 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646614 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646618 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646629 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646655 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646671 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646681 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646693 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646707 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646710 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646718 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646722 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646728 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646742 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646756 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646763 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646775 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646791 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646802 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646816 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646831 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646842 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646855 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646866 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646879 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646890 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646903 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646914 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646926 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646930 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646937 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646941 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646950 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646961 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646974 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646978 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646985 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003646997 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647008 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647019 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647024 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647041 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647054 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647066 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647069 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647078 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647082 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647089 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647093 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647101 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647112 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647124 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647128 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647135 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647139 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647148 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647158 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647170 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647182 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647194 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647198 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647205 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647217 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647228 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647240 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647252 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647255 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647264 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647276 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647288 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647292 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647299 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647323 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647334 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647347 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647350 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647358 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647370 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647381 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647394 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647405 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647408 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647418 +},{ + "args" : + { + "functionArgs" : "val TARGET gtest_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647422 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647429 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647441 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647457 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647471 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647475 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647481 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647484 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647493 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647497 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647503 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647507 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647513 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647525 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647528 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647534 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647549 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647553 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647562 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647586 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647597 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647614 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647625 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647629 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647637 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647648 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647652 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND $(MAKE) install COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647722 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647728 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647742 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647755 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647766 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647778 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647788 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647794 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647802 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647812 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647824 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647834 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647848 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647853 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647866 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647873 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4355" + }, + "cat" : "script", + "name" : "_ep_add_test_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647877 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4012" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647891 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647912 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647924 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647938 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647952 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647960 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647974 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647978 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647986 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647991 +},{ + "args" : + { + "functionArgs" : "before TARGET ${name} PROPERTY _EP_TEST_BEFORE_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4014" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003647995 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648009 +},{ + "args" : + { + "functionArgs" : "after TARGET ${name} PROPERTY _EP_TEST_AFTER_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4015" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648022 +},{ + "args" : + { + "functionArgs" : "exclude TARGET ${name} PROPERTY _EP_TEST_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4016" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648025 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648033 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_TEST_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4017" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648045 +},{ + "args" : + { + "functionArgs" : "cmd_set OR before OR after OR exclude", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4022" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648072 +},{ + "args" : + { + "functionArgs" : "gmock_src PREFIX vendor/gtm SOURCE_DIR vendor/gtm/src/googletest/googlemock INSTALL_DIR vendor/gtm/gmock CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/vendor/gtm/gmock -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} DOWNLOAD_COMMAND UPDATE_COMMAND ", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:38" + }, + "cat" : "script", + "name" : "externalproject_add", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648077 +},{ + "args" : + { + "functionArgs" : "GET CMP0097 _EP_CMP0097 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4091" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648116 +},{ + "args" : + { + "functionArgs" : "GET CMP0114 cmp0114 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4094" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648126 +},{ + "args" : + { + "functionArgs" : "CMAKE_XCODE_BUILD_SYSTEM VERSION_GREATER_EQUAL 12 AND NOT cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4097" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648131 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648141 +},{ + "args" : + { + "functionArgs" : "GET CMP0135 _EP_CMP0135 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4110" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648146 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648152 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4114" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648155 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648175 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648185 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648189 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648195 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648199 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648212 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4117" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648215 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648223 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4118" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648227 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648247 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648250 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648278 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648289 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648299 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648303 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648315 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648327 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648331 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648340 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648344 +},{ + "args" : + { + "functionArgs" : "PUSH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4120" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648347 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648352 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4121" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648362 +},{ + "args" : + { + "functionArgs" : "${name} ALL DEPENDS ${complete_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4129" + }, + "cat" : "script", + "name" : "add_custom_target", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648366 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648397 +},{ + "args" : + { + "functionArgs" : "POP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4130" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648407 +},{ + "args" : + { + "functionArgs" : "${name} PROPERTIES _EP_IS_EXTERNAL_PROJECT 1 LABELS ${name} FOLDER ExternalProjectTargets/${name} _EP_CMP0114 ${cmp0114}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4131" + }, + "cat" : "script", + "name" : "set_target_properties", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648411 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648424 +},{ + "args" : + { + "functionArgs" : "keywords PREFIX TMP_DIR STAMP_DIR LOG_DIR DOWNLOAD_DIR SOURCE_DIR BINARY_DIR INSTALL_DIR DOWNLOAD_COMMAND URL URL_HASH URL_MD5 DOWNLOAD_NAME DOWNLOAD_EXTRACT_TIMESTAMP DOWNLOAD_NO_EXTRACT DOWNLOAD_NO_PROGRESS TIMEOUT INACTIVITY_TIMEOUT HTTP_USERNAME HTTP_PASSWORD HTTP_HEADER TLS_VERIFY TLS_CAINFO NETRC NETRC_FILE GIT_REPOSITORY GIT_TAG GIT_REMOTE_NAME GIT_SUBMODULES GIT_SUBMODULES_RECURSE GIT_SHALLOW GIT_PROGRESS GIT_CONFIG GIT_REMOTE_UPDATE_STRATEGY SVN_REPOSITORY SVN_REVISION SVN_USERNAME SVN_PASSWORD SVN_TRUST_CERT HG_REPOSITORY HG_TAG CVS_REPOSITORY CVS_MODULE CVS_TAG UPDATE_COMMAND UPDATE_DISCONNECTED PATCH_COMMAND CONFIGURE_COMMAND CMAKE_COMMAND CMAKE_GENERATOR CMAKE_GENERATOR_PLATFORM CMAKE_GENERATOR_TOOLSET CMAKE_GENERATOR_INSTANCE CMAKE_ARGS CMAKE_CACHE_ARGS CMAKE_CACHE_DEFAULT_ARGS SOURCE_SUBDIR CONFIGURE_HANDLED_BY_BUILD BUILD_COMMAND BUILD_IN_SOURCE BUILD_ALWAYS BUILD_BYPRODUCTS INSTALL_COMMAND INSTALL_BYPRODUCTS TEST_COMMAND TEST_BEFORE_INSTALL TEST_AFTER_INSTALL TEST_EXCLUDE_FROM_MAIN LOG_DOWNLOAD LOG_UPDATE LOG_PATCH LOG_CONFIGURE LOG_BUILD LOG_INSTALL LOG_TEST LOG_MERGED_STDOUTERR LOG_OUTPUT_ON_FAILURE USES_TERMINAL_DOWNLOAD USES_TERMINAL_UPDATE USES_TERMINAL_PATCH USES_TERMINAL_CONFIGURE USES_TERMINAL_BUILD USES_TERMINAL_INSTALL USES_TERMINAL_TEST DEPENDS EXCLUDE_FROM_ALL STEP_TARGETS INDEPENDENT_STEP_TARGETS LIST_SEPARATOR EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4138" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648477 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add ${keywords} ${name} _EP_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4274" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648482 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648511 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648529 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648550 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648559 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648605 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648614 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648643 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648650 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648660 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648678 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648701 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648719 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648726 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648760 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648778 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648797 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648818 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648848 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648858 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648869 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648912 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648943 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648957 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648973 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003648995 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649002 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649013 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649072 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649079 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649090 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649107 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649115 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649128 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649158 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649167 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649178 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649225 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649232 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649259 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649266 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649277 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649295 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649303 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649316 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649323 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649334 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649382 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649395 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649405 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649417 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649422 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649435 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649447 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649474 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649496 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649500 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649505 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649509 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649514 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649527 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649530 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649536 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649540 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649590 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649601 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649606 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649611 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649616 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649623 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649627 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649639 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649651 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649677 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649681 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649687 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649691 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649696 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649701 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649707 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649722 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649733 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649759 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649769 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649774 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649779 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649790 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649794 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649804 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649815 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649840 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649850 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649860 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649871 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649886 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649905 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649933 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649955 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649959 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649965 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649975 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649987 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003649996 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650022 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650032 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650042 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650046 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650053 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650068 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650078 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650082 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650092 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650103 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650130 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650152 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650155 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650162 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650165 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650171 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650176 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650183 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650192 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650218 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650228 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650238 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650243 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650259 +},{ + "args" : + { + "functionArgs" : "have_key TARGET ${name} PROPERTY ${ns}${key} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1276" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650264 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650275 +},{ + "args" : + { + "functionArgs" : "have_key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650285 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1281" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650289 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650299 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650308 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4281" + }, + "cat" : "script", + "name" : "_ep_set_directories", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650312 +},{ + "args" : + { + "functionArgs" : "prefix TARGET ${name} PROPERTY _EP_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1641" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650330 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650339 +},{ + "args" : + { + "functionArgs" : "NOT prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1642" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650350 +},{ + "args" : + { + "functionArgs" : "prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1651" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650360 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${prefix} prefix", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1652" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650365 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650376 +},{ + "args" : + { + "functionArgs" : "tmp_default ${prefix}/tmp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1653" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650380 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650387 +},{ + "args" : + { + "functionArgs" : "download_default ${prefix}/src", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1654" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650391 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650398 +},{ + "args" : + { + "functionArgs" : "source_default ${prefix}/src/${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1655" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650402 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650410 +},{ + "args" : + { + "functionArgs" : "binary_default ${prefix}/src/${name}-build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1656" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650414 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650422 +},{ + "args" : + { + "functionArgs" : "stamp_default ${prefix}/src/${name}-stamp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1657" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650433 +},{ + "args" : + { + "functionArgs" : "install_default ${prefix}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1658" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650444 +},{ + "args" : + { + "functionArgs" : "build_in_source TARGET ${name} PROPERTY _EP_BUILD_IN_SOURCE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1668" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650458 +},{ + "args" : + { + "functionArgs" : "build_in_source", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1669" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650468 +},{ + "args" : + { + "functionArgs" : "top ${CMAKE_CURRENT_BINARY_DIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1677" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650481 +},{ + "args" : + { + "functionArgs" : "places stamp download source binary install tmp", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1680" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650485 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650492 +},{ + "args" : + { + "functionArgs" : "var ${places}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1681" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650496 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650504 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650517 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650532 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650536 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650543 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650569 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650573 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650590 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650607 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650621 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650635 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650646 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650649 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650659 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650670 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650682 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650693 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650707 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650720 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650733 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650743 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650747 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650756 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650767 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650779 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650793 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650805 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650818 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650829 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650841 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650852 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650863 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650884 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650899 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650911 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650924 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650935 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650948 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650958 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650970 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650984 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003650996 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651010 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1682" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651020 +},{ + "args" : + { + "functionArgs" : "${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1683" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651023 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651033 +},{ + "args" : + { + "functionArgs" : "NOT ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1684" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651036 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651043 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${${var}_default}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1685" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651055 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1687" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651066 +},{ + "args" : + { + "functionArgs" : "${var}_dir ${top}/${${var}_dir} ABSOLUTE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1688" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651080 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${${var}_dir} ${var}_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1690" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651093 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_${VAR}_DIR ${${var}_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1691" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651107 +},{ + "args" : + { + "functionArgs" : "log_dir TARGET ${name} PROPERTY _EP_LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1695" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651111 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651119 +},{ + "args" : + { + "functionArgs" : "NOT log_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1696" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651129 +},{ + "args" : + { + "functionArgs" : "log_dir TARGET ${name} PROPERTY _EP_STAMP_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1697" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651141 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${log_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1699" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651152 +},{ + "args" : + { + "functionArgs" : "TO_CMAKE_PATH ${log_dir} log_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1702" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651156 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651173 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_LOG_DIR ${log_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1703" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651186 +},{ + "args" : + { + "functionArgs" : "source_subdir TARGET ${name} PROPERTY _EP_SOURCE_SUBDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1705" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651190 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651197 +},{ + "args" : + { + "functionArgs" : "NOT source_subdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1706" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651208 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_SOURCE_SUBDIR ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1707" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651219 +},{ + "args" : + { + "functionArgs" : "build_in_source", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1718" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651230 +},{ + "args" : + { + "functionArgs" : "script_filename ${tmp_dir}/${name}-mkdirs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1737" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651243 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/mkdirs.cmake.in ${script_filename} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1738" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651247 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651389 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1743" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651403 +},{ + "args" : + { + "functionArgs" : "${script_filename}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1744" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651407 +},{ + "args" : + { + "functionArgs" : "VERSION 3.5", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake:4" + }, + "cat" : "script", + "name" : "cmake_minimum_required", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651512 +},{ + "args" : + { + "functionArgs" : "MAKE_DIRECTORY /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gmock /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake:6" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651551 +},{ + "args" : + { + "functionArgs" : "configSubDirs", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake:16" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651560 +},{ + "args" : + { + "functionArgs" : "subDir IN LISTS configSubDirs", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake:17" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651571 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake:20" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651575 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651591 +},{ + "args" : + { + "functionArgs" : "${name} done done_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4282" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651595 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651611 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651633 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651638 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651645 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651649 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651659 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651669 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651682 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651710 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651714 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651731 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651742 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651751 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651764 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651767 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651781 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651797 +},{ + "args" : + { + "functionArgs" : "${name} install install_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4283" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651801 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651813 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651832 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651837 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651844 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651857 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651861 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651867 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651880 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651895 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651899 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651908 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651914 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651924 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651927 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651933 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651948 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651961 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651973 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651977 +},{ + "args" : + { + "functionArgs" : "exclude_from_all TARGET ${name} PROPERTY _EP_EXCLUDE_FROM_ALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4286" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003651998 +},{ + "args" : + { + "functionArgs" : "exclude_from_all", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4290" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652016 +},{ + "args" : + { + "functionArgs" : "repo TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4294" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652029 +},{ + "args" : + { + "functionArgs" : "NOT repo STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4295" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652032 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652040 +},{ + "args" : + { + "functionArgs" : "GET CMP0150 cmp0150 PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4296" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652044 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652052 +},{ + "args" : + { + "functionArgs" : "source_dir TARGET ${name} PROPERTY _EP_SOURCE_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4299" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652055 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652064 +},{ + "args" : + { + "functionArgs" : "work_dir ${source_dir} PATH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4300" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652068 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652075 +},{ + "args" : + { + "functionArgs" : "resolved_git_repository ${repo} ${cmp0150} ${work_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4301" + }, + "cat" : "script", + "name" : "_ep_resolve_git_remote", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652079 +},{ + "args" : + { + "functionArgs" : "git_repository STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:145" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652095 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652102 +},{ + "args" : + { + "functionArgs" : "${output_variable} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652106 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652113 +},{ + "args" : + { + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake:147" + }, + "cat" : "script", + "name" : "return", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652125 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} PROPERTY _EP_GIT_REPOSITORY ${resolved_git_repository}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4302" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652138 +},{ + "args" : + { + "functionArgs" : "complete_outputs ${complete_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4314" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652142 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652149 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Ninja", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4315" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652164 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${complete_outputs} COMMENT Completed '${name}' COMMAND ${CMAKE_COMMAND} -E make_directory ${cmf_dir}${cfgdir} COMMAND ${CMAKE_COMMAND} -E touch ${complete_stamp_file} COMMAND ${CMAKE_COMMAND} -E touch ${done_stamp_file} DEPENDS ${install_stamp_file} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4319" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652169 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652205 +},{ + "args" : + { + "functionArgs" : "deps TARGET ${name} PROPERTY _EP_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4330" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652219 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4334" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652229 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4344" + }, + "cat" : "script", + "name" : "_ep_add_mkdir_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652233 +},{ + "args" : + { + "functionArgs" : "${name} tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2691" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652244 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652257 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652268 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652280 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652294 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652304 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652308 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652317 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652331 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652340 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652345 +},{ + "args" : + { + "functionArgs" : "script_filename ${tmp_dir}/${name}-mkdirs.cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2692" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652349 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652358 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2693" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652361 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652377 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652381 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652388 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652391 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652397 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652413 +},{ + "args" : + { + "functionArgs" : "${name} mkdir INDEPENDENT TRUE COMMENT Creating directories for '${name}' COMMAND ${CMAKE_COMMAND} -Dcfgdir=${cfgdir} -P ${script_filename}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2695" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652417 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652457 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652461 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652488 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652498 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652511 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652517 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652528 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652537 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652553 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652566 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652578 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652581 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652585 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652597 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652616 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652628 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652632 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652641 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652662 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652676 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652680 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652688 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652693 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652696 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652711 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652715 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652722 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652731 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652746 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652749 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652759 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652762 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652775 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652787 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652791 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652814 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652825 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652836 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652841 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652871 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652885 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652895 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652898 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652904 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652909 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652916 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652920 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652926 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652930 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652954 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652958 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652964 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652983 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003652996 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653013 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653025 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653029 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653052 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653065 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653069 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653074 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653078 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653083 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653095 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653105 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653109 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653130 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653140 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653144 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653150 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653161 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653165 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653176 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653187 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653213 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653225 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653235 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653238 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653243 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653255 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653264 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653289 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653299 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653313 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653319 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653331 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653335 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653346 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653357 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653383 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653387 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653392 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653397 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653402 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653406 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653413 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653427 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653438 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653442 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653462 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653467 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653472 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653476 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653482 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653492 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653497 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653507 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653517 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653542 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653552 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653561 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653566 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653572 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653587 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653593 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653597 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653608 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653618 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653622 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653640 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653652 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653669 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653682 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653696 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653706 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653720 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653724 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653732 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653736 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653744 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653757 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653767 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653781 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653790 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653794 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653803 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653816 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653819 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653827 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653837 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653841 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653862 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653874 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653891 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653902 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653925 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653940 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653944 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653952 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653956 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653965 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653976 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653989 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003653993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654000 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654004 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654012 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654016 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654023 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654036 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654046 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654050 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654059 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654062 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654070 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654083 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654094 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654097 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654106 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654117 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654128 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654140 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654144 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654153 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654157 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654164 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654168 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654176 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654187 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654190 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654208 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654219 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654232 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654236 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654243 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654246 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654255 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654266 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654278 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654289 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654292 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654302 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654313 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654325 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654336 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654340 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654347 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654351 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654365 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654368 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654374 +},{ + "args" : + { + "functionArgs" : "comment TARGET ${name} PROPERTY _EP_${step}_COMMENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2469" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654378 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654386 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654390 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654398 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654402 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654408 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654417 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654429 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654433 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654438 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654453 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654457 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654466 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654489 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654502 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654506 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654511 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654522 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654527 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654535 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654546 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654556 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654567 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654571 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654626 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654658 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654664 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654680 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654692 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654704 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654716 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654727 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654740 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654744 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654750 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654754 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654763 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654773 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654787 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654792 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654799 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654807 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4345" + }, + "cat" : "script", + "name" : "_ep_add_download_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654811 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir download_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2747" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654833 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654861 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654870 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654883 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654887 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654897 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654908 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654921 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654934 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654944 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654956 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654966 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654978 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654989 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003654993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655000 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655003 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655011 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655021 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655025 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655033 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655037 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655047 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655058 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655070 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655079 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655083 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655092 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655095 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655108 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2754" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655112 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655120 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2755" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655142 +},{ + "args" : + { + "functionArgs" : "cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2756" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655147 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655154 +},{ + "args" : + { + "functionArgs" : "svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2757" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655166 +},{ + "args" : + { + "functionArgs" : "git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2758" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655177 +},{ + "args" : + { + "functionArgs" : "hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2759" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655188 +},{ + "args" : + { + "functionArgs" : "url TARGET ${name} PROPERTY _EP_URL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2760" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655199 +},{ + "args" : + { + "functionArgs" : "fname TARGET ${name} PROPERTY _EP_DOWNLOAD_NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2761" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655210 +},{ + "args" : + { + "functionArgs" : "REGEX REPLACE file:// url ${url}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2764" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655224 +},{ + "args" : + { + "functionArgs" : "depends", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2766" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655228 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655233 +},{ + "args" : + { + "functionArgs" : "comment", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2767" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655236 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655241 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2768" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655245 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655250 +},{ + "args" : + { + "functionArgs" : "extra_repo_info", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2769" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655258 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2771" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655267 +},{ + "args" : + { + "functionArgs" : "work_dir ${download_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2772" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655292 +},{ + "args" : + { + "functionArgs" : "method custom", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2773" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655301 +},{ + "args" : + { + "functionArgs" : "repo_info_file ${stamp_dir}/${name}-${method}info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3194" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655313 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655324 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${repo_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3195" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655336 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/RepositoryInfo.txt.in ${repo_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3196" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655340 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655467 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_DOWNLOAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3202" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655484 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3206" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655496 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3209" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655500 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655507 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_DOWNLOAD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3212" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655511 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655519 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3216" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655529 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3219" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655533 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655538 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3222" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655542 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655558 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3223" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655569 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(\\${name} download\n INDEPENDENT TRUE\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${work_dir}\n DEPENDS \\${depends}\n DEPENDEES mkdir\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3226" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655574 +},{ + "args" : + { + "functionArgs" : "${name} download INDEPENDENT TRUE COMMENT ${comment} COMMAND WORKING_DIRECTORY ${work_dir} DEPENDS ${depends} DEPENDEES mkdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3226:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655620 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655657 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655661 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655673 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655685 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655689 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655699 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655704 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655715 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655725 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655742 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655755 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655770 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655774 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655786 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655806 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655811 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655819 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655823 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655832 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655842 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655847 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655855 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655872 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655875 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655891 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655912 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655921 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655934 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655938 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655941 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655951 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655954 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655967 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655971 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655980 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003655983 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656008 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656016 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656028 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656040 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656045 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656073 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656078 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656086 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656097 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656106 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656111 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656118 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656128 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656157 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656167 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656172 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656177 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656189 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656193 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656205 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656216 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656257 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656270 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656280 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656289 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656301 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656311 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656337 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656349 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656358 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656367 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656379 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656388 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656392 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656414 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656418 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656425 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656429 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656435 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656444 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656455 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656464 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656469 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656490 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656500 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656509 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656520 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656536 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656547 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656583 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656596 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656606 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656609 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656615 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656626 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656636 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656640 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656661 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656665 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656671 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656681 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656692 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656707 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656718 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656722 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656744 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656756 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656765 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656769 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656774 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656786 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656790 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656795 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656820 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656824 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656830 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656839 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656850 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656872 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656895 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656899 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656906 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656919 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656923 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656930 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656933 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656946 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656950 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656959 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656973 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656983 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003656998 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657010 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657021 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657025 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657035 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657045 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657050 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657059 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657063 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657076 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657097 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657102 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657109 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657113 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657122 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657133 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657146 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657149 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657162 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657166 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657176 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657182 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657195 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657203 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657207 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657213 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657229 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657243 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657246 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657256 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657260 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657264 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657271 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657275 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657283 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657298 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657301 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657307 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657320 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657337 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657349 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657360 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657364 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657376 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657383 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657395 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657403 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657410 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657421 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657426 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657434 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657449 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657460 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657473 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657476 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657493 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657507 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657511 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657518 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657530 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657541 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657554 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657564 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657568 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657576 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657580 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657587 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657591 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657600 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657604 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657611 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657615 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657623 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657634 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657645 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657649 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657656 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657667 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657671 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657680 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657691 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657695 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657703 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657707 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657714 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657717 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657726 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657737 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657740 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657749 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657752 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657768 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657781 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657785 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657792 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657804 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657815 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657818 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657827 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657831 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657838 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657842 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657850 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657861 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657866 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657870 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657879 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657889 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657901 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657910 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657920 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657924 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657932 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657936 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657941 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657956 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657959 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657968 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657972 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657979 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657983 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657990 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003657994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658002 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658006 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658011 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658021 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658034 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658054 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658065 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658070 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658143 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658147 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658158 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658170 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658181 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658193 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658203 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658209 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658217 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658227 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658231 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658238 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658241 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658248 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658264 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658276 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658286 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658291 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4346" + }, + "cat" : "script", + "name" : "_ep_add_update_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658295 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3261" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658314 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658330 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658339 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658344 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658351 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658364 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658368 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658375 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658455 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658469 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658486 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658498 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658509 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658513 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658522 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658525 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658533 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658537 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658544 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658556 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658559 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658565 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658577 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658602 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658608 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_UPDATE_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3263" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658619 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_UPDATE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3264" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658630 +},{ + "args" : + { + "functionArgs" : "cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3265" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658641 +},{ + "args" : + { + "functionArgs" : "svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3266" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658652 +},{ + "args" : + { + "functionArgs" : "git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3267" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658663 +},{ + "args" : + { + "functionArgs" : "hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3268" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658674 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3270" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658677 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658698 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658701 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658707 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658719 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658734 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3272" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658753 +},{ + "args" : + { + "functionArgs" : "comment", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3273" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658757 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658762 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3274" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658765 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658770 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3275" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658773 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658778 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3277" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658787 +},{ + "args" : + { + "functionArgs" : "work_dir ${source_dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3278" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658808 +},{ + "args" : + { + "functionArgs" : "NOT x${cmd} STREQUAL x", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3279" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658812 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658821 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED cmd_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3452" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658837 +},{ + "args" : + { + "functionArgs" : "cmd_disconnected ${cmd}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3453" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658841 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658848 +},{ + "args" : + { + "functionArgs" : "update_info_file ${stamp_dir}/${name}-update-info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3455" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658851 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658860 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${update_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3456" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658864 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658872 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/UpdateInfo.txt.in ${update_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3457" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658979 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_UPDATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003658996 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3467" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659007 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3470" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659011 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659017 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_UPDATE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3473" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659029 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3477" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659039 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3480" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659048 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659052 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659057 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3484" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659066 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} update\n INDEPENDENT TRUE\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ALWAYS \\${always}\n EXCLUDE_FROM_MAIN \\${update_disconnected}\n WORKING_DIRECTORY \\${work_dir}\n DEPENDEES download\n DEPENDS \\${file_deps}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3487" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659071 +},{ + "args" : + { + "functionArgs" : "gmock_src update INDEPENDENT TRUE COMMENT ${comment} COMMAND ALWAYS ${always} EXCLUDE_FROM_MAIN ${update_disconnected} WORKING_DIRECTORY ${work_dir} DEPENDEES download DEPENDS ${file_deps}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3487:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659107 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659155 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659159 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659191 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659195 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659212 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659223 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659233 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659246 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659249 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659262 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659266 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659278 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659282 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659294 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659313 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659325 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659339 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659349 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659362 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659366 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659379 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659382 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659391 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659397 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659408 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659411 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659417 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659421 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659429 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659433 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659446 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659449 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659462 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659466 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659489 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659494 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659517 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659521 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659529 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659540 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659573 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659578 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659586 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659596 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659599 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659605 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659617 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659626 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659671 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659675 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659681 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659691 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659703 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659719 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659731 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659758 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659763 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659771 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659775 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659781 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659790 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659802 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659811 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659815 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659848 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659853 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659861 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659871 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659880 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659892 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659896 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659901 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659926 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659931 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659938 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659942 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659947 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659956 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659961 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659968 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659972 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659978 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003659982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660010 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660023 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660027 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660033 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660037 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660042 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660054 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660064 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660068 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660089 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660094 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660101 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660111 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660114 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660119 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660131 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660140 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660178 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660183 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660188 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660193 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660198 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660203 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660209 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660226 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660231 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660237 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660263 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660267 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660275 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660285 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660294 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660298 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660305 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660309 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660315 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660319 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660339 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660349 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660353 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660358 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660369 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660384 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660395 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660420 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660432 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660442 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660445 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660451 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660462 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660466 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660471 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660485 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660508 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660518 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660528 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660539 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660554 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660561 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660575 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660586 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660599 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660609 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660613 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660626 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660639 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660653 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660663 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660677 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660681 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660689 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660701 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660705 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660714 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660724 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660739 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660743 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660757 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660777 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660799 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660804 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660813 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660823 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660837 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660853 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660857 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660867 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660873 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660884 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660887 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660893 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660897 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660909 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660922 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660935 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660939 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660942 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660950 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660961 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660966 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660977 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660981 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660987 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660991 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003660999 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661003 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661012 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661023 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661033 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661037 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661057 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661068 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661084 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661105 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661111 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661120 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661134 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661138 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661146 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661150 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661159 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661163 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661170 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661183 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661186 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661194 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661206 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661217 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661221 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661230 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661240 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661253 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661256 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661264 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661277 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661288 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661291 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661301 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661312 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661322 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661333 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661345 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661349 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661361 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661365 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661380 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661394 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661405 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661418 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661422 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661429 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661441 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661445 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661452 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661464 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661475 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661487 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661491 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661498 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661511 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661522 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661525 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661534 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661538 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661550 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661554 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661563 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661573 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661577 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661585 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661589 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661595 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661599 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661604 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661616 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661620 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661626 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661640 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661664 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661668 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661676 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661680 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661687 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661691 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661700 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661704 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661709 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661719 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661731 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661742 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661746 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661753 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661757 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661832 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661846 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661850 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661859 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661870 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661874 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661881 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661892 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661897 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661905 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661909 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661915 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661926 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661930 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661937 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661942 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661950 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661955 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661972 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3501" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661992 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003661998 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4347" + }, + "cat" : "script", + "name" : "_ep_add_patch_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662002 +},{ + "args" : + { + "functionArgs" : "${name} source_dir stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3528" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662016 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662038 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662050 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662063 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662074 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662086 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662098 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662102 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662108 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662112 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662120 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662123 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662129 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662142 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662158 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_PATCH_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3530" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662169 +},{ + "args" : + { + "functionArgs" : "cmd TARGET ${name} PROPERTY _EP_PATCH_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3531" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662173 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662180 +},{ + "args" : + { + "functionArgs" : "work_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3533" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662184 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662189 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3535" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662192 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662198 +},{ + "args" : + { + "functionArgs" : "patch_info_file ${stamp_dir}/${name}-patch-info.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3541" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662210 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/PatchInfo.txt.in ${patch_info_file} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3542" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662322 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_PATCH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3548" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662339 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3552" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662350 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3555" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662355 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662361 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_PATCH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3558" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662365 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662374 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3562" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662378 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662394 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3565" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662405 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3568" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662408 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662423 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662432 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662442 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662454 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662458 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662466 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662470 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3570" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662479 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3571" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662489 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} patch\n INDEPENDENT TRUE\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${work_dir}\n EXCLUDE_FROM_MAIN \\${update_disconnected}\n DEPENDEES update\n DEPENDS \\${patch_info_file}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3574" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662493 +},{ + "args" : + { + "functionArgs" : "gmock_src patch INDEPENDENT TRUE COMMAND WORKING_DIRECTORY ${work_dir} EXCLUDE_FROM_MAIN ${update_disconnected} DEPENDEES update DEPENDS ${patch_info_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3574:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662526 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662578 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662582 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662604 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662608 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662618 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662624 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662637 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662648 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662661 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662665 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662678 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662694 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662698 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662711 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662733 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662741 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662747 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662754 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662768 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662779 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662792 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662804 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662809 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662813 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662829 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662840 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662843 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662849 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662853 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662861 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662865 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662878 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662882 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662895 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662899 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662908 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662912 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662934 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662945 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662957 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662991 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003662996 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663004 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663009 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663015 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663024 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663037 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663058 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663089 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663094 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663100 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663110 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663115 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663121 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663138 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663149 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663177 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663190 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663194 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663200 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663204 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663209 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663221 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663225 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663231 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663236 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663258 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663270 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663280 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663289 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663301 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663310 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663337 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663348 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663358 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663367 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663379 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663392 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663398 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663402 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663425 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663429 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663437 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663441 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663447 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663450 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663456 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663468 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663472 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663477 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663502 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663507 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663513 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663522 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663527 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663534 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663538 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663550 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663555 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663561 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663600 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663604 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663612 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663615 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663621 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663624 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663630 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663641 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663650 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663654 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663675 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663679 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663685 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663689 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663694 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663699 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663705 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663710 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663737 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663741 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663751 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663762 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663775 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663785 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663789 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663802 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663815 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663819 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663829 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663833 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663839 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663852 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663865 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663876 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663880 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663889 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663893 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663899 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663914 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663918 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663932 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663955 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663967 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663971 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663980 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663991 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003663995 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664009 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664022 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664027 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664030 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664052 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664059 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664062 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664070 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664079 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664083 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664096 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664109 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664113 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664122 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664126 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664137 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664141 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664149 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664164 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664167 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664173 +},{ + "args" : + { + "functionArgs" : "comment No ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2437" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664185 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664189 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664198 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664210 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664220 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664224 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664244 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664248 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664255 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664264 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664271 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664275 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664282 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664287 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664295 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664299 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664309 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664320 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664323 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664343 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664347 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664355 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664358 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664368 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664378 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664382 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664391 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664394 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664401 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664414 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664424 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664428 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664437 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664447 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664451 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664460 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664464 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664471 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664483 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664487 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664494 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664504 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664508 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664519 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664532 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664536 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664541 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664554 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664563 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664572 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664576 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664584 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664593 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664598 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664616 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664630 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664634 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664641 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664653 +},{ + "args" : + { + "functionArgs" : "command ${CMAKE_COMMAND} -E echo_append", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2529" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664665 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664674 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664677 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664684 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664688 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664696 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664707 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664718 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664722 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664760 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664793 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664798 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664802 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664813 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664825 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664829 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664836 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664847 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664851 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664858 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664863 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664871 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664874 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664881 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664884 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664892 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664902 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664915 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664948 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3587" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664958 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664961 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4348" + }, + "cat" : "script", + "name" : "_ep_add_configure_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664964 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir tmp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3784" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664978 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003664992 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665003 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665008 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665016 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665029 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665039 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665052 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665056 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665064 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665068 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665074 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665078 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665086 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665096 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665108 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665112 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665119 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665124 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3786" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665128 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665133 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build TARGET ${name} PROPERTY _EP_CONFIGURE_HANDLED_BY_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3787" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665137 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665145 +},{ + "args" : + { + "functionArgs" : "NOT configure_handled_by_build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3791" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665149 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665155 +},{ + "args" : + { + "functionArgs" : "file_deps ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3793" + }, + "cat" : "script", + "name" : "_ep_get_file_deps", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665159 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3604" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665176 +},{ + "args" : + { + "functionArgs" : "deps TARGET ${name} PROPERTY _EP_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3606" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665187 +},{ + "args" : + { + "functionArgs" : "dep IN LISTS deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3610" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665197 +},{ + "args" : + { + "functionArgs" : "${var} ${file_deps} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3627" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665214 +},{ + "args" : + { + "functionArgs" : "cmd ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3796" + }, + "cat" : "script", + "name" : "_ep_extract_configure_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665218 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_CONFIGURE_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3631" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665233 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665251 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3636" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665256 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665262 +},{ + "args" : + { + "functionArgs" : "cmake_command ${name} _EP_CMAKE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3642" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665281 +},{ + "args" : + { + "functionArgs" : "cmake_command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3643" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665285 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665291 +},{ + "args" : + { + "functionArgs" : "cmd ${CMAKE_COMMAND}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3646" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665295 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665304 +},{ + "args" : + { + "functionArgs" : "cmake_args TARGET ${name} PROPERTY _EP_CMAKE_ARGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3649" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665308 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665316 +},{ + "args" : + { + "functionArgs" : "APPEND cmd ${cmake_args}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3653" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665319 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665328 +},{ + "args" : + { + "functionArgs" : "cmake_cache_args TARGET ${name} PROPERTY _EP_CMAKE_CACHE_ARGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3657" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665339 +},{ + "args" : + { + "functionArgs" : "cmake_cache_default_args TARGET ${name} PROPERTY _EP_CMAKE_CACHE_DEFAULT_ARGS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3661" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665351 +},{ + "args" : + { + "functionArgs" : "has_cmake_cache_args 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3666" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665360 +},{ + "args" : + { + "functionArgs" : "NOT ${cmake_cache_args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3667" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665373 +},{ + "args" : + { + "functionArgs" : "has_cmake_cache_default_args 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3671" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665377 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665383 +},{ + "args" : + { + "functionArgs" : "NOT ${cmake_cache_default_args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3672" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665394 +},{ + "args" : + { + "functionArgs" : "cmake_generator ${name} _EP_CMAKE_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3676" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665405 +},{ + "args" : + { + "functionArgs" : "cmake_generator_instance ${name} _EP_CMAKE_GENERATOR_INSTANCE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3679" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665416 +},{ + "args" : + { + "functionArgs" : "cmake_generator_platform ${name} _EP_CMAKE_GENERATOR_PLATFORM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3682" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665426 +},{ + "args" : + { + "functionArgs" : "cmake_generator_toolset ${name} _EP_CMAKE_GENERATOR_TOOLSET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3685" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665436 +},{ + "args" : + { + "functionArgs" : "cmake_generator", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3688" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665445 +},{ + "args" : + { + "functionArgs" : "CMAKE_EXTRA_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3702" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665459 +},{ + "args" : + { + "functionArgs" : "APPEND cmd -G${CMAKE_GENERATOR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3705" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665463 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665472 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Green Hills MULTI", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3706" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665476 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665488 +},{ + "args" : + { + "functionArgs" : "cmake_generator_platform", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3718" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665494 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665500 +},{ + "args" : + { + "functionArgs" : "CMAKE_GENERATOR_PLATFORM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3724" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665509 +},{ + "args" : + { + "functionArgs" : "cmake_generator_toolset", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3727" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665513 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665528 +},{ + "args" : + { + "functionArgs" : "CMAKE_GENERATOR_TOOLSET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3732" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665537 +},{ + "args" : + { + "functionArgs" : "cmake_generator_instance", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3735" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665546 +},{ + "args" : + { + "functionArgs" : "CMAKE_GENERATOR_INSTANCE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3740" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665556 +},{ + "args" : + { + "functionArgs" : "has_cmake_cache_args OR has_cmake_cache_default_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3747" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665567 +},{ + "args" : + { + "functionArgs" : "APPEND cmd -S -B ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3776" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665579 +},{ + "args" : + { + "functionArgs" : "${var} ${cmd} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3779" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665592 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665598 +},{ + "args" : + { + "functionArgs" : "${CMAKE_CURRENT_FUNCTION_LIST_DIR}/ExternalProject/cfgcmd.txt.in ${tmp_dir}/${name}-cfgcmd.txt @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3802" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665717 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${tmp_dir}/${name}-cfgcmd.txt", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3807" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665734 +},{ + "args" : + { + "functionArgs" : "APPEND file_deps ${_ep_cache_args_script}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3808" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665738 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665745 +},{ + "args" : + { + "functionArgs" : "update_disconnected ${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3810" + }, + "cat" : "script", + "name" : "_ep_get_update_disconnected", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665749 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3241" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665762 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665772 +},{ + "args" : + { + "functionArgs" : "update_disconnected_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3246" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665782 +},{ + "args" : + { + "functionArgs" : "update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3252" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665787 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665795 +},{ + "args" : + { + "functionArgs" : "${var} ${update_disconnected} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3257" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665811 +},{ + "args" : + { + "functionArgs" : "update_disconnected", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3811" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665814 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665820 +},{ + "args" : + { + "functionArgs" : "dependees patch", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3814" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665824 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665830 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_CONFIGURE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3817" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665842 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3821" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665852 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3824" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665861 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_CONFIGURE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3827" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665872 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3831" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665881 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3834" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665890 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3837" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665909 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3838" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665921 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665934 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665946 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665949 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665956 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665966 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665977 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665987 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003665997 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666006 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666010 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666016 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3839" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666026 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} configure\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES \\${dependees}\n DEPENDS \\${file_deps}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3841" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666031 +},{ + "args" : + { + "functionArgs" : "gmock_src configure INDEPENDENT FALSE COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gmock -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= -GUnix Makefiles -S -B WORKING_DIRECTORY ${binary_dir} DEPENDEES ${dependees} DEPENDS ${file_deps}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3841:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666070 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666110 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666114 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666128 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666137 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666141 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666157 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666160 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666167 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666177 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666190 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666193 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666215 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666219 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666228 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666232 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666236 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666248 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666260 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666267 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666272 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666279 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666292 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666295 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666302 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666314 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666325 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666330 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666333 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666342 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666348 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666359 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666368 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666383 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666395 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666411 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666423 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666426 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666443 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666448 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666460 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666470 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666476 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666509 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666523 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666537 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666543 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666553 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666565 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666589 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666625 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666637 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666641 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666647 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666659 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666675 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666681 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666687 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666715 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666728 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666737 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666741 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666747 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666751 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666758 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666762 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666768 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666794 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666798 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666804 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666813 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666818 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666824 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666829 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666840 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666851 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666876 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666896 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666906 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666911 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666917 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666932 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666938 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666944 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666969 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666979 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666983 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666989 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003666993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667000 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667004 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667014 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667025 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667029 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667050 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667060 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667064 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667070 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667074 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667080 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667085 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667095 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667106 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667130 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667140 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667144 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667150 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667161 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667165 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667175 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667185 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667190 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667219 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667230 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667239 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667250 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667255 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667265 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667276 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667280 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667300 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667310 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667319 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667330 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667344 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667349 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667355 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667359 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667379 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667389 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667393 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667398 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667402 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667409 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667422 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667433 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667457 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667467 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667476 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667480 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667487 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667491 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667501 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667511 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667546 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667556 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667561 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667580 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667591 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667596 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667606 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667617 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667622 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667643 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667656 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667665 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667669 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667675 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667679 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667686 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667696 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667721 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667725 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667731 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667735 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667740 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667752 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667756 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667767 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667778 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667783 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667804 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667817 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667826 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667835 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667847 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667851 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667856 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667894 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667898 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667904 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667908 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667914 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667925 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667940 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667952 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667956 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667978 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667991 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003667994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668010 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668021 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668026 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668034 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668038 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668043 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668048 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668069 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668074 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668079 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668089 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668094 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668101 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668123 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668137 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668141 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668148 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668152 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668163 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668173 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668190 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668194 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668203 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668230 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668240 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668245 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668254 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668267 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668279 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668282 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668292 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668302 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668307 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668317 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668321 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668335 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668356 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668368 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668382 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668392 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668397 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668406 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668409 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668418 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668423 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668426 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668442 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668453 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668457 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668463 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668466 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668475 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668479 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668482 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668492 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668496 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668505 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668518 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668531 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668535 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668543 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668549 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668558 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668562 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668568 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668594 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668598 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668607 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668618 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668622 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668629 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668633 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668645 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668652 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668656 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668663 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668671 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668678 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668689 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668695 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668703 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668706 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668717 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668721 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668728 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668741 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668752 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668756 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668765 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668769 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668776 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668788 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668792 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668799 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668811 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668815 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668831 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668845 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668856 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668860 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668869 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668880 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668883 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668892 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668897 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668903 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668907 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668914 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668919 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668926 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668930 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668939 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668950 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668963 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668966 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668974 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668986 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003668997 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669013 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669017 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669024 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669028 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669037 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669040 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669047 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669059 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669063 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669070 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669074 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669083 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669094 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669106 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669116 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669127 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669131 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669138 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669142 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669150 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669153 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669162 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669173 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669177 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669186 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669189 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669200 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669204 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669213 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669217 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669224 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669227 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669236 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669247 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669250 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669259 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669269 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669281 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669285 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669292 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669296 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669305 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669309 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669316 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669319 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669328 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669339 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669344 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669357 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669367 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669371 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669389 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669393 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669399 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669403 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669409 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669413 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669421 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669430 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669445 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669457 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669468 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669479 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669483 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669488 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669491 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669499 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669503 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669511 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669523 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669526 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669533 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669537 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669543 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669554 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669557 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669564 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669574 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669577 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669584 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669588 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669594 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669598 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669605 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669609 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gmock -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= -GUnix Makefiles -S /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock -B /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669653 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669701 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669706 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669717 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669720 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669729 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669733 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669740 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669744 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669752 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669762 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669776 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669786 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669790 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669797 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669800 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669807 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669812 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669821 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669843 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669846 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4349" + }, + "cat" : "script", + "name" : "_ep_add_build_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669849 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3856" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669863 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669877 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669885 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669890 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669897 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669901 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669910 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669921 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669934 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669945 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669950 +},{ + "args" : + { + "functionArgs" : "file_deps", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3858" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669959 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build TARGET ${name} PROPERTY _EP_CONFIGURE_HANDLED_BY_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3859" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669970 +},{ + "args" : + { + "functionArgs" : "configure_handled_by_build", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3863" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669980 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_BUILD_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3868" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003669994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670003 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3873" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670006 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670012 +},{ + "args" : + { + "functionArgs" : "${name} BUILD cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3879" + }, + "cat" : "script", + "name" : "_ep_get_build_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670016 +},{ + "args" : + { + "functionArgs" : "cmd ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1887" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670031 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670037 +},{ + "args" : + { + "functionArgs" : "args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1888" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670046 +},{ + "args" : + { + "functionArgs" : "${name} cfg_cmd_id", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1889" + }, + "cat" : "script", + "name" : "_ep_get_configure_command_id", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670050 +},{ + "args" : + { + "functionArgs" : "cmd ${name} _EP_CONFIGURE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1857" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670065 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670073 +},{ + "args" : + { + "functionArgs" : "cmd STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1859" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670077 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670084 +},{ + "args" : + { + "functionArgs" : "NOT cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1863" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670095 +},{ + "args" : + { + "functionArgs" : "${cfg_cmd_id_var} cmake PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1865" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670099 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670112 +},{ + "args" : + { + "functionArgs" : "cfg_cmd_id STREQUAL cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1890" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670116 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670123 +},{ + "args" : + { + "functionArgs" : "cmake_generator ${name} _EP_CMAKE_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1892" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670137 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Make AND ( ${cmake_generator} MATCHES Make OR NOT cmake_generator )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1893" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670142 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670158 +},{ + "args" : + { + "functionArgs" : "cmd $(MAKE)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1896" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670165 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670173 +},{ + "args" : + { + "functionArgs" : "step STREQUAL INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1897" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670176 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670183 +},{ + "args" : + { + "functionArgs" : "x${step}x STREQUAL xTESTx", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1900" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670195 +},{ + "args" : + { + "functionArgs" : "have_args TARGET ${name} PROPERTY _EP_${step}_ARGS SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1962" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670211 +},{ + "args" : + { + "functionArgs" : "have_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1963" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670215 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670221 +},{ + "args" : + { + "functionArgs" : "NOT ${args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1967" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670225 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670233 +},{ + "args" : + { + "functionArgs" : "${cmd_var} ${cmd} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1972" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670244 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670249 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3882" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670261 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3886" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670264 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670270 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3889" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670280 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_BUILD", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3892" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670302 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3896" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670312 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3899" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670322 +},{ + "args" : + { + "functionArgs" : "build_always TARGET ${name} PROPERTY _EP_BUILD_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3902" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670333 +},{ + "args" : + { + "functionArgs" : "build_always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3906" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670337 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670342 +},{ + "args" : + { + "functionArgs" : "always 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3909" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670346 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670352 +},{ + "args" : + { + "functionArgs" : "build_byproducts TARGET ${name} PROPERTY _EP_BUILD_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3912" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670356 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670363 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3917" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670366 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670371 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3918" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670375 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670381 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3919" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670394 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} build\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n BYPRODUCTS \\${build_byproducts}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES configure\n DEPENDS \\${file_deps}\n ALWAYS \\${always}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3921" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670398 +},{ + "args" : + { + "functionArgs" : "gmock_src build INDEPENDENT FALSE COMMAND $(MAKE) BYPRODUCTS ${build_byproducts} WORKING_DIRECTORY ${binary_dir} DEPENDEES configure DEPENDS ${file_deps} ALWAYS ${always}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3921:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670433 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670464 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670473 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670477 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670500 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670504 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670520 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670531 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670540 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670553 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670557 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670569 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670573 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670581 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670585 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670589 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670601 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670631 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670636 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670643 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670657 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670660 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670667 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670671 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670680 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670691 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670696 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670699 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670715 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670725 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670735 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670747 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670750 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670754 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670764 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670767 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670780 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670792 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670796 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670813 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670818 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670830 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670841 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670873 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670878 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670887 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670896 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670900 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670906 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670911 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670918 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670937 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670968 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670973 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670979 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670983 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670988 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003670993 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671000 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671005 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671016 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671022 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671027 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671032 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671054 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671058 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671067 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671076 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671085 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671097 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671101 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671106 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671131 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671135 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671140 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671145 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671150 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671155 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671161 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671176 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671187 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671212 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671224 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671227 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671233 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671242 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671247 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671264 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671274 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671278 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671300 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671312 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671315 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671321 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671330 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671341 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671344 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671350 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671374 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671378 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671384 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671388 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671393 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671404 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671408 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671419 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671431 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671435 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671456 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671468 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671471 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671477 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671481 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671486 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671491 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671497 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671501 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671506 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671510 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671530 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671540 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671549 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671554 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671560 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671584 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671596 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671622 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671626 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671634 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671637 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671643 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671647 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671652 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671657 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671663 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671673 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671677 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671697 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671701 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671709 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671718 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671721 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671727 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671738 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671742 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671747 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671751 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671771 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671775 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671780 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671790 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671794 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671801 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671805 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671823 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671836 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671840 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671847 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671851 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671860 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671864 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671870 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671874 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671895 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671900 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671910 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671924 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671934 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671948 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671960 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671972 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671976 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671985 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003671995 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672005 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672018 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672022 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672036 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672059 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672064 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672071 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672075 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672083 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672094 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672107 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672110 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672118 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672123 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672127 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672136 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672142 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672146 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672153 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672156 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672162 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672166 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672178 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672202 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672215 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672219 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672222 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672230 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672242 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672247 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672257 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672267 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672279 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672283 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672292 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672295 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672303 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672306 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672313 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672317 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672337 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672341 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672348 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672356 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672363 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672368 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672375 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672380 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672388 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672392 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672402 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672406 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672414 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672417 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672427 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672437 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672441 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672450 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672461 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672464 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672473 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672477 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672494 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672507 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672511 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672518 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672522 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672531 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672542 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672545 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672555 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672558 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672566 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672569 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672578 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672582 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672589 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672600 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672604 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672612 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672615 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672624 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672635 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672639 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672647 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672651 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672658 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672670 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672681 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672693 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672704 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672716 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672720 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672727 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672730 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672739 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672750 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672753 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672771 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672775 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672783 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672795 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672799 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672806 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672817 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672821 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672828 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672841 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672852 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672856 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672864 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672868 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672875 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672879 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672888 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672898 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672902 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672911 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672921 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672925 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672934 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672944 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672948 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672956 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672960 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672967 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672971 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672980 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672983 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672990 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003672994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673003 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673007 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673013 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673018 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673022 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673031 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673035 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673049 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673063 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673072 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673076 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673082 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673094 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673103 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673118 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673121 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673130 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673141 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673144 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673152 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673155 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673160 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673170 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673182 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673186 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND $(MAKE) COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673258 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673262 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673273 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673285 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673289 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673296 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673300 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673307 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673311 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673318 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673323 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673331 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673341 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673345 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673362 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673367 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673374 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673379 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673387 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673392 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673412 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4350" + }, + "cat" : "script", + "name" : "_ep_add_install_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673416 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3938" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673430 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673443 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673451 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673456 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673463 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673467 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673476 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673480 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673486 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673499 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673503 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673511 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673516 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_INSTALL_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3940" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673519 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673527 +},{ + "args" : + { + "functionArgs" : "cmd_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3945" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673537 +},{ + "args" : + { + "functionArgs" : "${name} INSTALL cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3951" + }, + "cat" : "script", + "name" : "_ep_get_build_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673540 +},{ + "args" : + { + "functionArgs" : "cmd ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1887" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673553 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673560 +},{ + "args" : + { + "functionArgs" : "args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1888" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673568 +},{ + "args" : + { + "functionArgs" : "${name} cfg_cmd_id", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1889" + }, + "cat" : "script", + "name" : "_ep_get_configure_command_id", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673572 +},{ + "args" : + { + "functionArgs" : "cmd ${name} _EP_CONFIGURE_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1857" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673583 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673591 +},{ + "args" : + { + "functionArgs" : "cmd STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1859" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673595 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673601 +},{ + "args" : + { + "functionArgs" : "NOT cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1863" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673606 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673612 +},{ + "args" : + { + "functionArgs" : "${cfg_cmd_id_var} cmake PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1865" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673617 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673628 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673632 +},{ + "args" : + { + "functionArgs" : "cfg_cmd_id STREQUAL cmake", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1890" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673636 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673643 +},{ + "args" : + { + "functionArgs" : "cmake_generator ${name} _EP_CMAKE_GENERATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1892" + }, + "cat" : "script", + "name" : "get_target_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673649 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673657 +},{ + "args" : + { + "functionArgs" : "${CMAKE_GENERATOR} MATCHES Make AND ( ${cmake_generator} MATCHES Make OR NOT cmake_generator )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1893" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673662 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673690 +},{ + "args" : + { + "functionArgs" : "cmd $(MAKE)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1896" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673706 +},{ + "args" : + { + "functionArgs" : "step STREQUAL INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1897" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673716 +},{ + "args" : + { + "functionArgs" : "args install", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1898" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673725 +},{ + "args" : + { + "functionArgs" : "x${step}x STREQUAL xTESTx", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1900" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673737 +},{ + "args" : + { + "functionArgs" : "have_args TARGET ${name} PROPERTY _EP_${step}_ARGS SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1962" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673753 +},{ + "args" : + { + "functionArgs" : "have_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1963" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673757 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673762 +},{ + "args" : + { + "functionArgs" : "NOT ${args} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1967" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673766 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673773 +},{ + "args" : + { + "functionArgs" : "APPEND cmd ${args}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1970" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673784 +},{ + "args" : + { + "functionArgs" : "${cmd_var} ${cmd} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1972" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673795 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673800 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_LOG_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3954" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673804 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673812 +},{ + "args" : + { + "functionArgs" : "log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3958" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673815 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673821 +},{ + "args" : + { + "functionArgs" : "log ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3961" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673831 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_USES_TERMINAL_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3964" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673842 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3968" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673846 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673852 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3971" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673855 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673861 +},{ + "args" : + { + "functionArgs" : "build_always TARGET ${name} PROPERTY _EP_BUILD_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3977" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673865 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673872 +},{ + "args" : + { + "functionArgs" : "build_always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3981" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673881 +},{ + "args" : + { + "functionArgs" : "always 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3984" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673885 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673891 +},{ + "args" : + { + "functionArgs" : "install_byproducts TARGET ${name} PROPERTY _EP_INSTALL_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3987" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673903 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3992" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673906 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673911 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS cmd", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3993" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673921 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3994" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673926 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673934 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3994" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673937 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673945 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n ExternalProject_Add_Step(${name} install\n INDEPENDENT FALSE\n COMMAND ${__cmdQuoted}\n BYPRODUCTS \\${install_byproducts}\n WORKING_DIRECTORY \\${binary_dir}\n DEPENDEES build\n ALWAYS \\${always}\n ${log}\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3996" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673949 +},{ + "args" : + { + "functionArgs" : "gmock_src install INDEPENDENT FALSE COMMAND $(MAKE) install BYPRODUCTS ${install_byproducts} WORKING_DIRECTORY ${binary_dir} DEPENDEES build ALWAYS ${always}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:3996:EVAL:2" + }, + "cat" : "script", + "name" : "externalproject_add_step", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003673993 +},{ + "args" : + { + "functionArgs" : "cmp0114 TARGET ${name} PROPERTY _EP_CMP0114", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2325" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674033 +},{ + "args" : + { + "functionArgs" : "${name} complete_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2326" + }, + "cat" : "script", + "name" : "_ep_get_complete_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674037 +},{ + "args" : + { + "functionArgs" : "cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2168" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674059 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2169" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674063 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674078 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674082 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674089 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674093 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674099 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674112 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674116 +},{ + "args" : + { + "functionArgs" : "stampfile ${cmf_dir}${cfgdir}/${name}-complete", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2170" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674119 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674128 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2172" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674132 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674140 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674144 +},{ + "args" : + { + "functionArgs" : "${name} ${step} stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2327" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674147 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674160 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674171 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674179 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674184 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674193 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674197 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674207 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674217 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674221 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674230 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674246 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674250 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674265 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674276 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674279 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674285 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674288 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674307 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674311 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674324 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674340 +},{ + "args" : + { + "functionArgs" : "keywords COMMAND COMMENT DEPENDEES DEPENDERS DEPENDS INDEPENDENT BYPRODUCTS ALWAYS EXCLUDE_FROM_MAIN WORKING_DIRECTORY LOG USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2329" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674344 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674353 +},{ + "args" : + { + "functionArgs" : "ExternalProject_Add_Step ${keywords} ${name} _EP_${step}_ ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2343" + }, + "cat" : "script", + "name" : "_ep_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674356 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1256" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674373 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674379 +},{ + "args" : + { + "functionArgs" : "arg IN LISTS args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1258" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674390 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674396 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674402 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674435 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674440 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674448 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674452 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674458 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674462 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674467 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674472 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674481 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674497 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674526 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674531 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674537 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674547 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674551 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674558 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674563 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674588 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674593 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674599 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674604 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674627 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674631 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674640 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674644 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674649 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674664 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674671 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674676 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674683 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674693 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674719 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674729 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674733 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674739 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674750 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674755 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674766 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674771 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674777 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674781 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674802 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674807 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674813 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674822 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674833 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674849 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674854 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674860 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674864 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674886 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674891 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674899 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674909 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674912 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674918 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674923 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674930 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674934 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674939 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674944 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674966 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674970 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674978 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674982 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003674996 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675001 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675007 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675019 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675023 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675028 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675055 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675059 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675065 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675069 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675074 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675079 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675086 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675101 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675107 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675113 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675117 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675139 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675151 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675155 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675161 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675170 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675181 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675191 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675195 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675215 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675225 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675230 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675235 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675246 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675251 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675261 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675266 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675272 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675277 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675298 +},{ + "args" : + { + "functionArgs" : "arg IN_LIST keywords", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1265" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675302 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675310 +},{ + "args" : + { + "functionArgs" : "is_value 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1266" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675329 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675338 +},{ + "args" : + { + "functionArgs" : "key ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1291" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675343 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675350 +},{ + "args" : + { + "functionArgs" : "is_value 1", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1259" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675359 +},{ + "args" : + { + "functionArgs" : "arg MATCHES ^[A-Z][A-Z0-9_][A-Z0-9_]+$ AND NOT ( ( x${arg}x STREQUAL x${key}x ) AND ( x${key}x STREQUAL xCOMMANDx ) ) AND NOT arg MATCHES ^(TRUE|FALSE)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1261" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675364 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675384 +},{ + "args" : + { + "functionArgs" : "is_value", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1270" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675389 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675394 +},{ + "args" : + { + "functionArgs" : "key", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1271" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675398 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675403 +},{ + "args" : + { + "functionArgs" : "NOT arg STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1273" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675408 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675415 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY ${ns}${key} ${arg}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1274" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675438 +},{ + "args" : + { + "functionArgs" : "independent TARGET ${name} PROPERTY _EP_${step}_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2351" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675441 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675452 +},{ + "args" : + { + "functionArgs" : "independent STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2355" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675456 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675462 +},{ + "args" : + { + "functionArgs" : "exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2362" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675466 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675476 +},{ + "args" : + { + "functionArgs" : "NOT exclude_from_main", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2366" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675486 +},{ + "args" : + { + "functionArgs" : "APPEND OUTPUT ${complete_stamp_file} DEPENDS ${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2367" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675503 +},{ + "args" : + { + "functionArgs" : "dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2374" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675507 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675516 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDERS ${dependers}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2375" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675520 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675531 +},{ + "args" : + { + "functionArgs" : "depender IN LISTS dependers", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2378" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675541 +},{ + "args" : + { + "functionArgs" : "depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2402" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675546 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675555 +},{ + "args" : + { + "functionArgs" : "byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2405" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675559 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675580 +},{ + "args" : + { + "functionArgs" : "dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2408" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675593 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${step}_INTERNAL_DEPENDEES ${dependees}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2409" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675597 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675606 +},{ + "args" : + { + "functionArgs" : "dependee IN LISTS dependees", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2412" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675616 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_${dependee}_INTERNAL_DEPENDERS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2413" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675621 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675640 +},{ + "args" : + { + "functionArgs" : "${name} ${dependee} dependee_stamp_file", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2416" + }, + "cat" : "script", + "name" : "_ep_get_step_stampfile", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675645 +},{ + "args" : + { + "functionArgs" : "${name} stamp_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2155" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675658 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675672 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675679 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675692 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675705 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675715 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675719 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675728 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675740 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675745 +},{ + "args" : + { + "functionArgs" : "cfgdir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2157" + }, + "cat" : "script", + "name" : "_ep_get_configuration_subdir_genex", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675749 +},{ + "args" : + { + "functionArgs" : "suffix ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2141" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675764 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2142" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675768 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675775 +},{ + "args" : + { + "functionArgs" : "_isMultiConfig", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2143" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675778 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675784 +},{ + "args" : + { + "functionArgs" : "${suffix_var} ${suffix} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2146" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675800 +},{ + "args" : + { + "functionArgs" : "stampfile ${stamp_dir}${cfgdir}/${name}-${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2158" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675813 +},{ + "args" : + { + "functionArgs" : "${stampfile_var} ${stampfile} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2160" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675825 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675829 +},{ + "args" : + { + "functionArgs" : "APPEND depends ${dependee_stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2417" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675833 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675840 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW AND independent", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2418" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675844 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675852 +},{ + "args" : + { + "functionArgs" : "command TARGET ${name} PROPERTY _EP_${step}_COMMAND", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2433" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675857 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675868 +},{ + "args" : + { + "functionArgs" : "command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2434" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675877 +},{ + "args" : + { + "functionArgs" : "comment Performing ${step} step for '${name}'", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2435" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675890 +},{ + "args" : + { + "functionArgs" : "work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2439" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675903 +},{ + "args" : + { + "functionArgs" : "sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2445" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675906 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675914 +},{ + "args" : + { + "functionArgs" : "sep AND command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2449" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675917 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675924 +},{ + "args" : + { + "functionArgs" : "${name} comment command work_dir byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2454" + }, + "cat" : "script", + "name" : "_ep_replace_location_tags", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675938 +},{ + "args" : + { + "functionArgs" : "vars comment;command;work_dir;byproducts", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1752" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675959 +},{ + "args" : + { + "functionArgs" : "var ${vars}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1753" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675970 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675978 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675985 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003675997 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676024 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676028 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676039 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676050 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676063 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676074 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676078 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676090 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676094 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676101 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676114 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676118 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676125 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676128 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676137 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676141 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676148 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676152 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676161 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676171 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676184 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676188 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676195 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676199 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676208 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676219 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676230 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676253 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676257 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676267 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676277 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676290 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676300 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676304 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676313 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676323 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676327 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676335 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676339 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676346 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676349 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676358 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676369 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676372 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676381 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676392 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676404 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676408 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676415 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676427 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676432 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676438 +},{ + "args" : + { + "functionArgs" : "dir SOURCE_DIR SOURCE_SUBDIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOAD_DIR DOWNLOADED_FILE LOG_DIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1755" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676443 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676450 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676461 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676465 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676474 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676478 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676485 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676488 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676497 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676501 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676507 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676519 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676529 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676533 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676540 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676544 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676552 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676563 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676575 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676579 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676586 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676589 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676598 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676602 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676609 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676612 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676621 +},{ + "args" : + { + "functionArgs" : "val TARGET gmock_src PROPERTY _EP_${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1765" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676632 +},{ + "args" : + { + "functionArgs" : "REPLACE <${dir}> ${val} ${var} ${${var}}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1766" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676635 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676644 +},{ + "args" : + { + "functionArgs" : "${var}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1754" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676655 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676660 +},{ + "args" : + { + "functionArgs" : "comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2463" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676664 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676673 +},{ + "args" : + { + "functionArgs" : "comment_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2468" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676677 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676682 +},{ + "args" : + { + "functionArgs" : "uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2476" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676695 +},{ + "args" : + { + "functionArgs" : "uses_terminal", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2480" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676704 +},{ + "args" : + { + "functionArgs" : "uses_terminal ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2483" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676708 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676714 +},{ + "args" : + { + "functionArgs" : "always TARGET ${name} PROPERTY _EP_${step}_ALWAYS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2487" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676717 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676726 +},{ + "args" : + { + "functionArgs" : "always", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2491" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676729 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676735 +},{ + "args" : + { + "functionArgs" : "maybe_COMMAND_touch COMMAND \\${CMAKE_COMMAND} -E touch \\${stamp_file}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2514" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676740 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676749 +},{ + "args" : + { + "functionArgs" : "log TARGET ${name} PROPERTY _EP_${step}_LOG", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2518" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676753 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676761 +},{ + "args" : + { + "functionArgs" : "command AND log", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2519" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676765 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676772 +},{ + "args" : + { + "functionArgs" : "${command} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2523" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676776 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676783 +},{ + "args" : + { + "functionArgs" : "__cmdQuoted", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2532" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676786 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676801 +},{ + "args" : + { + "functionArgs" : "__item IN LISTS command", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2533" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676812 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676816 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676825 +},{ + "args" : + { + "functionArgs" : "APPEND __cmdQuoted [==[${__item}]==]", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2534" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676835 +},{ + "args" : + { + "functionArgs" : "EVAL CODE \n add_custom_command(\n OUTPUT \\${stamp_file}\n BYPRODUCTS \\${byproducts}\n COMMENT \\${comment}\n COMMAND ${__cmdQuoted}\n ${maybe_COMMAND_touch}\n DEPENDS \\${depends}\n WORKING_DIRECTORY \\${work_dir}\n VERBATIM\n ${uses_terminal}\n )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536" + }, + "cat" : "script", + "name" : "cmake_language", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676839 +},{ + "args" : + { + "functionArgs" : "OUTPUT ${stamp_file} BYPRODUCTS ${byproducts} COMMENT ${comment} COMMAND $(MAKE) install COMMAND ${CMAKE_COMMAND} -E touch ${stamp_file} DEPENDS ${depends} WORKING_DIRECTORY ${work_dir} VERBATIM", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2536:EVAL:2" + }, + "cat" : "script", + "name" : "add_custom_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676875 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676904 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676909 +},{ + "args" : + { + "functionArgs" : "TARGET ${name} APPEND PROPERTY _EP_STEPS ${step}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2549" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676924 +},{ + "args" : + { + "functionArgs" : "step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2552" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676936 +},{ + "args" : + { + "functionArgs" : "NOT step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2556" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676947 +},{ + "args" : + { + "functionArgs" : "step_targets DIRECTORY PROPERTY EP_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2557" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676951 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676958 +},{ + "args" : + { + "functionArgs" : "st ${step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2562" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676969 +},{ + "args" : + { + "functionArgs" : "independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2569" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676981 +},{ + "args" : + { + "functionArgs" : "NOT independent_step_targets", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2573" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676985 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676991 +},{ + "args" : + { + "functionArgs" : "independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2574" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003676995 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677002 +},{ + "args" : + { + "functionArgs" : "cmp0114 STREQUAL NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2579" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677006 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677012 +},{ + "args" : + { + "functionArgs" : "independent_step_targets AND cmp0114 STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2590" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677017 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677025 +},{ + "args" : + { + "functionArgs" : "st ${independent_step_targets}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:2609" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677030 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677037 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677042 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677047 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677050 +},{ + "args" : + { + "functionArgs" : "${name}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4355" + }, + "cat" : "script", + "name" : "_ep_add_test_command", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677053 +},{ + "args" : + { + "functionArgs" : "${name} binary_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4012" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677067 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677080 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677088 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677100 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677104 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677113 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677127 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677134 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677139 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677148 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677152 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677160 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677165 +},{ + "args" : + { + "functionArgs" : "before TARGET ${name} PROPERTY _EP_TEST_BEFORE_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4014" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677169 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677176 +},{ + "args" : + { + "functionArgs" : "after TARGET ${name} PROPERTY _EP_TEST_AFTER_INSTALL", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4015" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677180 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677188 +},{ + "args" : + { + "functionArgs" : "exclude TARGET ${name} PROPERTY _EP_TEST_EXCLUDE_FROM_MAIN", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4016" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677191 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677198 +},{ + "args" : + { + "functionArgs" : "cmd_set TARGET ${name} PROPERTY _EP_TEST_COMMAND SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4017" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677202 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677210 +},{ + "args" : + { + "functionArgs" : "cmd_set OR before OR after OR exclude", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:4022" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677214 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677224 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677231 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677236 +},{ + "args" : + { + "functionArgs" : "gtest_src install_dir", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:53" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677240 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677252 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677259 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677263 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677270 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677274 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677284 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677287 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677294 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677297 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677306 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677310 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677318 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677322 +},{ + "args" : + { + "functionArgs" : "GTEST_INCLUDE_DIR ${install_dir}/include", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:54" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677326 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677334 +},{ + "args" : + { + "functionArgs" : "GTEST_LIBRARY_PATH ${install_dir}/lib/libgtest.a", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:55" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677345 +},{ + "args" : + { + "functionArgs" : "MAKE_DIRECTORY ${GTEST_INCLUDE_DIR}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:56" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677348 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677364 +},{ + "args" : + { + "functionArgs" : "gtest STATIC IMPORTED", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:57" + }, + "cat" : "script", + "name" : "add_library", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677368 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677401 +},{ + "args" : + { + "functionArgs" : "TARGET gtest PROPERTY IMPORTED_LOCATION ${GTEST_LIBRARY_PATH}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:58" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677415 +},{ + "args" : + { + "functionArgs" : "TARGET gtest APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${GTEST_INCLUDE_DIR}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:59" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677419 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677427 +},{ + "args" : + { + "functionArgs" : "gmock_src install_dir", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:62" + }, + "cat" : "script", + "name" : "externalproject_get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677431 +},{ + "args" : + { + "functionArgs" : "var ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1841" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677443 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677451 +},{ + "args" : + { + "functionArgs" : "TOUPPER ${var} VAR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1842" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677457 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677474 +},{ + "args" : + { + "functionArgs" : "is_set TARGET ${name} PROPERTY _EP_${VAR} SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1843" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677479 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677488 +},{ + "args" : + { + "functionArgs" : "NOT is_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1844" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677492 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677499 +},{ + "args" : + { + "functionArgs" : "${var} TARGET ${name} PROPERTY _EP_${VAR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1847" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677503 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677512 +},{ + "args" : + { + "functionArgs" : "${var} ${${var}} PARENT_SCOPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake:1848" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677515 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677528 +},{ + "args" : + { + "functionArgs" : "GMOCK_INCLUDE_DIR ${install_dir}/include", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:63" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677540 +},{ + "args" : + { + "functionArgs" : "GMOCK_LIBRARY_PATH ${install_dir}/lib/libgmock.a", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:64" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677543 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677550 +},{ + "args" : + { + "functionArgs" : "MAKE_DIRECTORY ${GMOCK_INCLUDE_DIR}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:65" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677554 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677566 +},{ + "args" : + { + "functionArgs" : "gmock STATIC IMPORTED", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:66" + }, + "cat" : "script", + "name" : "add_library", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677570 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677591 +},{ + "args" : + { + "functionArgs" : "TARGET gmock PROPERTY IMPORTED_LOCATION ${GMOCK_LIBRARY_PATH}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:67" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677603 +},{ + "args" : + { + "functionArgs" : "TARGET gmock APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${GMOCK_INCLUDE_DIR}", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:68" + }, + "cat" : "script", + "name" : "set_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677607 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677616 +},{ + "args" : + { + "functionArgs" : "gtest_src googletest", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:71" + }, + "cat" : "script", + "name" : "add_dependencies", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677625 +},{ + "args" : + { + "functionArgs" : "gmock_src googletest", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:72" + }, + "cat" : "script", + "name" : "add_dependencies", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677629 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677634 +},{ + "args" : + { + "functionArgs" : "gtest gtest_src", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:73" + }, + "cat" : "script", + "name" : "add_dependencies", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677638 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677643 +},{ + "args" : + { + "functionArgs" : "gmock gmock_src", + "location" : "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake:74" + }, + "cat" : "script", + "name" : "add_dependencies", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677646 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677651 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677662 +},{ + "args" : + { + "functionArgs" : "codecs src/codecs.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:165" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677667 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677743 +},{ + "args" : + { + "functionArgs" : "codecs FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:166" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677748 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677758 +},{ + "args" : + { + "functionArgs" : "example example.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:168" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677762 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677817 +},{ + "args" : + { + "functionArgs" : "example FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:169" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677822 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677830 +},{ + "args" : + { + "functionArgs" : "inmemorybenchmark src/inmemorybenchmark.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:171" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677834 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677888 +},{ + "args" : + { + "functionArgs" : "inmemorybenchmark FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:172" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677900 +},{ + "args" : + { + "functionArgs" : "unit src/unit.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:174" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677957 +},{ + "args" : + { + "functionArgs" : "unit FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:175" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677969 +},{ + "args" : + { + "functionArgs" : "check unit DEPENDS unit", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:176" + }, + "cat" : "script", + "name" : "add_custom_target", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677973 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677989 +},{ + "args" : + { + "functionArgs" : "FastPFOR_unittest unittest/test_composite.cpp unittest/test_driver.cpp unittest/test_fastpfor.cpp unittest/test_variablebyte.cpp", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:178" + }, + "cat" : "script", + "name" : "add_executable", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003677994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678066 +},{ + "args" : + { + "functionArgs" : "FastPFOR_unittest gtest FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:183" + }, + "cat" : "script", + "name" : "target_link_libraries", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678071 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678080 +},{ + "args" : + { + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:184" + }, + "cat" : "script", + "name" : "enable_testing", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678083 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678088 +},{ + "args" : + { + "functionArgs" : "unit unit", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:185" + }, + "cat" : "script", + "name" : "add_test", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678098 +},{ + "args" : + { + "functionArgs" : "FastPFOR_unittest FastPFOR_unittest", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:186" + }, + "cat" : "script", + "name" : "add_test", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678102 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678108 +},{ + "args" : + { + "functionArgs" : "GNUInstallDirs", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:188" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678111 +},{ + "args" : + { + "functionArgs" : "PUSH", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:144" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678410 +},{ + "args" : + { + "functionArgs" : "SET CMP0054 NEW", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:145" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678414 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678421 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_convert_to_path var description", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:149" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678425 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678432 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_path var default description", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:162" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678442 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678448 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_path_fallback var default description", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:172" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678456 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678462 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_BINDIR bin User executables (bin)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:183" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678469 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_BINDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678480 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678488 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_BINDIR User executables (bin)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678495 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_BINDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678504 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678512 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678524 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678532 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678538 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678541 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678544 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_SBINDIR sbin System admin executables (sbin)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:185" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678547 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_SBINDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678563 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_SBINDIR System admin executables (sbin)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678569 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_SBINDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678578 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678585 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678589 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678595 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678603 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678611 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678614 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LIBEXECDIR libexec Program executables (libexec)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:187" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678617 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_LIBEXECDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678626 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678644 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LIBEXECDIR Program executables (libexec)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678650 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_LIBEXECDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678659 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678666 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678670 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678677 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678685 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678693 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678695 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_SYSCONFDIR etc Read-only single-machine data (etc)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:189" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678698 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_SYSCONFDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678707 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678714 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_SYSCONFDIR Read-only single-machine data (etc)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678720 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_SYSCONFDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678735 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678745 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678753 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678758 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678763 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_SHAREDSTATEDIR com Modifiable architecture-independent data (com)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:191" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678766 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_SHAREDSTATEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678775 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678781 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_SHAREDSTATEDIR Modifiable architecture-independent data (com)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678787 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_SHAREDSTATEDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678796 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678802 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678806 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678813 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678820 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678826 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678828 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678830 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LOCALSTATEDIR var Modifiable single-machine data (var)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:193" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678834 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_LOCALSTATEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678842 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678848 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LOCALSTATEDIR Modifiable single-machine data (var)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678854 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_LOCALSTATEDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678869 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678873 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678879 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678887 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678900 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678903 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678906 +},{ + "args" : + { + "functionArgs" : "_libdir_set CACHE CMAKE_INSTALL_LIBDIR PROPERTY TYPE SET", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:203" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678917 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_LIBDIR OR ( _libdir_set AND DEFINED _GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX AND NOT ${_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX} STREQUAL ${CMAKE_INSTALL_PREFIX} )", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:204" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678944 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LIBDIR Object code libraries (lib)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:305" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678952 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_LIBDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678962 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678969 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678973 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678979 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678992 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678995 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} CACHE INTERNAL CMAKE_INSTALL_PREFIX during last run", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:308" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003678999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679011 +},{ + "args" : + { + "functionArgs" : "_libdir_set", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:309" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679015 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679021 +},{ + "args" : + { + "functionArgs" : "__LAST_LIBDIR_DEFAULT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:310" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679024 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679029 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_INCLUDEDIR include C header files (include)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:312" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679032 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_INCLUDEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679041 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679047 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_INCLUDEDIR C header files (include)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679053 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_INCLUDEDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679061 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679068 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679073 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679079 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679086 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679094 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679097 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_OLDINCLUDEDIR /usr/include C header files for non-gcc (/usr/include)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:314" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679100 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_OLDINCLUDEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679108 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679115 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_OLDINCLUDEDIR C header files for non-gcc (/usr/include)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679121 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_OLDINCLUDEDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679129 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679136 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679140 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679146 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679154 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679159 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679162 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679164 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DATAROOTDIR share Read-only architecture-independent data root (share)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:316" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679168 +},{ + "args" : + { + "functionArgs" : "NOT DEFINED CMAKE_INSTALL_DATAROOTDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:163" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679185 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679193 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DATAROOTDIR Read-only architecture-independent data root (share)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:166" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679199 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_DATAROOTDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679207 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679214 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679225 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679232 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679238 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679240 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679243 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DATADIR ${CMAKE_INSTALL_DATAROOTDIR} Read-only architecture-independent data (DATAROOTDIR)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:324" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path_fallback", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679246 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_INSTALL_DATADIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:173" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679264 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DATADIR CACHE PATH Read-only architecture-independent data (DATAROOTDIR)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:174" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679277 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DATADIR share", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:175" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679280 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679286 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DATADIR Read-only architecture-independent data (DATAROOTDIR)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:177" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679291 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_DATADIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679299 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679306 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679310 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679316 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679324 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679334 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_NAME MATCHES ^(([^kF].*)?BSD|DragonFly)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:327" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679338 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679349 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_INFODIR ${CMAKE_INSTALL_DATAROOTDIR}/info Info documentation (DATAROOTDIR/info)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:331" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path_fallback", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679354 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_INSTALL_INFODIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:173" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679365 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679371 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_INFODIR CACHE PATH Info documentation (DATAROOTDIR/info)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:174" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679376 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679383 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_INFODIR share/info", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:175" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679392 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_INFODIR Info documentation (DATAROOTDIR/info)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:177" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679397 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_INFODIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679411 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679416 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679422 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679444 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679447 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679450 +},{ + "args" : + { + "functionArgs" : "CMAKE_SYSTEM_NAME MATCHES ^(([^k].*)?BSD|DragonFly)$ AND NOT CMAKE_SYSTEM_NAME MATCHES ^(FreeBSD)$", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:335" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679454 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679469 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_MANDIR ${CMAKE_INSTALL_DATAROOTDIR}/man Man documentation (DATAROOTDIR/man)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:339" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path_fallback", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679474 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_INSTALL_MANDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:173" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679485 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679492 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_MANDIR CACHE PATH Man documentation (DATAROOTDIR/man)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:174" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679497 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679504 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_MANDIR share/man", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:175" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679507 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679515 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_MANDIR Man documentation (DATAROOTDIR/man)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:177" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679519 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_MANDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679528 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679535 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679539 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679545 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679553 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679559 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679561 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679564 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LOCALEDIR ${CMAKE_INSTALL_DATAROOTDIR}/locale Locale-dependent data (DATAROOTDIR/locale)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:343" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path_fallback", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679568 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_INSTALL_LOCALEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:173" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679578 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679585 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LOCALEDIR CACHE PATH Locale-dependent data (DATAROOTDIR/locale)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:174" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679597 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LOCALEDIR share/locale", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:175" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679606 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_LOCALEDIR Locale-dependent data (DATAROOTDIR/locale)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:177" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679611 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_LOCALEDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679626 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679630 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679636 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679649 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679652 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679654 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DOCDIR ${CMAKE_INSTALL_DATAROOTDIR}/doc/${PROJECT_NAME} Documentation root (DATAROOTDIR/doc/PROJECT_NAME)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:345" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path_fallback", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679658 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_INSTALL_DOCDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:173" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679670 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679676 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DOCDIR CACHE PATH Documentation root (DATAROOTDIR/doc/PROJECT_NAME)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:174" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679682 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679688 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DOCDIR share/doc/FastPFOR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:175" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679691 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679697 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_DOCDIR Documentation root (DATAROOTDIR/doc/PROJECT_NAME)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:177" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679711 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_DOCDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679720 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679727 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679737 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679751 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679754 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679756 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_RUNSTATEDIR ${CMAKE_INSTALL_LOCALSTATEDIR}/run Run-time variable data (LOCALSTATEDIR/run)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:348" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_path_fallback", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679760 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_INSTALL_RUNSTATEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:173" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679777 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_RUNSTATEDIR CACHE PATH Run-time variable data (LOCALSTATEDIR/run)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:174" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679789 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_RUNSTATEDIR var/run", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:175" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679792 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679798 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_RUNSTATEDIR Run-time variable data (LOCALSTATEDIR/run)", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:177" + }, + "cat" : "script", + "name" : "_gnuinstalldirs_cache_convert_to_path", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679802 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type CACHE CMAKE_INSTALL_RUNSTATEDIR PROPERTY TYPE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:150" + }, + "cat" : "script", + "name" : "get_property", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679810 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679817 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type STREQUAL UNINITIALIZED", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:151" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679821 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679827 +},{ + "args" : + { + "functionArgs" : "_GNUInstallDirs_cache_type", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:158" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679835 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679841 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679843 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679846 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_BINDIR CMAKE_INSTALL_SBINDIR CMAKE_INSTALL_LIBEXECDIR CMAKE_INSTALL_SYSCONFDIR CMAKE_INSTALL_SHAREDSTATEDIR CMAKE_INSTALL_LOCALSTATEDIR CMAKE_INSTALL_RUNSTATEDIR CMAKE_INSTALL_LIBDIR CMAKE_INSTALL_INCLUDEDIR CMAKE_INSTALL_OLDINCLUDEDIR CMAKE_INSTALL_DATAROOTDIR CMAKE_INSTALL_DATADIR CMAKE_INSTALL_INFODIR CMAKE_INSTALL_LOCALEDIR CMAKE_INSTALL_MANDIR CMAKE_INSTALL_DOCDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:353" + }, + "cat" : "script", + "name" : "mark_as_advanced", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679850 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679869 +},{ + "args" : + { + "functionArgs" : "GNUInstallDirs_get_absolute_install_dir absvar var", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:372" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679872 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679878 +},{ + "args" : + { + "functionArgs" : "dir BINDIR SBINDIR LIBEXECDIR SYSCONFDIR SHAREDSTATEDIR LOCALSTATEDIR RUNSTATEDIR LIBDIR INCLUDEDIR OLDINCLUDEDIR DATAROOTDIR DATADIR INFODIR LOCALEDIR MANDIR DOCDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:425" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679889 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679898 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679903 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args BINDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679925 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679929 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679936 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679940 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679949 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679956 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679964 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_BINDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003679977 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680014 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680024 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_BINDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680053 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680060 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680066 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680070 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680075 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680079 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680084 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680087 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680091 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args SBINDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680105 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680111 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680115 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680122 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680133 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680139 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680146 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_SBINDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680151 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680159 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680176 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680184 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_SBINDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_SBINDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680201 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680210 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680222 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680225 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680231 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680234 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680242 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680246 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args LIBEXECDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680259 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680266 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680276 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680280 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680287 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680293 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680300 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_LIBEXECDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680313 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680329 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680337 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_LIBEXECDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680376 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680383 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680389 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680393 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680398 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680406 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680409 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680413 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args SYSCONFDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680433 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680438 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680444 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680448 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680455 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680468 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_SYSCONFDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680481 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680498 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680506 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_SYSCONFDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_SYSCONFDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680523 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680531 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680538 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680544 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680547 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680552 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680561 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680564 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680567 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args SHAREDSTATEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680580 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680586 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680590 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680596 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680600 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680607 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680613 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680620 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_SHAREDSTATEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680633 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680650 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680657 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_SHAREDSTATEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_SHAREDSTATEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680674 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680683 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680690 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680704 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680709 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680714 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680726 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680730 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args LOCALSTATEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680743 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680749 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680753 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680759 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680763 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680771 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680777 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680783 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_LOCALSTATEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680788 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680796 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680813 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680820 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_LOCALSTATEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LOCALSTATEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680837 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680846 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680853 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680858 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680862 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680867 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680879 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680882 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args RUNSTATEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680901 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680905 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680911 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680915 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680922 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680934 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_RUNSTATEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680939 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680946 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680963 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680970 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_RUNSTATEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_RUNSTATEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680987 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003680995 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681002 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681008 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681011 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681016 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681020 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681034 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681037 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681042 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args LIBDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681055 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681061 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681066 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681071 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681075 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681083 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681095 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_LIBDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681100 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681108 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681125 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681132 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_LIBDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681149 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681157 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681164 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681170 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681173 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681178 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681187 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681190 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681193 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args INCLUDEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681206 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681212 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681216 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681222 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681233 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681239 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681245 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_INCLUDEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681250 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681258 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681275 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681282 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_INCLUDEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681299 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681307 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681319 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681323 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681328 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681331 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681336 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681339 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681343 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args OLDINCLUDEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681365 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681372 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681376 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681382 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681385 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681393 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681399 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681405 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_OLDINCLUDEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681410 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681418 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_OLDINCLUDEDIR ${CMAKE_INSTALL_OLDINCLUDEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:415" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681436 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681444 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681450 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681456 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681459 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681464 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681468 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681476 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681479 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args DATAROOTDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681492 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681498 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681508 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681519 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681531 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_DATAROOTDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681536 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681544 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681560 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681568 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_DATAROOTDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681585 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681594 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681601 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681606 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681610 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681615 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681619 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681623 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681626 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681630 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args DATADIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681643 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681649 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681653 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681659 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681663 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681679 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681692 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_DATADIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681697 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681705 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681721 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681729 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_DATADIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681745 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681754 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681767 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681775 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681779 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681784 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681787 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681791 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args INFODIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681803 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681809 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681813 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681819 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681823 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681830 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681836 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681843 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_INFODIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681855 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681871 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681879 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_INFODIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INFODIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681895 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681903 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681910 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681918 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681921 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681926 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681930 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681935 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681938 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681941 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args LOCALEDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681954 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681960 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681970 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681974 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681981 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003681986 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682002 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_LOCALEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682008 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682016 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682033 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682040 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_LOCALEDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LOCALEDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682056 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682065 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682072 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682077 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682081 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682086 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682089 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682094 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682097 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682101 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args MANDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682113 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682120 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682124 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682129 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682133 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682140 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682146 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682153 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_MANDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682158 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682165 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682181 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682189 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_MANDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_MANDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682205 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682213 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682220 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682225 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682234 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682242 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682245 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_${dir} CMAKE_INSTALL_${dir} ${dir}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:443" + }, + "cat" : "script", + "name" : "gnuinstalldirs_get_absolute_install_dir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682249 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args DOCDIR", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:373" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682261 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682267 +},{ + "args" : + { + "functionArgs" : "LENGTH GGAID_extra_args GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:374" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682271 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682277 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count GREATER 0", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:375" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682281 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682288 +},{ + "args" : + { + "functionArgs" : "GET GGAID_extra_args 0 GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:376" + }, + "cat" : "script", + "name" : "list", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682294 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682300 +},{ + "args" : + { + "functionArgs" : "NOT IS_ABSOLUTE ${CMAKE_INSTALL_DOCDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:385" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682305 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682312 +},{ + "args" : + { + "functionArgs" : "${CMAKE_INSTALL_PREFIX} STREQUAL /", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:390" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682328 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682345 +},{ + "args" : + { + "functionArgs" : "CMAKE_INSTALL_FULL_DOCDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DOCDIR}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:412" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682362 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682371 +},{ + "args" : + { + "functionArgs" : "GGAID_dir", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:418" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682377 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682383 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_arg_count", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:419" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682386 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682391 +},{ + "args" : + { + "functionArgs" : "GGAID_extra_args", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:420" + }, + "cat" : "script", + "name" : "unset", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682395 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682400 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682403 +},{ + "args" : + { + "functionArgs" : "POP", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake:446" + }, + "cat" : "script", + "name" : "cmake_policy", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682407 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682412 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682426 +},{ + "args" : + { + "functionArgs" : "TARGETS FastPFOR EXPORT FastPFORExport ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:189" + }, + "cat" : "script", + "name" : "install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682431 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682481 +},{ + "args" : + { + "functionArgs" : "PACKAGE_CMAKE_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/FastPFOR", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:195" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682486 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682495 +},{ + "args" : + { + "functionArgs" : "EXPORT FastPFORExport FILE FastPFORTargets.cmake DESTINATION ${PACKAGE_CMAKE_INSTALL_DIR} NAMESPACE FastPFOR::", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:196" + }, + "cat" : "script", + "name" : "install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682500 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682515 +},{ + "args" : + { + "functionArgs" : "DIRECTORY headers/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/fastpfor", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:200" + }, + "cat" : "script", + "name" : "install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682519 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682537 +},{ + "args" : + { + "functionArgs" : "FILES AUTHORS LICENSE README.md DESTINATION ${CMAKE_INSTALL_DOCDIR}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:201" + }, + "cat" : "script", + "name" : "install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682542 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682562 +},{ + "args" : + { + "functionArgs" : "NOT CMAKE_VERSION VERSION_LESS 3.0.0", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:203" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682567 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682577 +},{ + "args" : + { + "functionArgs" : "CMakePackageConfigHelpers", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:204" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682582 +},{ + "args" : + { + "functionArgs" : "WriteBasicConfigVersionFile", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:236" + }, + "cat" : "script", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682823 +},{ + "args" : + { + "functionArgs" : "WRITE_BASIC_CONFIG_VERSION_FILE _filename", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:24" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682890 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682899 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682909 +},{ + "args" : + { + "functionArgs" : "WRITE_BASIC_PACKAGE_VERSION_FILE", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:238" + }, + "cat" : "script", + "name" : "macro", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682913 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682920 +},{ + "args" : + { + "functionArgs" : "CONFIGURE_PACKAGE_CONFIG_FILE _inputFile _outputFile", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:242" + }, + "cat" : "script", + "name" : "function", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682928 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682934 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682944 +},{ + "args" : + { + "functionArgs" : "FastPFORConfig.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/FastPFORConfig.cmake INSTALL_DESTINATION ${PACKAGE_CMAKE_INSTALL_DIR}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:205" + }, + "cat" : "script", + "name" : "configure_package_config_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682948 +},{ + "args" : + { + "functionArgs" : "options NO_SET_AND_CHECK_MACRO NO_CHECK_REQUIRED_COMPONENTS_MACRO", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:243" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682968 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682976 +},{ + "args" : + { + "functionArgs" : "oneValueArgs INSTALL_DESTINATION INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:244" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682980 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682986 +},{ + "args" : + { + "functionArgs" : "multiValueArgs PATH_VARS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:245" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682995 +},{ + "args" : + { + "functionArgs" : "CCF ${options} ${oneValueArgs} ${multiValueArgs} ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:247" + }, + "cat" : "script", + "name" : "cmake_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003682999 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683017 +},{ + "args" : + { + "functionArgs" : "CCF_UNPARSED_ARGUMENTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:249" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683021 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683038 +},{ + "args" : + { + "functionArgs" : "NOT CCF_INSTALL_DESTINATION", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:253" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683050 +},{ + "args" : + { + "functionArgs" : "DEFINED CCF_INSTALL_PREFIX", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:257" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683053 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683060 +},{ + "args" : + { + "functionArgs" : "installPrefix ${CMAKE_INSTALL_PREFIX}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:264" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683067 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683075 +},{ + "args" : + { + "functionArgs" : "IS_ABSOLUTE ${CCF_INSTALL_DESTINATION}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:269" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683079 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683086 +},{ + "args" : + { + "functionArgs" : "absInstallDir ${installPrefix}/${CCF_INSTALL_DESTINATION}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:272" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683090 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683099 +},{ + "args" : + { + "functionArgs" : "RELATIVE_PATH PACKAGE_RELATIVE_PATH ${absInstallDir} ${installPrefix}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:275" + }, + "cat" : "script", + "name" : "file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683103 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683116 +},{ + "args" : + { + "functionArgs" : "var ${CCF_PATH_VARS}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:277" + }, + "cat" : "script", + "name" : "foreach", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683120 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683127 +},{ + "args" : + { + "functionArgs" : "inputFileName ${_inputFile} NAME", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:290" + }, + "cat" : "script", + "name" : "get_filename_component", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683132 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683140 +},{ + "args" : + { + "functionArgs" : "PACKAGE_INIT \n####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######\n####### Any changes to this file will be overwritten by the next CMake run ####\n####### The input file was ${inputFileName} ########\n\nget_filename_component(PACKAGE_PREFIX_DIR \\\"\\${CMAKE_CURRENT_LIST_DIR}/${PACKAGE_RELATIVE_PATH}\\\" ABSOLUTE)\n", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:292" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683143 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683159 +},{ + "args" : + { + "functionArgs" : "${absInstallDir} MATCHES ^(/usr)?/lib(64)?/.+", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:300" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683163 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683174 +},{ + "args" : + { + "functionArgs" : "NOT CCF_NO_SET_AND_CHECK_MACRO", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:315" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683185 +},{ + "args" : + { + "functionArgs" : "APPEND PACKAGE_INIT \nmacro(set_and_check _var _file)\n set(\\${_var} \\\"\\${_file}\\\")\n if(NOT EXISTS \\\"\\${_file}\\\")\n message(FATAL_ERROR \\\"File or directory \\${_file} referenced by variable \\${_var} does not exist !\\\")\n endif()\nendmacro()\n", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:316" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683188 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683204 +},{ + "args" : + { + "functionArgs" : "NOT CCF_NO_CHECK_REQUIRED_COMPONENTS_MACRO", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:327" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683208 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683214 +},{ + "args" : + { + "functionArgs" : "APPEND PACKAGE_INIT \nmacro(check_required_components _NAME)\n foreach(comp \\${\\${_NAME}_FIND_COMPONENTS})\n if(NOT \\${_NAME}_\\${comp}_FOUND)\n if(\\${_NAME}_FIND_REQUIRED_\\${comp})\n set(\\${_NAME}_FOUND FALSE)\n endif()\n endif()\n endforeach()\nendmacro()\n", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:328" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683218 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683234 +},{ + "args" : + { + "functionArgs" : "APPEND PACKAGE_INIT \n####################################################################################", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:341" + }, + "cat" : "script", + "name" : "string", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683244 +},{ + "args" : + { + "functionArgs" : "${_inputFile} ${_outputFile} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:344" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683247 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683352 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683359 +},{ + "args" : + { + "functionArgs" : "FastPFORConfigVersion.cmake COMPATIBILITY SameMajorVersion", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:208" + }, + "cat" : "script", + "name" : "write_basic_package_version_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683364 +},{ + "args" : + { + "functionArgs" : "FastPFORConfigVersion.cmake;COMPATIBILITY;SameMajorVersion", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake:239" + }, + "cat" : "script", + "name" : "write_basic_config_version_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683376 +},{ + "args" : + { + "functionArgs" : "options ARCH_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:26" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683390 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683397 +},{ + "args" : + { + "functionArgs" : "oneValueArgs VERSION COMPATIBILITY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:27" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683401 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683407 +},{ + "args" : + { + "functionArgs" : "multiValueArgs", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:28" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683411 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683426 +},{ + "args" : + { + "functionArgs" : "CVF ${options} ${oneValueArgs} ${multiValueArgs} ${ARGN}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:30" + }, + "cat" : "script", + "name" : "cmake_parse_arguments", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683430 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683446 +},{ + "args" : + { + "functionArgs" : "CVF_UNPARSED_ARGUMENTS", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:32" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683450 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683457 +},{ + "args" : + { + "functionArgs" : "versionTemplateFile ${CMAKE_ROOT}/Modules/BasicConfigVersion-${CVF_COMPATIBILITY}.cmake.in", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:36" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683471 +},{ + "args" : + { + "functionArgs" : "NOT EXISTS ${versionTemplateFile}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:37" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683474 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683485 +},{ + "args" : + { + "functionArgs" : "${CVF_VERSION} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:41" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683498 +},{ + "args" : + { + "functionArgs" : "${PROJECT_VERSION} STREQUAL ", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:42" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683502 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683509 +},{ + "args" : + { + "functionArgs" : "CVF_VERSION ${PROJECT_VERSION}", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:45" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683514 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683520 +},{ + "args" : + { + "functionArgs" : "NOT CVF_ARCH_INDEPENDENT", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:49" + }, + "cat" : "script", + "name" : "if", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683524 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683530 +},{ + "args" : + { + "functionArgs" : "CVF_ARCH_INDEPENDENT_CHECK \n# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:\nif(\\\"\\${CMAKE_SIZEOF_VOID_P}\\\" STREQUAL \\\"\\\" OR \\\"${CMAKE_SIZEOF_VOID_P}\\\" STREQUAL \\\"\\\")\n return()\nendif()\n\n# check that the installed version has the same 32/64bit-ness as the one which is currently searching:\nif(NOT CMAKE_SIZEOF_VOID_P STREQUAL \\\"${CMAKE_SIZEOF_VOID_P}\\\")\n math(EXPR installedBits \\\"${CMAKE_SIZEOF_VOID_P} * 8\\\")\n set(PACKAGE_VERSION \\\"\\${PACKAGE_VERSION} (\\${installedBits}bit)\\\")\n set(PACKAGE_VERSION_UNSUITABLE TRUE)\nendif()", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:50" + }, + "cat" : "script", + "name" : "set", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683560 +},{ + "args" : + { + "functionArgs" : "${versionTemplateFile} ${_filename} @ONLY", + "location" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake:64" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683564 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683686 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683692 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683695 +},{ + "args" : + { + "functionArgs" : "FILES ${CMAKE_CURRENT_BINARY_DIR}/FastPFORConfig.cmake ${CMAKE_CURRENT_BINARY_DIR}/FastPFORConfigVersion.cmake DESTINATION ${PACKAGE_CMAKE_INSTALL_DIR}", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:210" + }, + "cat" : "script", + "name" : "install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683701 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683726 +},{ + "args" : + { + "functionArgs" : "fastpfor.pc.in ${CMAKE_CURRENT_BINARY_DIR}/fastpfor.pc @ONLY", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:215" + }, + "cat" : "script", + "name" : "configure_file", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683731 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683821 +},{ + "args" : + { + "functionArgs" : "FILES ${CMAKE_CURRENT_BINARY_DIR}/fastpfor.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig", + "location" : "/home/kosakseb/Developer/FastPFor/CMakeLists.txt:216" + }, + "cat" : "script", + "name" : "install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683827 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003683847 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684193 +},{ + "cat" : "project", + "name" : "generate", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684198 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684809 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684819 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684853 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684857 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684880 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684884 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684888 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684891 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684914 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684918 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684922 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684925 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684946 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684950 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684973 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684990 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003684994 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685012 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685016 +},{ + "cat" : "genex_compile", + "name" : "gtest", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685049 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685053 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685057 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685060 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685174 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685189 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685205 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685209 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685221 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685225 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685229 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685232 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685245 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685249 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685256 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685272 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685287 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685299 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685302 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685314 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685317 +},{ + "cat" : "genex_compile", + "name" : "gtest", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685335 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685338 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685342 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685345 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685420 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685424 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685437 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685441 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685453 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685456 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685460 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685463 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685477 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685480 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685484 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685487 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685501 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685504 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685516 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685519 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685534 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685537 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685550 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685553 +},{ + "cat" : "genex_compile", + "name" : "gtest", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685565 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685568 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685572 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685575 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685629 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685636 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest-complete", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685648 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685651 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-build", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685671 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685675 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-configure", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685683 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685687 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-download", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685698 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685701 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685711 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685714 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-mkdir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685723 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685726 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685735 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685744 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685747 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685770 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685774 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src-complete", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685782 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685786 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-build", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685804 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685807 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-configure", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685817 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685820 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-download", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685830 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685834 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685859 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685863 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685872 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685875 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685881 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685885 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685894 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685897 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685920 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685924 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src-complete", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685932 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685936 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-build", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685956 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-configure", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685964 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685968 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-download", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685977 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685980 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685989 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003685992 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686000 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686003 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686011 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686014 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686023 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686026 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/check", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686051 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686055 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686152 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686156 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686182 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686185 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686205 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686208 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686212 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686215 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686235 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686241 +},{ + "cat" : "genex_compile", + "name" : "/usr/lib/x86_64-linux-gnu/libsnappy.so", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686245 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686248 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686268 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686271 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686290 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686293 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686312 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686316 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686334 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686337 +},{ + "cat" : "genex_compile", + "name" : "gtest", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686354 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686358 +},{ + "cat" : "genex_compile", + "name" : "FastPFOR", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686361 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686365 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686670 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686675 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686681 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686684 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686687 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686691 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686694 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686697 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686700 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686703 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686706 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686709 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686712 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686715 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686718 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003686720 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003690918 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003690924 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003691170 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003691175 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003691739 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003691745 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003691988 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003691993 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003692594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003692610 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003692916 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003692922 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003693512 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003693518 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003693832 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003693837 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694223 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694229 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest-complete", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694253 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694257 +},{ + "cat" : "genex_compile", + "name" : "Completed 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694269 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694272 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-build", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694322 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694326 +},{ + "cat" : "genex_compile", + "name" : "No build step for 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694332 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694335 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-configure", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694363 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694367 +},{ + "cat" : "genex_compile", + "name" : "No configure step for 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694374 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694377 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-download", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694405 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694408 +},{ + "cat" : "genex_compile", + "name" : "Performing download step (git clone) for 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694415 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694418 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694446 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694449 +},{ + "cat" : "genex_compile", + "name" : "No install step for 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694455 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694458 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-mkdir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694483 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694486 +},{ + "cat" : "genex_compile", + "name" : "Creating directories for 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694493 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694520 +},{ + "cat" : "genex_compile", + "name" : "No patch step for 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694526 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694529 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694556 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694559 +},{ + "cat" : "genex_compile", + "name" : "No update step for 'googletest'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694566 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694569 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694849 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694854 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src-complete", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694876 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694879 +},{ + "cat" : "genex_compile", + "name" : "Completed 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694892 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694895 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-build", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694947 +},{ + "cat" : "genex_compile", + "name" : "Performing build step for 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694953 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694956 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-configure", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694984 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694987 +},{ + "cat" : "genex_compile", + "name" : "Performing configure step for 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694994 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003694997 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-download", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695043 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695047 +},{ + "cat" : "genex_compile", + "name" : "No download step for 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695054 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695058 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695088 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695092 +},{ + "cat" : "genex_compile", + "name" : "Performing install step for 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695098 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695101 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695126 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695130 +},{ + "cat" : "genex_compile", + "name" : "Creating directories for 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695134 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695137 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695161 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695164 +},{ + "cat" : "genex_compile", + "name" : "No patch step for 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695178 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695181 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695210 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695214 +},{ + "cat" : "genex_compile", + "name" : "No update step for 'gtest_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695221 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695224 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695490 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695495 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src-complete", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695517 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695521 +},{ + "cat" : "genex_compile", + "name" : "Completed 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695533 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695536 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-build", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695584 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695588 +},{ + "cat" : "genex_compile", + "name" : "Performing build step for 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695594 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695597 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-configure", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695625 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695628 +},{ + "cat" : "genex_compile", + "name" : "Performing configure step for 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695635 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695638 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-download", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695684 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695688 +},{ + "cat" : "genex_compile", + "name" : "No download step for 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695696 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695699 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-install", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695731 +},{ + "cat" : "genex_compile", + "name" : "Performing install step for 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695737 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695740 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695765 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695768 +},{ + "cat" : "genex_compile", + "name" : "Creating directories for 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695772 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695775 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695799 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695802 +},{ + "cat" : "genex_compile", + "name" : "No patch step for 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695808 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695811 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695838 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695841 +},{ + "cat" : "genex_compile", + "name" : "No update step for 'gmock_src'", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695848 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003695850 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003696307 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003696312 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003696577 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003696583 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003697175 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003697181 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003697427 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003697433 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003698025 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003698031 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003698273 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003698278 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003698845 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003698851 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699092 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699098 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/check", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699473 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699479 +},{ + "cat" : "genex_compile", + "name" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest/include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699889 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699895 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699935 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699939 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699943 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003699946 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003700461 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003700467 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003700472 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003700475 +},{ + "cat" : "genex_compile", + "name" : "include", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003701797 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003701802 +},{ + "cat" : "genex_compile", + "name" : "TRUE", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003703732 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003703738 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003705969 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003705975 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003705981 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003705984 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706019 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706023 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706039 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706042 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706237 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706242 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706270 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706274 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706528 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706533 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706561 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706565 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706728 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706733 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706761 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003706766 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707087 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707092 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707119 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707123 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707284 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707289 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707316 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003707320 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708029 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708035 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708062 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708066 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708226 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708230 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708258 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708262 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708573 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708577 +},{ + "cat" : "genex_compile", + "name" : "", + "ph" : "B", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708604 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003708608 +},{ + "ph" : "E", + "pid" : 14791, + "tid" : 0, + "ts" : 10003709392 +}] \ No newline at end of file diff --git a/cmake-build-debug-event-trace/CMakeFiles/cmake.check_cache b/cmake-build-debug-event-trace/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/DependInfo.cmake new file mode 100644 index 0000000..4c260ba --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/codecs.cpp" "CMakeFiles/codecs.dir/src/codecs.cpp.o" "gcc" "CMakeFiles/codecs.dir/src/codecs.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/build.make new file mode 100644 index 0000000..e6ed5dc --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/codecs.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/codecs.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/codecs.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/codecs.dir/flags.make + +CMakeFiles/codecs.dir/src/codecs.cpp.o: CMakeFiles/codecs.dir/flags.make +CMakeFiles/codecs.dir/src/codecs.cpp.o: /home/kosakseb/Developer/FastPFor/src/codecs.cpp +CMakeFiles/codecs.dir/src/codecs.cpp.o: CMakeFiles/codecs.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/codecs.dir/src/codecs.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/codecs.dir/src/codecs.cpp.o -MF CMakeFiles/codecs.dir/src/codecs.cpp.o.d -o CMakeFiles/codecs.dir/src/codecs.cpp.o -c /home/kosakseb/Developer/FastPFor/src/codecs.cpp + +CMakeFiles/codecs.dir/src/codecs.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/codecs.dir/src/codecs.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/codecs.cpp > CMakeFiles/codecs.dir/src/codecs.cpp.i + +CMakeFiles/codecs.dir/src/codecs.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/codecs.dir/src/codecs.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/codecs.cpp -o CMakeFiles/codecs.dir/src/codecs.cpp.s + +# Object files for target codecs +codecs_OBJECTS = \ +"CMakeFiles/codecs.dir/src/codecs.cpp.o" + +# External object files for target codecs +codecs_EXTERNAL_OBJECTS = + +codecs: CMakeFiles/codecs.dir/src/codecs.cpp.o +codecs: CMakeFiles/codecs.dir/build.make +codecs: libFastPFOR.a +codecs: CMakeFiles/codecs.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable codecs" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/codecs.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/codecs.dir/build: codecs +.PHONY : CMakeFiles/codecs.dir/build + +CMakeFiles/codecs.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/codecs.dir/cmake_clean.cmake +.PHONY : CMakeFiles/codecs.dir/clean + +CMakeFiles/codecs.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/codecs.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/cmake_clean.cmake new file mode 100644 index 0000000..6f5438c --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/codecs.dir/src/codecs.cpp.o" + "CMakeFiles/codecs.dir/src/codecs.cpp.o.d" + "codecs" + "codecs.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/codecs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.make new file mode 100644 index 0000000..f8bd0b4 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for codecs. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.ts new file mode 100644 index 0000000..9f7475d --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for codecs. diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/depend.make new file mode 100644 index 0000000..955c7d3 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for codecs. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/link.txt new file mode 100644 index 0000000..8b1b320 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/codecs.dir/src/codecs.cpp.o -o codecs libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/progress.make new file mode 100644 index 0000000..2b041ba --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecs.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 18 +CMAKE_PROGRESS_2 = 19 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/DependInfo.cmake new file mode 100644 index 0000000..42b8095 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/codecs.cpp" "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" "gcc" "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/build.make new file mode 100644 index 0000000..3aed2a2 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/build.make @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/codecssnappy.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/codecssnappy.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/codecssnappy.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/codecssnappy.dir/flags.make + +CMakeFiles/codecssnappy.dir/src/codecs.cpp.o: CMakeFiles/codecssnappy.dir/flags.make +CMakeFiles/codecssnappy.dir/src/codecs.cpp.o: /home/kosakseb/Developer/FastPFor/src/codecs.cpp +CMakeFiles/codecssnappy.dir/src/codecs.cpp.o: CMakeFiles/codecssnappy.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/codecssnappy.dir/src/codecs.cpp.o -MF CMakeFiles/codecssnappy.dir/src/codecs.cpp.o.d -o CMakeFiles/codecssnappy.dir/src/codecs.cpp.o -c /home/kosakseb/Developer/FastPFor/src/codecs.cpp + +CMakeFiles/codecssnappy.dir/src/codecs.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/codecssnappy.dir/src/codecs.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/codecs.cpp > CMakeFiles/codecssnappy.dir/src/codecs.cpp.i + +CMakeFiles/codecssnappy.dir/src/codecs.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/codecssnappy.dir/src/codecs.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/codecs.cpp -o CMakeFiles/codecssnappy.dir/src/codecs.cpp.s + +# Object files for target codecssnappy +codecssnappy_OBJECTS = \ +"CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" + +# External object files for target codecssnappy +codecssnappy_EXTERNAL_OBJECTS = + +codecssnappy: CMakeFiles/codecssnappy.dir/src/codecs.cpp.o +codecssnappy: CMakeFiles/codecssnappy.dir/build.make +codecssnappy: libFastPFOR.a +codecssnappy: /usr/lib/x86_64-linux-gnu/libsnappy.so +codecssnappy: CMakeFiles/codecssnappy.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable codecssnappy" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/codecssnappy.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/codecssnappy.dir/build: codecssnappy +.PHONY : CMakeFiles/codecssnappy.dir/build + +CMakeFiles/codecssnappy.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/codecssnappy.dir/cmake_clean.cmake +.PHONY : CMakeFiles/codecssnappy.dir/clean + +CMakeFiles/codecssnappy.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/codecssnappy.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/cmake_clean.cmake new file mode 100644 index 0000000..8b44975 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" + "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o.d" + "codecssnappy" + "codecssnappy.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/codecssnappy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.make new file mode 100644 index 0000000..1c24690 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for codecssnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.ts new file mode 100644 index 0000000..17b3c21 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for codecssnappy. diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/depend.make new file mode 100644 index 0000000..7631cad --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for codecssnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/link.txt new file mode 100644 index 0000000..6c8cbb1 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/codecssnappy.dir/src/codecs.cpp.o -o codecssnappy libFastPFOR.a -lsnappy diff --git a/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/progress.make new file mode 100644 index 0000000..bc8bba0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/codecssnappy.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 20 +CMAKE_PROGRESS_2 = 21 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/DependInfo.cmake new file mode 100644 index 0000000..c0645b8 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp" "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" "gcc" "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/build.make new file mode 100644 index 0000000..f016917 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/csv2maropu.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/csv2maropu.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/csv2maropu.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/csv2maropu.dir/flags.make + +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o: CMakeFiles/csv2maropu.dir/flags.make +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o: /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o: CMakeFiles/csv2maropu.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o -MF CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o.d -o CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o -c /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp + +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp > CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.i + +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp -o CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.s + +# Object files for target csv2maropu +csv2maropu_OBJECTS = \ +"CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" + +# External object files for target csv2maropu +csv2maropu_EXTERNAL_OBJECTS = + +csv2maropu: CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o +csv2maropu: CMakeFiles/csv2maropu.dir/build.make +csv2maropu: CMakeFiles/csv2maropu.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable csv2maropu" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/csv2maropu.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/csv2maropu.dir/build: csv2maropu +.PHONY : CMakeFiles/csv2maropu.dir/build + +CMakeFiles/csv2maropu.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/csv2maropu.dir/cmake_clean.cmake +.PHONY : CMakeFiles/csv2maropu.dir/clean + +CMakeFiles/csv2maropu.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/csv2maropu.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/cmake_clean.cmake new file mode 100644 index 0000000..334053e --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" + "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o.d" + "csv2maropu" + "csv2maropu.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/csv2maropu.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.make new file mode 100644 index 0000000..983b187 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for csv2maropu. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.ts new file mode 100644 index 0000000..78c98db --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for csv2maropu. diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/depend.make new file mode 100644 index 0000000..1d24772 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for csv2maropu. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/link.txt new file mode 100644 index 0000000..6405e1c --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o -o csv2maropu diff --git a/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/progress.make new file mode 100644 index 0000000..783d35b --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/csv2maropu.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 22 +CMAKE_PROGRESS_2 = 23 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/DependInfo.cmake new file mode 100644 index 0000000..4695ade --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/entropy.cpp" "CMakeFiles/entropy.dir/src/entropy.cpp.o" "gcc" "CMakeFiles/entropy.dir/src/entropy.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/build.make new file mode 100644 index 0000000..913d496 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/entropy.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/entropy.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/entropy.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/entropy.dir/flags.make + +CMakeFiles/entropy.dir/src/entropy.cpp.o: CMakeFiles/entropy.dir/flags.make +CMakeFiles/entropy.dir/src/entropy.cpp.o: /home/kosakseb/Developer/FastPFor/src/entropy.cpp +CMakeFiles/entropy.dir/src/entropy.cpp.o: CMakeFiles/entropy.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/entropy.dir/src/entropy.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/entropy.dir/src/entropy.cpp.o -MF CMakeFiles/entropy.dir/src/entropy.cpp.o.d -o CMakeFiles/entropy.dir/src/entropy.cpp.o -c /home/kosakseb/Developer/FastPFor/src/entropy.cpp + +CMakeFiles/entropy.dir/src/entropy.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/entropy.dir/src/entropy.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/entropy.cpp > CMakeFiles/entropy.dir/src/entropy.cpp.i + +CMakeFiles/entropy.dir/src/entropy.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/entropy.dir/src/entropy.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/entropy.cpp -o CMakeFiles/entropy.dir/src/entropy.cpp.s + +# Object files for target entropy +entropy_OBJECTS = \ +"CMakeFiles/entropy.dir/src/entropy.cpp.o" + +# External object files for target entropy +entropy_EXTERNAL_OBJECTS = + +entropy: CMakeFiles/entropy.dir/src/entropy.cpp.o +entropy: CMakeFiles/entropy.dir/build.make +entropy: libFastPFOR.a +entropy: CMakeFiles/entropy.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable entropy" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/entropy.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/entropy.dir/build: entropy +.PHONY : CMakeFiles/entropy.dir/build + +CMakeFiles/entropy.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/entropy.dir/cmake_clean.cmake +.PHONY : CMakeFiles/entropy.dir/clean + +CMakeFiles/entropy.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/entropy.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/cmake_clean.cmake new file mode 100644 index 0000000..158524e --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/entropy.dir/src/entropy.cpp.o" + "CMakeFiles/entropy.dir/src/entropy.cpp.o.d" + "entropy" + "entropy.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/entropy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.make new file mode 100644 index 0000000..3641215 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for entropy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.ts new file mode 100644 index 0000000..86e07b3 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for entropy. diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/depend.make new file mode 100644 index 0000000..98fe0ea --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for entropy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/link.txt new file mode 100644 index 0000000..e7c2433 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/entropy.dir/src/entropy.cpp.o -o entropy libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/progress.make new file mode 100644 index 0000000..59fdd58 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/entropy.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 24 +CMAKE_PROGRESS_2 = 25 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/example.dir/DependInfo.cmake new file mode 100644 index 0000000..35fa6dc --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/example.cpp" "CMakeFiles/example.dir/example.cpp.o" "gcc" "CMakeFiles/example.dir/example.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/example.dir/build.make new file mode 100644 index 0000000..c24957a --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/example.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/example.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/example.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/example.dir/flags.make + +CMakeFiles/example.dir/example.cpp.o: CMakeFiles/example.dir/flags.make +CMakeFiles/example.dir/example.cpp.o: /home/kosakseb/Developer/FastPFor/example.cpp +CMakeFiles/example.dir/example.cpp.o: CMakeFiles/example.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/example.dir/example.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/example.dir/example.cpp.o -MF CMakeFiles/example.dir/example.cpp.o.d -o CMakeFiles/example.dir/example.cpp.o -c /home/kosakseb/Developer/FastPFor/example.cpp + +CMakeFiles/example.dir/example.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/example.dir/example.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/example.cpp > CMakeFiles/example.dir/example.cpp.i + +CMakeFiles/example.dir/example.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/example.dir/example.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/example.cpp -o CMakeFiles/example.dir/example.cpp.s + +# Object files for target example +example_OBJECTS = \ +"CMakeFiles/example.dir/example.cpp.o" + +# External object files for target example +example_EXTERNAL_OBJECTS = + +example: CMakeFiles/example.dir/example.cpp.o +example: CMakeFiles/example.dir/build.make +example: libFastPFOR.a +example: CMakeFiles/example.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable example" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/example.dir/build: example +.PHONY : CMakeFiles/example.dir/build + +CMakeFiles/example.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/example.dir/cmake_clean.cmake +.PHONY : CMakeFiles/example.dir/clean + +CMakeFiles/example.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/example.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/example.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/example.dir/cmake_clean.cmake new file mode 100644 index 0000000..09552e7 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/example.dir/example.cpp.o" + "CMakeFiles/example.dir/example.cpp.o.d" + "example" + "example.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/example.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.make new file mode 100644 index 0000000..fd35cca --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for example. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.ts new file mode 100644 index 0000000..82206ab --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for example. diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/example.dir/depend.make new file mode 100644 index 0000000..1438e1c --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for example. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/example.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/example.dir/link.txt new file mode 100644 index 0000000..2bea6a5 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/example.dir/example.cpp.o -o example libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/example.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/example.dir/progress.make new file mode 100644 index 0000000..3244467 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/example.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 26 +CMAKE_PROGRESS_2 = 27 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/DependInfo.cmake new file mode 100644 index 0000000..f3fdc06 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/gapstats.cpp" "CMakeFiles/gapstats.dir/src/gapstats.cpp.o" "gcc" "CMakeFiles/gapstats.dir/src/gapstats.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/build.make new file mode 100644 index 0000000..e14bf78 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/gapstats.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/gapstats.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gapstats.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/gapstats.dir/flags.make + +CMakeFiles/gapstats.dir/src/gapstats.cpp.o: CMakeFiles/gapstats.dir/flags.make +CMakeFiles/gapstats.dir/src/gapstats.cpp.o: /home/kosakseb/Developer/FastPFor/src/gapstats.cpp +CMakeFiles/gapstats.dir/src/gapstats.cpp.o: CMakeFiles/gapstats.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/gapstats.dir/src/gapstats.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/gapstats.dir/src/gapstats.cpp.o -MF CMakeFiles/gapstats.dir/src/gapstats.cpp.o.d -o CMakeFiles/gapstats.dir/src/gapstats.cpp.o -c /home/kosakseb/Developer/FastPFor/src/gapstats.cpp + +CMakeFiles/gapstats.dir/src/gapstats.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/gapstats.dir/src/gapstats.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/gapstats.cpp > CMakeFiles/gapstats.dir/src/gapstats.cpp.i + +CMakeFiles/gapstats.dir/src/gapstats.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/gapstats.dir/src/gapstats.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/gapstats.cpp -o CMakeFiles/gapstats.dir/src/gapstats.cpp.s + +# Object files for target gapstats +gapstats_OBJECTS = \ +"CMakeFiles/gapstats.dir/src/gapstats.cpp.o" + +# External object files for target gapstats +gapstats_EXTERNAL_OBJECTS = + +gapstats: CMakeFiles/gapstats.dir/src/gapstats.cpp.o +gapstats: CMakeFiles/gapstats.dir/build.make +gapstats: CMakeFiles/gapstats.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable gapstats" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gapstats.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/gapstats.dir/build: gapstats +.PHONY : CMakeFiles/gapstats.dir/build + +CMakeFiles/gapstats.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gapstats.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gapstats.dir/clean + +CMakeFiles/gapstats.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/gapstats.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/cmake_clean.cmake new file mode 100644 index 0000000..7bf5c6c --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gapstats.dir/src/gapstats.cpp.o" + "CMakeFiles/gapstats.dir/src/gapstats.cpp.o.d" + "gapstats" + "gapstats.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gapstats.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.make new file mode 100644 index 0000000..ec8956f --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gapstats. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.ts new file mode 100644 index 0000000..a35e785 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gapstats. diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/depend.make new file mode 100644 index 0000000..5c3d415 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gapstats. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/link.txt new file mode 100644 index 0000000..a50b919 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/gapstats.dir/src/gapstats.cpp.o -o gapstats diff --git a/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/progress.make new file mode 100644 index 0000000..ec204d3 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gapstats.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 28 +CMAKE_PROGRESS_2 = 29 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.json b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.json new file mode 100644 index 0000000..397ba4d --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src-complete.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-build.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-configure.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-download.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-install.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update.rule" + } + ], + "target" : + { + "labels" : + [ + "gmock_src" + ], + "name" : "gmock_src" + } +} \ No newline at end of file diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.txt b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.txt new file mode 100644 index 0000000..a47a044 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + gmock_src +# Source files and their labels +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src-complete.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-build.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-configure.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-download.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-install.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update.rule diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/build.make new file mode 100644 index 0000000..af300d1 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/build.make @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Utility rule file for gmock_src. + +# Include any custom commands dependencies for this target. +include CMakeFiles/gmock_src.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gmock_src.dir/progress.make + +CMakeFiles/gmock_src: CMakeFiles/gmock_src-complete + +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-install +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-download +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-update +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-patch +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-configure +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-build +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'gmock_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E make_directory /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src-complete + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-done + +vendor/gtm/src/gmock_src-stamp/gmock_src-build: vendor/gtm/src/gmock_src-stamp/gmock_src-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Performing build step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build && $(MAKE) + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-build + +vendor/gtm/src/gmock_src-stamp/gmock_src-configure: vendor/gtm/tmp/gmock_src-cfgcmd.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-configure: vendor/gtm/src/gmock_src-stamp/gmock_src-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Performing configure step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gmock -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= "-GUnix Makefiles" -S /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock -B /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-configure + +vendor/gtm/src/gmock_src-stamp/gmock_src-download: vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-download: vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "No download step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-download + +vendor/gtm/src/gmock_src-stamp/gmock_src-install: vendor/gtm/src/gmock_src-stamp/gmock_src-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Performing install step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build && $(MAKE) install + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-install + +vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'gmock_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir + +vendor/gtm/src/gmock_src-stamp/gmock_src-patch: vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-patch: vendor/gtm/src/gmock_src-stamp/gmock_src-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'gmock_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch + +vendor/gtm/src/gmock_src-stamp/gmock_src-update: vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-update: vendor/gtm/src/gmock_src-stamp/gmock_src-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No update step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update + +gmock_src: CMakeFiles/gmock_src +gmock_src: CMakeFiles/gmock_src-complete +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-build +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-configure +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-download +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-install +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-patch +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-update +gmock_src: CMakeFiles/gmock_src.dir/build.make +.PHONY : gmock_src + +# Rule to build all files generated by this target. +CMakeFiles/gmock_src.dir/build: gmock_src +.PHONY : CMakeFiles/gmock_src.dir/build + +CMakeFiles/gmock_src.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gmock_src.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gmock_src.dir/clean + +CMakeFiles/gmock_src.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/gmock_src.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/cmake_clean.cmake new file mode 100644 index 0000000..eac93f6 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock_src" + "CMakeFiles/gmock_src-complete" + "vendor/gtm/src/gmock_src-stamp/gmock_src-build" + "vendor/gtm/src/gmock_src-stamp/gmock_src-configure" + "vendor/gtm/src/gmock_src-stamp/gmock_src-download" + "vendor/gtm/src/gmock_src-stamp/gmock_src-install" + "vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir" + "vendor/gtm/src/gmock_src-stamp/gmock_src-patch" + "vendor/gtm/src/gmock_src-stamp/gmock_src-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/gmock_src.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.make new file mode 100644 index 0000000..a850e73 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for gmock_src. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.ts new file mode 100644 index 0000000..e47429c --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for gmock_src. diff --git a/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/progress.make new file mode 100644 index 0000000..7218115 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gmock_src.dir/progress.make @@ -0,0 +1,9 @@ +CMAKE_PROGRESS_1 = 30 +CMAKE_PROGRESS_2 = 31 +CMAKE_PROGRESS_3 = 32 +CMAKE_PROGRESS_4 = 33 +CMAKE_PROGRESS_5 = 34 +CMAKE_PROGRESS_6 = 35 +CMAKE_PROGRESS_7 = 36 +CMAKE_PROGRESS_8 = 37 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.json b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.json new file mode 100644 index 0000000..11d6d00 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest-complete.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-build.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-configure.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-download.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-install.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-mkdir.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update.rule" + } + ], + "target" : + { + "labels" : + [ + "googletest" + ], + "name" : "googletest" + } +} \ No newline at end of file diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.txt b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.txt new file mode 100644 index 0000000..e833a0f --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + googletest +# Source files and their labels +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest-complete.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-build.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-configure.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-download.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-install.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-mkdir.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update.rule diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/build.make new file mode 100644 index 0000000..7a4ab01 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/build.make @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Utility rule file for googletest. + +# Include any custom commands dependencies for this target. +include CMakeFiles/googletest.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/googletest.dir/progress.make + +CMakeFiles/googletest: CMakeFiles/googletest-complete + +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-install +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-mkdir +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-download +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-update +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-patch +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-configure +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-build +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'googletest'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E make_directory /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest-complete + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-done + +vendor/gtm/src/googletest-stamp/googletest-build: vendor/gtm/src/googletest-stamp/googletest-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-build + +vendor/gtm/src/googletest-stamp/googletest-configure: vendor/gtm/tmp/googletest-cfgcmd.txt +vendor/gtm/src/googletest-stamp/googletest-configure: vendor/gtm/src/googletest-stamp/googletest-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-configure + +vendor/gtm/src/googletest-stamp/googletest-download: vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt +vendor/gtm/src/googletest-stamp/googletest-download: vendor/gtm/src/googletest-stamp/googletest-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-download + +vendor/gtm/src/googletest-stamp/googletest-install: vendor/gtm/src/googletest-stamp/googletest-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-install + +vendor/gtm/src/googletest-stamp/googletest-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'googletest'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-mkdir + +vendor/gtm/src/googletest-stamp/googletest-patch: vendor/gtm/src/googletest-stamp/googletest-patch-info.txt +vendor/gtm/src/googletest-stamp/googletest-patch: vendor/gtm/src/googletest-stamp/googletest-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'googletest'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch + +vendor/gtm/src/googletest-stamp/googletest-update: vendor/gtm/src/googletest-stamp/googletest-update-info.txt +vendor/gtm/src/googletest-stamp/googletest-update: vendor/gtm/src/googletest-stamp/googletest-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No update step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update + +googletest: CMakeFiles/googletest +googletest: CMakeFiles/googletest-complete +googletest: vendor/gtm/src/googletest-stamp/googletest-build +googletest: vendor/gtm/src/googletest-stamp/googletest-configure +googletest: vendor/gtm/src/googletest-stamp/googletest-download +googletest: vendor/gtm/src/googletest-stamp/googletest-install +googletest: vendor/gtm/src/googletest-stamp/googletest-mkdir +googletest: vendor/gtm/src/googletest-stamp/googletest-patch +googletest: vendor/gtm/src/googletest-stamp/googletest-update +googletest: CMakeFiles/googletest.dir/build.make +.PHONY : googletest + +# Rule to build all files generated by this target. +CMakeFiles/googletest.dir/build: googletest +.PHONY : CMakeFiles/googletest.dir/build + +CMakeFiles/googletest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/googletest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/googletest.dir/clean + +CMakeFiles/googletest.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/googletest.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/cmake_clean.cmake new file mode 100644 index 0000000..0cf11c9 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/googletest" + "CMakeFiles/googletest-complete" + "vendor/gtm/src/googletest-stamp/googletest-build" + "vendor/gtm/src/googletest-stamp/googletest-configure" + "vendor/gtm/src/googletest-stamp/googletest-download" + "vendor/gtm/src/googletest-stamp/googletest-install" + "vendor/gtm/src/googletest-stamp/googletest-mkdir" + "vendor/gtm/src/googletest-stamp/googletest-patch" + "vendor/gtm/src/googletest-stamp/googletest-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/googletest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.make new file mode 100644 index 0000000..1a115b9 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for googletest. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.ts new file mode 100644 index 0000000..4c3c4b2 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for googletest. diff --git a/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/progress.make new file mode 100644 index 0000000..90f183f --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/googletest.dir/progress.make @@ -0,0 +1,9 @@ +CMAKE_PROGRESS_1 = 38 +CMAKE_PROGRESS_2 = 39 +CMAKE_PROGRESS_3 = 40 +CMAKE_PROGRESS_4 = 41 +CMAKE_PROGRESS_5 = 42 +CMAKE_PROGRESS_6 = 43 +CMAKE_PROGRESS_7 = 44 +CMAKE_PROGRESS_8 = 45 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.json b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.json new file mode 100644 index 0000000..c82054a --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src-complete.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-build.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-configure.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-download.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-install.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update.rule" + } + ], + "target" : + { + "labels" : + [ + "gtest_src" + ], + "name" : "gtest_src" + } +} \ No newline at end of file diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.txt b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.txt new file mode 100644 index 0000000..06b7a13 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + gtest_src +# Source files and their labels +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src-complete.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-build.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-configure.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-download.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-install.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update.rule diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/build.make new file mode 100644 index 0000000..8ee99f6 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/build.make @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Utility rule file for gtest_src. + +# Include any custom commands dependencies for this target. +include CMakeFiles/gtest_src.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gtest_src.dir/progress.make + +CMakeFiles/gtest_src: CMakeFiles/gtest_src-complete + +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-install +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-download +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-update +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-patch +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-configure +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-build +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'gtest_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E make_directory /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src-complete + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-done + +vendor/gtm/src/gtest_src-stamp/gtest_src-build: vendor/gtm/src/gtest_src-stamp/gtest_src-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Performing build step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build && $(MAKE) + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-build + +vendor/gtm/src/gtest_src-stamp/gtest_src-configure: vendor/gtm/tmp/gtest_src-cfgcmd.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-configure: vendor/gtm/src/gtest_src-stamp/gtest_src-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Performing configure step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= "-GUnix Makefiles" -S /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest -B /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-configure + +vendor/gtm/src/gtest_src-stamp/gtest_src-download: vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-download: vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "No download step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-download + +vendor/gtm/src/gtest_src-stamp/gtest_src-install: vendor/gtm/src/gtest_src-stamp/gtest_src-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Performing install step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build && $(MAKE) install + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-install + +vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'gtest_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir + +vendor/gtm/src/gtest_src-stamp/gtest_src-patch: vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-patch: vendor/gtm/src/gtest_src-stamp/gtest_src-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'gtest_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch + +vendor/gtm/src/gtest_src-stamp/gtest_src-update: vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-update: vendor/gtm/src/gtest_src-stamp/gtest_src-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No update step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update + +gtest_src: CMakeFiles/gtest_src +gtest_src: CMakeFiles/gtest_src-complete +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-build +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-configure +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-download +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-install +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-patch +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-update +gtest_src: CMakeFiles/gtest_src.dir/build.make +.PHONY : gtest_src + +# Rule to build all files generated by this target. +CMakeFiles/gtest_src.dir/build: gtest_src +.PHONY : CMakeFiles/gtest_src.dir/build + +CMakeFiles/gtest_src.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gtest_src.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gtest_src.dir/clean + +CMakeFiles/gtest_src.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/gtest_src.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/cmake_clean.cmake new file mode 100644 index 0000000..4d96dc2 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest_src" + "CMakeFiles/gtest_src-complete" + "vendor/gtm/src/gtest_src-stamp/gtest_src-build" + "vendor/gtm/src/gtest_src-stamp/gtest_src-configure" + "vendor/gtm/src/gtest_src-stamp/gtest_src-download" + "vendor/gtm/src/gtest_src-stamp/gtest_src-install" + "vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir" + "vendor/gtm/src/gtest_src-stamp/gtest_src-patch" + "vendor/gtm/src/gtest_src-stamp/gtest_src-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/gtest_src.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.make new file mode 100644 index 0000000..b30c467 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for gtest_src. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.ts new file mode 100644 index 0000000..96a91cc --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for gtest_src. diff --git a/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/progress.make new file mode 100644 index 0000000..40c4475 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/gtest_src.dir/progress.make @@ -0,0 +1,9 @@ +CMAKE_PROGRESS_1 = 46 +CMAKE_PROGRESS_2 = 47 +CMAKE_PROGRESS_3 = 48 +CMAKE_PROGRESS_4 = 49 +CMAKE_PROGRESS_5 = 50 +CMAKE_PROGRESS_6 = 51 +CMAKE_PROGRESS_7 = 52 +CMAKE_PROGRESS_8 = 53 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake new file mode 100644 index 0000000..d01bdd9 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp" "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" "gcc" "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/build.make new file mode 100644 index 0000000..7061696 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/inmemorybenchmark.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/inmemorybenchmark.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/inmemorybenchmark.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/inmemorybenchmark.dir/flags.make + +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmark.dir/flags.make +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o: /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o -MF CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o.d -o CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o -c /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp + +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp > CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.i + +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp -o CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.s + +# Object files for target inmemorybenchmark +inmemorybenchmark_OBJECTS = \ +"CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" + +# External object files for target inmemorybenchmark +inmemorybenchmark_EXTERNAL_OBJECTS = + +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/build.make +inmemorybenchmark: libFastPFOR.a +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable inmemorybenchmark" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/inmemorybenchmark.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/inmemorybenchmark.dir/build: inmemorybenchmark +.PHONY : CMakeFiles/inmemorybenchmark.dir/build + +CMakeFiles/inmemorybenchmark.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake +.PHONY : CMakeFiles/inmemorybenchmark.dir/clean + +CMakeFiles/inmemorybenchmark.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/inmemorybenchmark.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake new file mode 100644 index 0000000..d4c1bc0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" + "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o.d" + "inmemorybenchmark" + "inmemorybenchmark.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/inmemorybenchmark.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make new file mode 100644 index 0000000..a92b05c --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for inmemorybenchmark. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts new file mode 100644 index 0000000..6cd1da1 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for inmemorybenchmark. diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/depend.make new file mode 100644 index 0000000..3703cec --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for inmemorybenchmark. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/link.txt new file mode 100644 index 0000000..6f3e565 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o -o inmemorybenchmark libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/progress.make new file mode 100644 index 0000000..2e6ba90 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmark.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 54 +CMAKE_PROGRESS_2 = 55 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake new file mode 100644 index 0000000..bf8ac48 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp" "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" "gcc" "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/build.make new file mode 100644 index 0000000..0b4b9bc --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/build.make @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/inmemorybenchmarksnappy.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/inmemorybenchmarksnappy.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/inmemorybenchmarksnappy.dir/flags.make + +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmarksnappy.dir/flags.make +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o: /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o -MF CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o.d -o CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o -c /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp + +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp > CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.i + +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp -o CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.s + +# Object files for target inmemorybenchmarksnappy +inmemorybenchmarksnappy_OBJECTS = \ +"CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" + +# External object files for target inmemorybenchmarksnappy +inmemorybenchmarksnappy_EXTERNAL_OBJECTS = + +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/build.make +inmemorybenchmarksnappy: libFastPFOR.a +inmemorybenchmarksnappy: /usr/lib/x86_64-linux-gnu/libsnappy.so +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable inmemorybenchmarksnappy" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/inmemorybenchmarksnappy.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/inmemorybenchmarksnappy.dir/build: inmemorybenchmarksnappy +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/build + +CMakeFiles/inmemorybenchmarksnappy.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/clean + +CMakeFiles/inmemorybenchmarksnappy.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake new file mode 100644 index 0000000..c7aae56 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" + "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o.d" + "inmemorybenchmarksnappy" + "inmemorybenchmarksnappy.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make new file mode 100644 index 0000000..7b28d75 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for inmemorybenchmarksnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts new file mode 100644 index 0000000..e30a8a8 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for inmemorybenchmarksnappy. diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make new file mode 100644 index 0000000..439e1d7 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for inmemorybenchmarksnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt new file mode 100644 index 0000000..2bb92dc --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o -o inmemorybenchmarksnappy libFastPFOR.a -lsnappy diff --git a/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make new file mode 100644 index 0000000..fb03824 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 56 +CMAKE_PROGRESS_2 = 57 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/DependInfo.cmake new file mode 100644 index 0000000..dcbe142 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp" "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" "gcc" "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/build.make new file mode 100644 index 0000000..d0d4185 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/partitionbylength.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/partitionbylength.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/partitionbylength.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/partitionbylength.dir/flags.make + +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o: CMakeFiles/partitionbylength.dir/flags.make +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o: /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o: CMakeFiles/partitionbylength.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o -MF CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o.d -o CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o -c /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp + +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp > CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.i + +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp -o CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.s + +# Object files for target partitionbylength +partitionbylength_OBJECTS = \ +"CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" + +# External object files for target partitionbylength +partitionbylength_EXTERNAL_OBJECTS = + +partitionbylength: CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o +partitionbylength: CMakeFiles/partitionbylength.dir/build.make +partitionbylength: CMakeFiles/partitionbylength.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable partitionbylength" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/partitionbylength.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/partitionbylength.dir/build: partitionbylength +.PHONY : CMakeFiles/partitionbylength.dir/build + +CMakeFiles/partitionbylength.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/partitionbylength.dir/cmake_clean.cmake +.PHONY : CMakeFiles/partitionbylength.dir/clean + +CMakeFiles/partitionbylength.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/partitionbylength.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/cmake_clean.cmake new file mode 100644 index 0000000..fb72c7e --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" + "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o.d" + "partitionbylength" + "partitionbylength.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/partitionbylength.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.make new file mode 100644 index 0000000..a381c49 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for partitionbylength. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.ts new file mode 100644 index 0000000..92151cc --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for partitionbylength. diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/depend.make new file mode 100644 index 0000000..b09f1e8 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for partitionbylength. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/link.txt new file mode 100644 index 0000000..d29592e --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o -o partitionbylength diff --git a/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/progress.make new file mode 100644 index 0000000..42baaba --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/partitionbylength.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 58 +CMAKE_PROGRESS_2 = 59 + diff --git a/cmake-build-debug-event-trace/CMakeFiles/progress.marks b/cmake-build-debug-event-trace/CMakeFiles/progress.marks new file mode 100644 index 0000000..b1e7d26 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/progress.marks @@ -0,0 +1 @@ +61 diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/DependInfo.cmake b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/DependInfo.cmake new file mode 100644 index 0000000..7a6e5f0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/unit.cpp" "CMakeFiles/unit.dir/src/unit.cpp.o" "gcc" "CMakeFiles/unit.dir/src/unit.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/build.make b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/build.make new file mode 100644 index 0000000..c4de943 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +# Include any dependencies generated for this target. +include CMakeFiles/unit.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/unit.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/unit.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/unit.dir/flags.make + +CMakeFiles/unit.dir/src/unit.cpp.o: CMakeFiles/unit.dir/flags.make +CMakeFiles/unit.dir/src/unit.cpp.o: /home/kosakseb/Developer/FastPFor/src/unit.cpp +CMakeFiles/unit.dir/src/unit.cpp.o: CMakeFiles/unit.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/unit.dir/src/unit.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/unit.dir/src/unit.cpp.o -MF CMakeFiles/unit.dir/src/unit.cpp.o.d -o CMakeFiles/unit.dir/src/unit.cpp.o -c /home/kosakseb/Developer/FastPFor/src/unit.cpp + +CMakeFiles/unit.dir/src/unit.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/unit.dir/src/unit.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/unit.cpp > CMakeFiles/unit.dir/src/unit.cpp.i + +CMakeFiles/unit.dir/src/unit.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/unit.dir/src/unit.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/unit.cpp -o CMakeFiles/unit.dir/src/unit.cpp.s + +# Object files for target unit +unit_OBJECTS = \ +"CMakeFiles/unit.dir/src/unit.cpp.o" + +# External object files for target unit +unit_EXTERNAL_OBJECTS = + +unit: CMakeFiles/unit.dir/src/unit.cpp.o +unit: CMakeFiles/unit.dir/build.make +unit: libFastPFOR.a +unit: CMakeFiles/unit.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable unit" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/unit.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/unit.dir/build: unit +.PHONY : CMakeFiles/unit.dir/build + +CMakeFiles/unit.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/unit.dir/cmake_clean.cmake +.PHONY : CMakeFiles/unit.dir/clean + +CMakeFiles/unit.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/unit.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/unit.dir/depend + diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/cmake_clean.cmake b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/cmake_clean.cmake new file mode 100644 index 0000000..59ee0a2 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/unit.dir/src/unit.cpp.o" + "CMakeFiles/unit.dir/src/unit.cpp.o.d" + "unit" + "unit.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/unit.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.make b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.make new file mode 100644 index 0000000..4eae069 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for unit. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.ts b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.ts new file mode 100644 index 0000000..1c41603 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for unit. diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/depend.make b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/depend.make new file mode 100644 index 0000000..10f3d38 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for unit. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/flags.make b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/link.txt b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/link.txt new file mode 100644 index 0000000..0ff2223 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/unit.dir/src/unit.cpp.o -o unit libFastPFOR.a diff --git a/cmake-build-debug-event-trace/CMakeFiles/unit.dir/progress.make b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/progress.make new file mode 100644 index 0000000..554ea33 --- /dev/null +++ b/cmake-build-debug-event-trace/CMakeFiles/unit.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 60 +CMAKE_PROGRESS_2 = 61 + diff --git a/cmake-build-debug-event-trace/CTestTestfile.cmake b/cmake-build-debug-event-trace/CTestTestfile.cmake new file mode 100644 index 0000000..1cbdc8d --- /dev/null +++ b/cmake-build-debug-event-trace/CTestTestfile.cmake @@ -0,0 +1,10 @@ +# CMake generated Testfile for +# Source directory: /home/kosakseb/Developer/FastPFor +# Build directory: /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test(unit "unit") +set_tests_properties(unit PROPERTIES _BACKTRACE_TRIPLES "/home/kosakseb/Developer/FastPFor/CMakeLists.txt;185;add_test;/home/kosakseb/Developer/FastPFor/CMakeLists.txt;0;") +add_test(FastPFOR_unittest "FastPFOR_unittest") +set_tests_properties(FastPFOR_unittest PROPERTIES _BACKTRACE_TRIPLES "/home/kosakseb/Developer/FastPFor/CMakeLists.txt;186;add_test;/home/kosakseb/Developer/FastPFor/CMakeLists.txt;0;") diff --git a/cmake-build-debug-event-trace/FastPFORConfig.cmake b/cmake-build-debug-event-trace/FastPFORConfig.cmake new file mode 100644 index 0000000..05a2aae --- /dev/null +++ b/cmake-build-debug-event-trace/FastPFORConfig.cmake @@ -0,0 +1,29 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was FastPFORConfig.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### + +if(NOT TARGET FastPFOR) + include("${CMAKE_CURRENT_LIST_DIR}/FastPFORTargets.cmake") +endif() diff --git a/cmake-build-debug-event-trace/FastPFORConfigVersion.cmake b/cmake-build-debug-event-trace/FastPFORConfigVersion.cmake new file mode 100644 index 0000000..03c436e --- /dev/null +++ b/cmake-build-debug-event-trace/FastPFORConfigVersion.cmake @@ -0,0 +1,65 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "0.1.9") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("0.1.9" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) + string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") + endif() + else() + set(CVF_VERSION_MAJOR "0.1.9") + endif() + + if(PACKAGE_FIND_VERSION_RANGE) + # both endpoints of the range must have the expected major version + math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") + if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + else() + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/cmake-build-debug-event-trace/Makefile b/cmake-build-debug-event-trace/Makefile new file mode 100644 index 0000000..15f52e0 --- /dev/null +++ b/cmake-build-debug-event-trace/Makefile @@ -0,0 +1,1038 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /snap/clion/261/bin/cmake/linux/x64/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named FastPFOR + +# Build rule for target. +FastPFOR: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FastPFOR +.PHONY : FastPFOR + +# fast build rule for target. +FastPFOR/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/build +.PHONY : FastPFOR/fast + +#============================================================================= +# Target rules for targets named gapstats + +# Build rule for target. +gapstats: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gapstats +.PHONY : gapstats + +# fast build rule for target. +gapstats/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/build +.PHONY : gapstats/fast + +#============================================================================= +# Target rules for targets named partitionbylength + +# Build rule for target. +partitionbylength: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 partitionbylength +.PHONY : partitionbylength + +# fast build rule for target. +partitionbylength/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/build +.PHONY : partitionbylength/fast + +#============================================================================= +# Target rules for targets named csv2maropu + +# Build rule for target. +csv2maropu: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 csv2maropu +.PHONY : csv2maropu + +# fast build rule for target. +csv2maropu/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/build +.PHONY : csv2maropu/fast + +#============================================================================= +# Target rules for targets named entropy + +# Build rule for target. +entropy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 entropy +.PHONY : entropy + +# fast build rule for target. +entropy/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/build +.PHONY : entropy/fast + +#============================================================================= +# Target rules for targets named benchbitpacking + +# Build rule for target. +benchbitpacking: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 benchbitpacking +.PHONY : benchbitpacking + +# fast build rule for target. +benchbitpacking/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/build +.PHONY : benchbitpacking/fast + +#============================================================================= +# Target rules for targets named codecssnappy + +# Build rule for target. +codecssnappy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 codecssnappy +.PHONY : codecssnappy + +# fast build rule for target. +codecssnappy/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/build +.PHONY : codecssnappy/fast + +#============================================================================= +# Target rules for targets named inmemorybenchmarksnappy + +# Build rule for target. +inmemorybenchmarksnappy: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 inmemorybenchmarksnappy +.PHONY : inmemorybenchmarksnappy + +# fast build rule for target. +inmemorybenchmarksnappy/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/build +.PHONY : inmemorybenchmarksnappy/fast + +#============================================================================= +# Target rules for targets named googletest + +# Build rule for target. +googletest: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 googletest +.PHONY : googletest + +# fast build rule for target. +googletest/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/build +.PHONY : googletest/fast + +#============================================================================= +# Target rules for targets named gtest_src + +# Build rule for target. +gtest_src: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_src +.PHONY : gtest_src + +# fast build rule for target. +gtest_src/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_src.dir/build.make CMakeFiles/gtest_src.dir/build +.PHONY : gtest_src/fast + +#============================================================================= +# Target rules for targets named gmock_src + +# Build rule for target. +gmock_src: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gmock_src +.PHONY : gmock_src + +# fast build rule for target. +gmock_src/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gmock_src.dir/build.make CMakeFiles/gmock_src.dir/build +.PHONY : gmock_src/fast + +#============================================================================= +# Target rules for targets named codecs + +# Build rule for target. +codecs: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 codecs +.PHONY : codecs + +# fast build rule for target. +codecs/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/build +.PHONY : codecs/fast + +#============================================================================= +# Target rules for targets named example + +# Build rule for target. +example: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 example +.PHONY : example + +# fast build rule for target. +example/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/build +.PHONY : example/fast + +#============================================================================= +# Target rules for targets named inmemorybenchmark + +# Build rule for target. +inmemorybenchmark: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 inmemorybenchmark +.PHONY : inmemorybenchmark + +# fast build rule for target. +inmemorybenchmark/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/build +.PHONY : inmemorybenchmark/fast + +#============================================================================= +# Target rules for targets named unit + +# Build rule for target. +unit: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 unit +.PHONY : unit + +# fast build rule for target. +unit/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/build +.PHONY : unit/fast + +#============================================================================= +# Target rules for targets named check + +# Build rule for target. +check: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 check +.PHONY : check + +# fast build rule for target. +check/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/build +.PHONY : check/fast + +#============================================================================= +# Target rules for targets named FastPFOR_unittest + +# Build rule for target. +FastPFOR_unittest: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 FastPFOR_unittest +.PHONY : FastPFOR_unittest + +# fast build rule for target. +FastPFOR_unittest/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/build +.PHONY : FastPFOR_unittest/fast + +example.o: example.cpp.o +.PHONY : example.o + +# target to build an object file +example.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.o +.PHONY : example.cpp.o + +example.i: example.cpp.i +.PHONY : example.i + +# target to preprocess a source file +example.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.i +.PHONY : example.cpp.i + +example.s: example.cpp.s +.PHONY : example.s + +# target to generate assembly for a file +example.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.s +.PHONY : example.cpp.s + +src/benchbitpacking.o: src/benchbitpacking.cpp.o +.PHONY : src/benchbitpacking.o + +# target to build an object file +src/benchbitpacking.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o +.PHONY : src/benchbitpacking.cpp.o + +src/benchbitpacking.i: src/benchbitpacking.cpp.i +.PHONY : src/benchbitpacking.i + +# target to preprocess a source file +src/benchbitpacking.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.i +.PHONY : src/benchbitpacking.cpp.i + +src/benchbitpacking.s: src/benchbitpacking.cpp.s +.PHONY : src/benchbitpacking.s + +# target to generate assembly for a file +src/benchbitpacking.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.s +.PHONY : src/benchbitpacking.cpp.s + +src/bitpacking.o: src/bitpacking.cpp.o +.PHONY : src/bitpacking.o + +# target to build an object file +src/bitpacking.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o +.PHONY : src/bitpacking.cpp.o + +src/bitpacking.i: src/bitpacking.cpp.i +.PHONY : src/bitpacking.i + +# target to preprocess a source file +src/bitpacking.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.i +.PHONY : src/bitpacking.cpp.i + +src/bitpacking.s: src/bitpacking.cpp.s +.PHONY : src/bitpacking.s + +# target to generate assembly for a file +src/bitpacking.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.s +.PHONY : src/bitpacking.cpp.s + +src/bitpackingaligned.o: src/bitpackingaligned.cpp.o +.PHONY : src/bitpackingaligned.o + +# target to build an object file +src/bitpackingaligned.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o +.PHONY : src/bitpackingaligned.cpp.o + +src/bitpackingaligned.i: src/bitpackingaligned.cpp.i +.PHONY : src/bitpackingaligned.i + +# target to preprocess a source file +src/bitpackingaligned.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.i +.PHONY : src/bitpackingaligned.cpp.i + +src/bitpackingaligned.s: src/bitpackingaligned.cpp.s +.PHONY : src/bitpackingaligned.s + +# target to generate assembly for a file +src/bitpackingaligned.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.s +.PHONY : src/bitpackingaligned.cpp.s + +src/bitpackingunaligned.o: src/bitpackingunaligned.cpp.o +.PHONY : src/bitpackingunaligned.o + +# target to build an object file +src/bitpackingunaligned.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o +.PHONY : src/bitpackingunaligned.cpp.o + +src/bitpackingunaligned.i: src/bitpackingunaligned.cpp.i +.PHONY : src/bitpackingunaligned.i + +# target to preprocess a source file +src/bitpackingunaligned.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.i +.PHONY : src/bitpackingunaligned.cpp.i + +src/bitpackingunaligned.s: src/bitpackingunaligned.cpp.s +.PHONY : src/bitpackingunaligned.s + +# target to generate assembly for a file +src/bitpackingunaligned.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.s +.PHONY : src/bitpackingunaligned.cpp.s + +src/codecfactory.o: src/codecfactory.cpp.o +.PHONY : src/codecfactory.o + +# target to build an object file +src/codecfactory.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o +.PHONY : src/codecfactory.cpp.o + +src/codecfactory.i: src/codecfactory.cpp.i +.PHONY : src/codecfactory.i + +# target to preprocess a source file +src/codecfactory.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.i +.PHONY : src/codecfactory.cpp.i + +src/codecfactory.s: src/codecfactory.cpp.s +.PHONY : src/codecfactory.s + +# target to generate assembly for a file +src/codecfactory.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.s +.PHONY : src/codecfactory.cpp.s + +src/codecs.o: src/codecs.cpp.o +.PHONY : src/codecs.o + +# target to build an object file +src/codecs.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/src/codecs.cpp.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/src/codecs.cpp.o +.PHONY : src/codecs.cpp.o + +src/codecs.i: src/codecs.cpp.i +.PHONY : src/codecs.i + +# target to preprocess a source file +src/codecs.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/src/codecs.cpp.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/src/codecs.cpp.i +.PHONY : src/codecs.cpp.i + +src/codecs.s: src/codecs.cpp.s +.PHONY : src/codecs.s + +# target to generate assembly for a file +src/codecs.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/src/codecs.cpp.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/src/codecs.cpp.s +.PHONY : src/codecs.cpp.s + +src/csv2maropu.o: src/csv2maropu.cpp.o +.PHONY : src/csv2maropu.o + +# target to build an object file +src/csv2maropu.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o +.PHONY : src/csv2maropu.cpp.o + +src/csv2maropu.i: src/csv2maropu.cpp.i +.PHONY : src/csv2maropu.i + +# target to preprocess a source file +src/csv2maropu.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.i +.PHONY : src/csv2maropu.cpp.i + +src/csv2maropu.s: src/csv2maropu.cpp.s +.PHONY : src/csv2maropu.s + +# target to generate assembly for a file +src/csv2maropu.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.s +.PHONY : src/csv2maropu.cpp.s + +src/entropy.o: src/entropy.cpp.o +.PHONY : src/entropy.o + +# target to build an object file +src/entropy.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/src/entropy.cpp.o +.PHONY : src/entropy.cpp.o + +src/entropy.i: src/entropy.cpp.i +.PHONY : src/entropy.i + +# target to preprocess a source file +src/entropy.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/src/entropy.cpp.i +.PHONY : src/entropy.cpp.i + +src/entropy.s: src/entropy.cpp.s +.PHONY : src/entropy.s + +# target to generate assembly for a file +src/entropy.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/src/entropy.cpp.s +.PHONY : src/entropy.cpp.s + +src/gapstats.o: src/gapstats.cpp.o +.PHONY : src/gapstats.o + +# target to build an object file +src/gapstats.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/src/gapstats.cpp.o +.PHONY : src/gapstats.cpp.o + +src/gapstats.i: src/gapstats.cpp.i +.PHONY : src/gapstats.i + +# target to preprocess a source file +src/gapstats.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/src/gapstats.cpp.i +.PHONY : src/gapstats.cpp.i + +src/gapstats.s: src/gapstats.cpp.s +.PHONY : src/gapstats.s + +# target to generate assembly for a file +src/gapstats.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/src/gapstats.cpp.s +.PHONY : src/gapstats.cpp.s + +src/horizontalbitpacking.o: src/horizontalbitpacking.cpp.o +.PHONY : src/horizontalbitpacking.o + +# target to build an object file +src/horizontalbitpacking.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o +.PHONY : src/horizontalbitpacking.cpp.o + +src/horizontalbitpacking.i: src/horizontalbitpacking.cpp.i +.PHONY : src/horizontalbitpacking.i + +# target to preprocess a source file +src/horizontalbitpacking.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.i +.PHONY : src/horizontalbitpacking.cpp.i + +src/horizontalbitpacking.s: src/horizontalbitpacking.cpp.s +.PHONY : src/horizontalbitpacking.s + +# target to generate assembly for a file +src/horizontalbitpacking.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.s +.PHONY : src/horizontalbitpacking.cpp.s + +src/inmemorybenchmark.o: src/inmemorybenchmark.cpp.o +.PHONY : src/inmemorybenchmark.o + +# target to build an object file +src/inmemorybenchmark.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o +.PHONY : src/inmemorybenchmark.cpp.o + +src/inmemorybenchmark.i: src/inmemorybenchmark.cpp.i +.PHONY : src/inmemorybenchmark.i + +# target to preprocess a source file +src/inmemorybenchmark.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.i +.PHONY : src/inmemorybenchmark.cpp.i + +src/inmemorybenchmark.s: src/inmemorybenchmark.cpp.s +.PHONY : src/inmemorybenchmark.s + +# target to generate assembly for a file +src/inmemorybenchmark.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.s +.PHONY : src/inmemorybenchmark.cpp.s + +src/partitionbylength.o: src/partitionbylength.cpp.o +.PHONY : src/partitionbylength.o + +# target to build an object file +src/partitionbylength.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o +.PHONY : src/partitionbylength.cpp.o + +src/partitionbylength.i: src/partitionbylength.cpp.i +.PHONY : src/partitionbylength.i + +# target to preprocess a source file +src/partitionbylength.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.i +.PHONY : src/partitionbylength.cpp.i + +src/partitionbylength.s: src/partitionbylength.cpp.s +.PHONY : src/partitionbylength.s + +# target to generate assembly for a file +src/partitionbylength.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.s +.PHONY : src/partitionbylength.cpp.s + +src/simdbitpacking.o: src/simdbitpacking.cpp.o +.PHONY : src/simdbitpacking.o + +# target to build an object file +src/simdbitpacking.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o +.PHONY : src/simdbitpacking.cpp.o + +src/simdbitpacking.i: src/simdbitpacking.cpp.i +.PHONY : src/simdbitpacking.i + +# target to preprocess a source file +src/simdbitpacking.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.i +.PHONY : src/simdbitpacking.cpp.i + +src/simdbitpacking.s: src/simdbitpacking.cpp.s +.PHONY : src/simdbitpacking.s + +# target to generate assembly for a file +src/simdbitpacking.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.s +.PHONY : src/simdbitpacking.cpp.s + +src/simdunalignedbitpacking.o: src/simdunalignedbitpacking.cpp.o +.PHONY : src/simdunalignedbitpacking.o + +# target to build an object file +src/simdunalignedbitpacking.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o +.PHONY : src/simdunalignedbitpacking.cpp.o + +src/simdunalignedbitpacking.i: src/simdunalignedbitpacking.cpp.i +.PHONY : src/simdunalignedbitpacking.i + +# target to preprocess a source file +src/simdunalignedbitpacking.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.i +.PHONY : src/simdunalignedbitpacking.cpp.i + +src/simdunalignedbitpacking.s: src/simdunalignedbitpacking.cpp.s +.PHONY : src/simdunalignedbitpacking.s + +# target to generate assembly for a file +src/simdunalignedbitpacking.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.s +.PHONY : src/simdunalignedbitpacking.cpp.s + +src/streamvbyte.o: src/streamvbyte.c.o +.PHONY : src/streamvbyte.o + +# target to build an object file +src/streamvbyte.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o +.PHONY : src/streamvbyte.c.o + +src/streamvbyte.i: src/streamvbyte.c.i +.PHONY : src/streamvbyte.i + +# target to preprocess a source file +src/streamvbyte.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/streamvbyte.c.i +.PHONY : src/streamvbyte.c.i + +src/streamvbyte.s: src/streamvbyte.c.s +.PHONY : src/streamvbyte.s + +# target to generate assembly for a file +src/streamvbyte.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/streamvbyte.c.s +.PHONY : src/streamvbyte.c.s + +src/unit.o: src/unit.cpp.o +.PHONY : src/unit.o + +# target to build an object file +src/unit.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/src/unit.cpp.o +.PHONY : src/unit.cpp.o + +src/unit.i: src/unit.cpp.i +.PHONY : src/unit.i + +# target to preprocess a source file +src/unit.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/src/unit.cpp.i +.PHONY : src/unit.cpp.i + +src/unit.s: src/unit.cpp.s +.PHONY : src/unit.s + +# target to generate assembly for a file +src/unit.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/src/unit.cpp.s +.PHONY : src/unit.cpp.s + +src/varintdecode.o: src/varintdecode.c.o +.PHONY : src/varintdecode.o + +# target to build an object file +src/varintdecode.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/varintdecode.c.o +.PHONY : src/varintdecode.c.o + +src/varintdecode.i: src/varintdecode.c.i +.PHONY : src/varintdecode.i + +# target to preprocess a source file +src/varintdecode.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/varintdecode.c.i +.PHONY : src/varintdecode.c.i + +src/varintdecode.s: src/varintdecode.c.s +.PHONY : src/varintdecode.s + +# target to generate assembly for a file +src/varintdecode.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/src/varintdecode.c.s +.PHONY : src/varintdecode.c.s + +unittest/test_composite.o: unittest/test_composite.cpp.o +.PHONY : unittest/test_composite.o + +# target to build an object file +unittest/test_composite.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o +.PHONY : unittest/test_composite.cpp.o + +unittest/test_composite.i: unittest/test_composite.cpp.i +.PHONY : unittest/test_composite.i + +# target to preprocess a source file +unittest/test_composite.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.i +.PHONY : unittest/test_composite.cpp.i + +unittest/test_composite.s: unittest/test_composite.cpp.s +.PHONY : unittest/test_composite.s + +# target to generate assembly for a file +unittest/test_composite.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.s +.PHONY : unittest/test_composite.cpp.s + +unittest/test_driver.o: unittest/test_driver.cpp.o +.PHONY : unittest/test_driver.o + +# target to build an object file +unittest/test_driver.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o +.PHONY : unittest/test_driver.cpp.o + +unittest/test_driver.i: unittest/test_driver.cpp.i +.PHONY : unittest/test_driver.i + +# target to preprocess a source file +unittest/test_driver.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.i +.PHONY : unittest/test_driver.cpp.i + +unittest/test_driver.s: unittest/test_driver.cpp.s +.PHONY : unittest/test_driver.s + +# target to generate assembly for a file +unittest/test_driver.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.s +.PHONY : unittest/test_driver.cpp.s + +unittest/test_fastpfor.o: unittest/test_fastpfor.cpp.o +.PHONY : unittest/test_fastpfor.o + +# target to build an object file +unittest/test_fastpfor.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o +.PHONY : unittest/test_fastpfor.cpp.o + +unittest/test_fastpfor.i: unittest/test_fastpfor.cpp.i +.PHONY : unittest/test_fastpfor.i + +# target to preprocess a source file +unittest/test_fastpfor.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.i +.PHONY : unittest/test_fastpfor.cpp.i + +unittest/test_fastpfor.s: unittest/test_fastpfor.cpp.s +.PHONY : unittest/test_fastpfor.s + +# target to generate assembly for a file +unittest/test_fastpfor.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.s +.PHONY : unittest/test_fastpfor.cpp.s + +unittest/test_variablebyte.o: unittest/test_variablebyte.cpp.o +.PHONY : unittest/test_variablebyte.o + +# target to build an object file +unittest/test_variablebyte.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o +.PHONY : unittest/test_variablebyte.cpp.o + +unittest/test_variablebyte.i: unittest/test_variablebyte.cpp.i +.PHONY : unittest/test_variablebyte.i + +# target to preprocess a source file +unittest/test_variablebyte.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.i +.PHONY : unittest/test_variablebyte.cpp.i + +unittest/test_variablebyte.s: unittest/test_variablebyte.cpp.s +.PHONY : unittest/test_variablebyte.s + +# target to generate assembly for a file +unittest/test_variablebyte.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.s +.PHONY : unittest/test_variablebyte.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... check" + @echo "... gmock_src" + @echo "... googletest" + @echo "... gtest_src" + @echo "... FastPFOR" + @echo "... FastPFOR_unittest" + @echo "... benchbitpacking" + @echo "... codecs" + @echo "... codecssnappy" + @echo "... csv2maropu" + @echo "... entropy" + @echo "... example" + @echo "... gapstats" + @echo "... inmemorybenchmark" + @echo "... inmemorybenchmarksnappy" + @echo "... partitionbylength" + @echo "... unit" + @echo "... example.o" + @echo "... example.i" + @echo "... example.s" + @echo "... src/benchbitpacking.o" + @echo "... src/benchbitpacking.i" + @echo "... src/benchbitpacking.s" + @echo "... src/bitpacking.o" + @echo "... src/bitpacking.i" + @echo "... src/bitpacking.s" + @echo "... src/bitpackingaligned.o" + @echo "... src/bitpackingaligned.i" + @echo "... src/bitpackingaligned.s" + @echo "... src/bitpackingunaligned.o" + @echo "... src/bitpackingunaligned.i" + @echo "... src/bitpackingunaligned.s" + @echo "... src/codecfactory.o" + @echo "... src/codecfactory.i" + @echo "... src/codecfactory.s" + @echo "... src/codecs.o" + @echo "... src/codecs.i" + @echo "... src/codecs.s" + @echo "... src/csv2maropu.o" + @echo "... src/csv2maropu.i" + @echo "... src/csv2maropu.s" + @echo "... src/entropy.o" + @echo "... src/entropy.i" + @echo "... src/entropy.s" + @echo "... src/gapstats.o" + @echo "... src/gapstats.i" + @echo "... src/gapstats.s" + @echo "... src/horizontalbitpacking.o" + @echo "... src/horizontalbitpacking.i" + @echo "... src/horizontalbitpacking.s" + @echo "... src/inmemorybenchmark.o" + @echo "... src/inmemorybenchmark.i" + @echo "... src/inmemorybenchmark.s" + @echo "... src/partitionbylength.o" + @echo "... src/partitionbylength.i" + @echo "... src/partitionbylength.s" + @echo "... src/simdbitpacking.o" + @echo "... src/simdbitpacking.i" + @echo "... src/simdbitpacking.s" + @echo "... src/simdunalignedbitpacking.o" + @echo "... src/simdunalignedbitpacking.i" + @echo "... src/simdunalignedbitpacking.s" + @echo "... src/streamvbyte.o" + @echo "... src/streamvbyte.i" + @echo "... src/streamvbyte.s" + @echo "... src/unit.o" + @echo "... src/unit.i" + @echo "... src/unit.s" + @echo "... src/varintdecode.o" + @echo "... src/varintdecode.i" + @echo "... src/varintdecode.s" + @echo "... unittest/test_composite.o" + @echo "... unittest/test_composite.i" + @echo "... unittest/test_composite.s" + @echo "... unittest/test_driver.o" + @echo "... unittest/test_driver.i" + @echo "... unittest/test_driver.s" + @echo "... unittest/test_fastpfor.o" + @echo "... unittest/test_fastpfor.i" + @echo "... unittest/test_fastpfor.s" + @echo "... unittest/test_variablebyte.o" + @echo "... unittest/test_variablebyte.i" + @echo "... unittest/test_variablebyte.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/cmake-build-debug-event-trace/cmake_install.cmake b/cmake-build-debug-event-trace/cmake_install.cmake new file mode 100644 index 0000000..fdac21b --- /dev/null +++ b/cmake-build-debug-event-trace/cmake_install.cmake @@ -0,0 +1,104 @@ +# Install script for directory: /home/kosakseb/Developer/FastPFor + +# 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 "Debug") + 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 "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/libFastPFOR.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FastPFOR/FastPFORTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FastPFOR/FastPFORTargets.cmake" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FastPFOR/FastPFORTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FastPFOR/FastPFORTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/FastPFOR" TYPE FILE FILES "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/FastPFOR" TYPE FILE FILES "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/fastpfor" TYPE DIRECTORY FILES "/home/kosakseb/Developer/FastPFor/headers/") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/doc/FastPFOR" TYPE FILE FILES + "/home/kosakseb/Developer/FastPFor/AUTHORS" + "/home/kosakseb/Developer/FastPFor/LICENSE" + "/home/kosakseb/Developer/FastPFor/README.md" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/FastPFOR" TYPE FILE FILES + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/FastPFORConfig.cmake" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/FastPFORConfigVersion.cmake" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/fastpfor.pc") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/cmake-build-debug-event-trace/fastpfor.pc b/cmake-build-debug-event-trace/fastpfor.pc new file mode 100644 index 0000000..0465b0a --- /dev/null +++ b/cmake-build-debug-event-trace/fastpfor.pc @@ -0,0 +1,9 @@ +prefix=/usr/local +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: FastPFOR +Description: The FastPFOR C++ library: Fast integer compression +Version: 0.1.9 +Libs: -L${libdir} -lFastPFOR +Cflags: -I${includedir} diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt b/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt new file mode 100644 index 0000000..f58e64d --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt @@ -0,0 +1,9 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=custom +command= +source_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock +work_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src + diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt b/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt b/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt new file mode 100644 index 0000000..0fe5146 --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)= +command (disconnected)= +work_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt b/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt new file mode 100644 index 0000000..e00831d --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=/snap/clion/261/bin/cmake/linux/x64/bin/cmake;-P;/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake +source_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest +work_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src +repository=https://github.com/google/googletest.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097= + diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch-info.txt b/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update-info.txt b/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update-info.txt new file mode 100644 index 0000000..ef14ad2 --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)= +command (disconnected)= +work_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt b/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt new file mode 100644 index 0000000..fb05b03 --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt @@ -0,0 +1,9 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=custom +command= +source_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest +work_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src + diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt b/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt new file mode 100644 index 0000000..53e1e1e --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt b/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt new file mode 100644 index 0000000..646b66f --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)= +command (disconnected)= +work_dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest diff --git a/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-cfgcmd.txt b/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-cfgcmd.txt new file mode 100644 index 0000000..aaba0ed --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-cfgcmd.txt @@ -0,0 +1 @@ +cmd='/snap/clion/261/bin/cmake/linux/x64/bin/cmake;-DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gmock;-DCMAKE_C_COMPILER=/usr/bin/cc;-DCMAKE_CXX_COMPILER=/usr/bin/c++;-DCMAKE_CXX_FLAGS=;-GUnix Makefiles;-S;;-B;' diff --git a/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake b/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake new file mode 100644 index 0000000..7b58fdc --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/tmp/gmock_src-mkdirs.cmake @@ -0,0 +1,22 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +file(MAKE_DIRECTORY + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googlemock" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-build" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gmock" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gmock_src-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-cfgcmd.txt b/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-cfgcmd.txt new file mode 100644 index 0000000..6a6ed5f --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake b/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake new file mode 100644 index 0000000..41e3ade --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-gitclone.cmake @@ -0,0 +1,73 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitclone-lastrun.txt" AND EXISTS "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt" AND + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitclone-lastrun.txt" IS_NEWER_THAN "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt") + message(STATUS + "Avoiding repeated git clone, stamp file is up to date: " + "'/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitclone-lastrun.txt'" + ) + return() +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "/usr/bin/git" + clone --no-checkout --config "advice.detachedHead=false" "https://github.com/google/googletest.git" "googletest" + WORKING_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src" + RESULT_VARIABLE error_code + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(STATUS "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/google/googletest.git'") +endif() + +execute_process( + COMMAND "/usr/bin/git" + checkout "release-1.8.0" -- + WORKING_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'release-1.8.0'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "/usr/bin/git" + submodule update --recursive --init + WORKING_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest" + RESULT_VARIABLE error_code + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt" "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitclone-lastrun.txt" + RESULT_VARIABLE error_code +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/googletest-gitclone-lastrun.txt'") +endif() diff --git a/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake b/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake new file mode 100644 index 0000000..e1b2f64 --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/tmp/googletest-mkdirs.cmake @@ -0,0 +1,22 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +file(MAKE_DIRECTORY + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-build" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-cfgcmd.txt b/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-cfgcmd.txt new file mode 100644 index 0000000..64a3800 --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-cfgcmd.txt @@ -0,0 +1 @@ +cmd='/snap/clion/261/bin/cmake/linux/x64/bin/cmake;-DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest;-DCMAKE_C_COMPILER=/usr/bin/cc;-DCMAKE_CXX_COMPILER=/usr/bin/c++;-DCMAKE_CXX_FLAGS=;-GUnix Makefiles;-S;;-B;' diff --git a/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake b/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake new file mode 100644 index 0000000..2ac84eb --- /dev/null +++ b/cmake-build-debug-event-trace/vendor/gtm/tmp/gtest_src-mkdirs.cmake @@ -0,0 +1,22 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +file(MAKE_DIRECTORY + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/googletest/googletest" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-build" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/gtest" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/tmp" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src" + "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "/home/kosakseb/Developer/FastPFor/cmake-build-debug-event-trace/vendor/gtm/src/gtest_src-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/cmake-build-debug/.cmake/api/v1/query/cache-v2 b/cmake-build-debug/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 b/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 b/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 b/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-cf2770cfec642e2d8f7f.json b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-cf2770cfec642e2d8f7f.json new file mode 100644 index 0000000..7bef108 --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-cf2770cfec642e2d8f7f.json @@ -0,0 +1,1619 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/addr2line" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ar" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "27" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "8" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COLOR_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "UNINITIALIZED", + "value" : "" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/bin/cmake" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/bin/cpack" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/bin/ctest" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "/usr/bin/c++" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ar-11" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ranlib-11" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C compiler" + } + ], + "type" : "STRING", + "value" : "/usr/bin/cc" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ar-11" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gcc-ranlib-11" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_DLLTOOL-NOTFOUND" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Unix Makefiles" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "/home/kosakseb/Developer/FastPFor" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "/usr/local" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SO_NO_EXE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install .so files without execute permission." + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ld" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/gmake" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/nm" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/objcopy" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/objdump" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "FastPFOR" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/ranlib" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/readelf" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/strip" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "name" : "CMAKE_UNAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "uname command" + } + ], + "type" : "INTERNAL", + "value" : "/usr/bin/uname" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Git", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Git" + } + ], + "type" : "INTERNAL", + "value" : "[/usr/bin/git][v2.34.1()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FastPFOR_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug" + }, + { + "name" : "FastPFOR_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "FastPFOR_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "/home/kosakseb/Developer/FastPFor" + }, + { + "name" : "GIT_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Git command line client" + } + ], + "type" : "FILEPATH", + "value" : "/usr/bin/git" + }, + { + "name" : "SUPPORT_AVX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_AVX" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "SUPPORT_AVX2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_AVX2" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "SUPPORT_NEON", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_NEON" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "SUPPORT_SSE42", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test SUPPORT_SSE42" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "/usr/local" + }, + { + "name" : "snappy_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "snappy_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "/usr/lib/x86_64-linux-gnu/libsnappy.so" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-4bcd9d05e54898d24725.json b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-4bcd9d05e54898d24725.json new file mode 100644 index 0000000..8597343 --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-4bcd9d05e54898d24725.json @@ -0,0 +1,389 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "path" : "cmake_modules/AppendCompilerFlags.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "path" : "cmake_modules/DetectCPUFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "path" : "cmake_modules/environment.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "path" : "cmake_modules/Findsnappy.cmake" + }, + { + "path" : "cmake_modules/googletest.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/vendor/gtm/tmp/googletest-mkdirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/gitclone.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/vendor/gtm/tmp/gtest_src-mkdirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/vendor/gtm/tmp/gmock_src-mkdirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "path" : "FastPFORConfig.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + }, + { + "path" : "fastpfor.pc.in" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug", + "source" : "/home/kosakseb/Developer/FastPFor" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json new file mode 100644 index 0000000..699ac4b --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-c1199874e7df176eab26.json @@ -0,0 +1,111 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/local/include", + "/usr/include/x86_64-linux-gnu", + "/usr/include" + ], + "linkDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11", + "/usr/lib/x86_64-linux-gnu", + "/usr/lib", + "/lib/x86_64-linux-gnu", + "/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "gcc", + "gcc_s", + "c", + "gcc", + "gcc_s" + ] + }, + "path" : "/usr/bin/cc", + "version" : "11.4.0" + }, + "language" : "C", + "sourceFileExtensions" : + [ + "c", + "m" + ] + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "/usr/include/c++/11", + "/usr/include/x86_64-linux-gnu/c++/11", + "/usr/include/c++/11/backward", + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/local/include", + "/usr/include/x86_64-linux-gnu", + "/usr/include" + ], + "linkDirectories" : + [ + "/usr/lib/gcc/x86_64-linux-gnu/11", + "/usr/lib/x86_64-linux-gnu", + "/usr/lib", + "/lib/x86_64-linux-gnu", + "/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "stdc++", + "m", + "gcc_s", + "gcc", + "c", + "gcc_s", + "gcc" + ] + }, + "path" : "/usr/bin/c++", + "version" : "11.4.0" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "m", + "mm", + "mpp", + "CPP", + "ixx", + "cppm", + "ccm", + "cxxm", + "c++m" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-debug/CMakeCache.txt b/cmake-build-debug/CMakeCache.txt new file mode 100644 index 0000000..30600fe --- /dev/null +++ b/cmake-build-debug/CMakeCache.txt @@ -0,0 +1,488 @@ +# This is the CMakeCache file. +# For build in directory: /home/kosakseb/Developer/FastPFor/cmake-build-debug +# It was generated by CMake: /snap/clion/261/bin/cmake/linux/x64/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:STRING=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=FastPFOR + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +FastPFOR_BINARY_DIR:STATIC=/home/kosakseb/Developer/FastPFor/cmake-build-debug + +//Value Computed by CMake +FastPFOR_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +FastPFOR_SOURCE_DIR:STATIC=/home/kosakseb/Developer/FastPFor + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//Path to a file. +snappy_INCLUDE_DIRS:PATH=/usr/include + +//Path to a library. +snappy_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libsnappy.so + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/kosakseb/Developer/FastPFor/cmake-build-debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=27 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=8 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/kosakseb/Developer/FastPFor +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.34.1()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Test SUPPORT_AVX +SUPPORT_AVX:INTERNAL=1 +//Test SUPPORT_AVX2 +SUPPORT_AVX2:INTERNAL=1 +//Test SUPPORT_NEON +SUPPORT_NEON:INTERNAL= +//Test SUPPORT_SSE42 +SUPPORT_SSE42:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local +//ADVANCED property for variable: snappy_INCLUDE_DIRS +snappy_INCLUDE_DIRS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: snappy_LIBRARIES +snappy_LIBRARIES-ADVANCED:INTERNAL=1 + diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake new file mode 100644 index 0000000..6ab5144 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..c3dc3f0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..a4691337f66c7201fb0c354daa924d93cb69ee7e GIT binary patch literal 15968 zcmeHOYit}>6~4Q9x#ZzZnvjr`W}z)4EuPqk6GD*5+Us>@E5`|m1A>rFX1!y3#6HaK zY-<-Nf$*pmQUz2Mia-hl0TMz=B}9Hyg{^{$sGuT0ph2ioC{zSUTNes4kY+h&?)f(3 zVcnv_49olcEXD%isFPjA6$0GYFL)+8o&_%E=?E#Tb&I$kT zlzfJY#skdXWXCB14(!OiXH-crbS6x>p6vSV`Rj*cDOMzw5g^_%8?CF!5X)SjV3io(>H zlQgRMF)bq=>sE`N?Z5Nnmph)i^ho;T?Vq^giQhfF{kdC*|G+lfZ}wpuE*uX-gk`RC zn{1==@o}oj*d{#hJX!RKc|JJ)susF5amg0EH4k5!hv$C1xkVghStFCSHR_h^f_t|^ zA|-gls(NG`QY>?Rcc?vs*}k;3)!1rmZ`QYUD=Ry^*UCE;XUwg7PGxv+x==1T z!*;H~;l_&Pl7zFgX-h-SV9fv1XDUWA_ZQ=(w%)ytv(Dp>x$l1N0ZMb6zVURyb&TsL zxl;49a(#opC;{72S`Qxbh25IxbI3VExftMs=lxQE#~5RunE=n@2W2+E%U2>)5k?t^ zG7x1T%0QHXC<9Rjq73{WXW-B6H~!r`e!0y&vFMjulrle6_u`G8na6+FcFxaAWBWry z|EY1y*9h7-Dz+!-QD5p;zTEX(cKZAs=JYe>@!!tuAI@~uyMAn*?0JF$G}ctf@}*Iu zed8znc*H+QjCpd==NaBH>#d=t-@|ok`ntx&_KnBb@SGsoyT1MQ9K+_T=JbsD*z>#1 z$7UCpvB%BxSH0B~;1&tc*0?y@zLEL`f9~(G9#*T`ZHLU`J#ns@)6aU#%o9C}Nw~DR z(P&)C)5qhBUZ%V5*b(xbB)3FPqb~i$BU-;clMDTsFUGo?P?u6_lOt zEljk3zaGn65q32n=C4?Dc455zY*_Q_R+=?`3`M$fY)O z5M?0BK$L+f15pN|3`7}-GVt$bfZu<;QppYt?AukPH+JPwD?i~?4tMT660{%6?i9i@&bfza z9RfSVHY|82zkB0%S*KoTG>#IUCcKyM453N*;7p@&nve^>Q{@u7`+$l~CSn_wEonPN zFVvXlwF5`V=Phi|zr=qdcQaMH>3Z}_O_HLXfr5dG^kt?m_ED!5K?jUWJPBkQvMafv88r6KgAE<7#v^b6wM zC^GE+(a`;+Jo(gBk@aG7dcl27?|ag%segPkay)+%8U2#*|2@F^@c%F()}`)Ar*|bc z9m>^8UM<z9bGkF?7C;`R-?0fv(T^HAdjns>cvLbit`;K&1WScNin#du$4WZ zkGNW)CS*K{xk?IuI>c`i9^)JKS*pa;I+aLi2IHPrS;y#U0miG=D)kYnaJ#r(!1Fka zsp}QSKlpD_rB(kQ@$C~TmDH9PU%wFksPF>nCEhcnJ+tAI}iKGQL(}+(Y>&^VBk& z1e6ZfdjpJ{ilu=Z4T&v-%#(~Y?^4=WnpDZ(VG1Sl(lDYUtjN_wQpeHU}o4F?(L(8 zm1G#&tdPPMg;&{@;CDUn^i)|+-u7(e=ZM0xpf@d$Fn0%om9Lhqal4e~-3{4&WR-VI zR;}vfDM*PvtX#D!zW)9R%c30-{9u(2k+({;-2X6l8%Fauc&mkfHfZBfb*kvuIYO_Z zaU3nV;(j37eUBxNb?4S%DD$1BB=nrG8Ocl?Wq)#4iWLfqzYdGUF!p8ID4@vv$ zp{6}hr{H$c9ii^9&>z3sz$6R>!~X9j{;xC#LjN)E1EPJ* z`!Mf9Seq(5=Yv1yg}_r{$bID8!5{NEmpGnkz#sEWApf2ROE~`@A|=o9;E#D75c6g9 zA9lcd$e-tokTGurc1q*n{-aMPslqvhKjyK(x)`GU@bQ0v^n6UvH-8u8_W|>F3FEhg zI^$R9Kj@znKcI+B7s$YeLjIki0KyIdAOpW0@=u8Zm=B#W_#xiIA%DypfVjVbeR%wy z6@TPkCB;(kJ`n*zLsUPY8g~)?r^Eor@4A8|-2P8V8T79wwKeempflBR{y{%Q6`n)l z{sZ$??1v27Lk9kaeA@&5m?zJ65J?4gTDm5Ke}NP{_RxNF-f3u$Iv*Sr9{*h6hx7Oi z;@AZKn1|N4u(eVt|MS`h{DHHi3i>x4I<*hlK?L|gzDgD5&_3p83Golx%i+LXEg*t9 zF>mtlzpcsW3jBkJu@f{+Nx*MO$M`ztxik8M??1lZLf?b_m-t4B%H~jTw5zo|7jEsp Ol7CpJEDJe=MD6~4Q9xipD4Y0{XaG)rl!gyMGO>N{Eynl&ykVs6-(W6+uWS&{hf}P#0R{LdbH?z2{qx zN9&f?4U}$Q=6!egh{gx_oD~txHALnMS)%eZrU5s(b%XUHdvB-YPGWK*jOcAU~dqCuqbHbl) z$!8GTBn&X=QpAx54Gm^IrDfY43peosR1;Du{0}v;v~NcafjYi|AhqaGDQF zdrO^%nB*TQ=~X-PxlC8*&V05tpDR?RTc^9bTDv-}a?$G0O>@8E^x-kJf9SBHFjeLx zjVgNF$cV?f4WeiJ=bkR#@mOi_(eG7v{Q9Y;AKmil`?vj+ZMfg;!!}$v9)<|ZT<12~ z#^mGURFknyc;0<_QWHyjas2fSbiKsI8}QB&d|?Tm`*l-;ILdKGr_;_@u8_{>?siF} z1dlppFJ1DS$#kxuSmyk8sr>_~eZ5YH)nVI*&i*zVo>+QktXmi)RY1V_ZM+ zb%vjp>l^$<3D}e{dhn1h+-`V2hnzE%i$30e-Y@xhj4}3^^YJ`>Q09HS{3JpZVwiz2 z17QZj41^g7GZ1DV%)tL~2L9Z9<6rF)mz(U9D}K3CDf^REFIxMVed32r=X6$TyB{R_ zPql4dC1~EN*q)^CYpG9Zx&05R+4JwWXMby-cy8{%NV2`!{$u;p-lr%)ZDW}%UmCNT zw|+v$BmMzm>{BZ~&v4tkw~?BDH`l4@Yibvpw;pH1bAn`_)AqYF3_Gscvvc<2f4tp( ze14f7dBQ$_)!RS;wn>1d+QqTvt<*30bAONTWwol@de}a(H_BCe_IYo$eRA(g5-#ni z)oPcr^!3DwztdfJ<4f+CMYnxlXY}@9vHaq((*tl1_4{FV!lFs_8Vn zP-C9g4jdz&TiBp)m3||4GgUk3vz>TNtc~@rZFy(&wRbfgSGRB8^X6SQ>(`g;|33P} zU`KT>9MhxEi^PAJiR9YYr=q=URz^$IG8175GZ1DV%s`ldFau!*!VH8N2s037Ak4u3 zMh3865$hAN_E6vSP#0IDo3eg!jmTeTmG%_3txB;PM_f&S&IwIa(8 z%OXasO`PBxJ}PESt5O$4|2jjf`vk8QY!Tcj2*BFNs;qxpC5kp_2>qxEPm4WuLA)D9 zhTY$4roWUYO|rcze6mX|=VsSG3rEPe+H<*11FIS8tHV)pGS>EojC0j*#Xvl90FrY6g+CMEcL|U24f_;TBC18j5{ALJ=T+7bdRl<-YP3pygeu%Ft{3n;4kPM1 zh4Bymn^bAk{~u`kn2N`ZCC2MB!Y72sxO-XnW5Nrl7V2jXqA92OXY2wwqLIf zyip8&(5Rogv_17MFrMB{yi)7x>+}(3SleH(aGim7iEp&N{9fYYF!JHIHNQ!zgpZ`^ zSBQ_PP4)8y?bnH4A8l6nJp%ub*azc0s^i0I0iPs(U38PexQFKF%u~xMZWy_Y)w9IM zX#BJ!U}=!|i>#+{l8|wzpEZ%{lGtOs!RsZl-yy%J`WX@_Um>3R6SQ9ut#<_>G;SsS zrbUbq_7J~5O23kU>p~qGEqU!$kygsn(>BLTk1Ha|US({|8dVFc>K$*=8Rd2LWwOi` zo$-7zlg>L?uUINO>B_VkEly75UC+&0ZH+B>jepKbmr7}RC|K}HGit1qo^+jTWpZ+c zTzry4mfj-M-of+-+}=Cy?4?$6dAHQFFJ+BRO)2NS1MOY8!dTJqJ&R|ia7@bUR zoZ8Li(gm%*O?&zD`JCtFU7ty}wxFy~=lT!!4C<$o4s9and(TkMV5*mB+Ku5PZPD6& z2bHsbV0d58fHU0Re<(TPjP&fIhni#<*wm1~R)*KwzTjrlURvqYQ4|);UIr2tZ)|X~ z<)Sl@E@XMrLu#0;vblm&DZ5$4heY<7a#?)!whG6gjS~F4m5+#bP&C{Yv3Pezz1zG4 zL!Tttk5rzS^wJqZuVionwOoO=V@xTlQ1o1Dyil>GO2sL+wVi=)AV_ z7}Vwy>GFiKvNHv0!k||&nh&|9a;{idBsioix%o6ZD2qpsvZnIp%Nj3I#dD|Wn};D; z7IkJVcR~i6|?g9z}0e3dH9 zp?%ETV&WgPm&1X(T1EtOVqWLre`}pF75MuR=iYCckbvKkj`4MTJ$=w0{QmKM82aw_ fzr;6CR1$&UXxC_Yj@;OPJO5*$vO3@p5Y;~bTFV^r literal 0 HcmV?d00001 diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake b/cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake new file mode 100644 index 0000000..4b52145 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.2.0-37-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.2.0-37-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.2.0-37-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.2.0-37-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..88155ff --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,866 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#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_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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(__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 "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/a.out b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..c786756abbd10a6ac500dd20933efa409d328d0c GIT binary patch literal 16088 zcmeHOeQX>@6`woj!=Xv+xG^?KX|^GSgwz|`aZ(eMW8 zZjag(l%SLnlSXPGD*Xebst77RDuINGhy*wk1zHMfB&3G_Oh2R`h1PskrbId3n|Z(U zc{vA(_75a>EbnjLZ{B+|`(}1;c6a7;@qxZ*B%+Y&)IP;htkEzrDR}&D$q>X;w^~ET z_o~~}3X+#;&XmUtP^n2*qKmO!_&P$iYvoK0yv@*5gGp#1Bik*NQrsX)KqcqFcFVay zWcgdL0e6l|kU-C>g8jMN82 zJUJ%(-!1VBV!OBj2JKQ}7sOt%19Balj=$z7{+s%airovAcB6uLm!TC9^?j7=q-#av z=74TKCiN}V4~-IkpoCZL$fQShckRd|+A`@}X|ipydw1LJF1whwJ9Wj}E{pzoOdUFW zLXn#p<|K?NddkS~$7SoKob{J)zUNZi`461`=J4bz`+nZ{vYKsP&pO<0wqYGk><>eP zWzKV*tYhNwdCJMyCcK>dZB`RY9N2$Tjj|r%tQx$#1fN@i=XPzb;YYdd=%nY4rE^{; zeSeZf3h<~~^u2=bX1#PyvCQ$^tqu+JAM9~E?M{1FCBL&vx&1?fZX#Joj;D)$vM@B* zlga0jL*7V+-Hm7SIdSJ2)tZVN!HE7dJryCD+l%p1+K^twQRnf;+z%gpjKUnHJDy3n zj&c21>kL0H*EjfCaabQS<=`PV26)RddaVJzAiNdezbO3H0RI)?+XMX5!e801bmFnY zeT6hz#q$_Lx?06!Y;)OM70=@qX}*fr_gfT%7)BtBKp25A0$~Kg2!s&`Bk(^FfxkA~ z{+4t4TD^02`R{iq<$PhrkCtC_PXD6*S>3+!t|y89OZm=k5HxI3tWVNUwA8D#-0`RW z>C2yRreAhWzdCnxDBdyC@tkvR@AKrK+*~Bhzm3@qn;z8uh`&gTb8h(sh7ZmA%~bWr zI8RltD$h1-I>n053X=Y#T7TD<7`EMTrstfCukUv*&eu7SOU~sR{(5q7r#PrD&yF>0 zqISWa+k0y7AQh|9_7l$Oy;06O)35ofowIvakZ^Tdxm>=Qpu;8YCUTN&7uo;uJ}P8K zC&+I4v)7#I((Ete*SVR_+2-fzN&Rg6n)A35d9mRc)$r4qNc=kS7nb0^Q;Rna&NV;1 zmZJR3vc`&+2Wx4QcfS^YHh%pibz7xRE4|1~4O19_Falu&!U%*B2qO?iAdEm5fiMDL z1i}dXKSzMSf88wgAMQJ{XEdLkNN19TVfre0aQ9Qy@Uxue)HfH(rW>Aa;{wd8XQAZt8}@u~=NA5qsO`Dl zE6`(-68rS&|HtI_+f2mQHa-;XS+gSg1l7z$n8FBz5eOp?Mj(tp7=bVXVFbbmgb@fM z@Xkg6>lLv+5o-YT!wXfl8r8}A#Wf=TPS!cTM`Wyn+$b_0VK#`2^^pAB!wKbozfsP! z{C!zWh&6&KerTh_>k>I#k@9yLQJoRIMX*({Sr8y*YDU%}u9SjysR-@pmJ_GNo;tzb z?IJ_(pJmftQrFZCkhkzfF%=mugwY5!Rhz zohjCpVjbzBo}N9{))OP8oL{o&L7$%R+d4{G?0BHF({AtDCiKl4#@(rD9+V?j*iZwN&DX(mljCMH>|EE8t_I zAM`V*{X=U3?&jCi=!o zsXpSHsNZ8UuJpSiD*T@KX%v0MiEoP1-867rbP&&Ri&;jqQw;WLzC~FvL*TsB@zH|cVdrTDzBiI~ zeQ#V5QS?h=WA><8Sgr5+S$CAz>laBgk$1;4`4KPUCj5M%=z66|#qSt1Nk5se+iPp^ z-hs616$;*zo6PxzDK%E`vPm~l%4Vm?q)Kv0(_f_8Gw6LX+0!HMG5ZtLHrMStc3?2> z#t-+pv}2(6p2G(Q`+JC{mz-|gky5Akm~syd965Mkz&+B}cRW7i4jni+5GRY^4u%-^ zE&Qjw3dw}$drF@Vd11k9Tp(fbE(SMI%)2Ri5z0Fp`j3!SBAs(f#biRIb7OfIZ&8hu z@p9uOZ#?P#`x{b45fdA{%caUjibbhdZ@_R}+EO9m(C#Y^gD+!mvcF>SHjhe3cq@nQ z71LCCPizE!?W>esoXYy%2%%pvm_ja{qwO9O%FgBeq&=Q1*%O8QM6%#dRZ%0QH0{+% zCxkk1u)mGRqE=6N#gwuWQ#q=_pkFX0Xopr4!KJc7GUKs{F_IRE$J_T6W zJRC_guRGIDrepx75@Zj_*qf1PERZMXUN${S&Ec_NQ&%XPx+Y5_Tdugb2RtvMTSDdS zesG^1=4Ggbb*t0+NZ`2>UG_RHwVzCiEAucm;Okt1tGZ6D<)E_+m zuaYgF6Ur;UGxB?b=LS;IDcFBsC$`$&5<8%XV!iM)2L8!_eY+F@p$7+$f!__-$D{!G zUZMD;VuaT8(xf+zs*s%V-_u>Ri= zU2Q)v_Q3N2d-Ol(mncJPSu6V?F%QN*%%DDG;45U?P-TyK_k0_Xl%Qv%1sVJsRKR0T z9v>Fw!?bRe(~R^VkAF_ELqC3tI97o@o+oE^u(nb$eOx%e9ym`$)%F#Gc4O1MV5)Pl z1AT)s%%OhF1G~jOs4u4jb5%zKbE011VZXh?m<;Tz5o4!XH6;#lALQ$ppA*m?-2YY) ohqhPS$M_>ECG3ATl4&dQj65B#Wq*c$SSYPVLyf4>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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(__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 "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "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/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/a.out b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..6f7591430982e78f058bf3d0fb3528e454cf27eb GIT binary patch literal 16096 zcmeHOeQX>@6`#9&IW);#(uSC%G)HNxq^&n+$4O04$T{{oYh)*B;*>xdR%_qdKJ`A# z-5#|Iv_UBlHw`pU0TM-uiUa~w2_zImr51;xqE;;=5)}a<6h10~l(yzmZi#ZdH}ihy z^KuRX`UevGEbp85dml6VW_E9Ocjkd~Ur#g=QJ@9tJ&L7N+#o4YoVr5_#8Rq5EvMt# z)%9vI$qO}R^eMwgYv_D*E^iWi0de+g=0XF0y@9C)Lues$_M4AJxj{tWO3s7*7O_I) zApf;g01kbvz63iHCG@ez9~M9GdOvQ;bc?Z{-aePxl9#>0;m4vr1{;CGLF2WKGaAzL8Fb~e{y0JkVg(Ov<+NFC)|Og%bGveS2l}0iSMo-(W#20e z^mpZo1#iF|%yGDpe6b+m9AnzhkTV$3f2OA*By)Q)UMg#|OF8R2{uukt$Xrt5GXx1gCiT;Fe@2zi)+Fau!*!VH8N2s037Ak4u3LXyd|{!{hluMmr^S8PwxQ(Ed)T5f%% zckV8+##h#qD&%CikCf_;!f4G;F z9OwY~O@8c>Jz2T%qx5BNrhR<%^Yo;CJblUjq8&LKJFQ|*Pesy~34d}P{2PsM6X3+^ zCst6FPcMwuqCD8hnxgxS@Z;&rhpF3YeOl{9ZfZzj2Eq)483;2FW+2Q!n1L_@VFtns zgc%4k@c*0v{{D3}>fPP5XWLLQKbFmTr9<>p^6*^iIeO>AUa6cd77isfwYFNOkZeaG zd01(Wv7GA<7fbm=ef)J*K({nBdPvIjVX%;KOBwp$H|$n&{-M@8MB|P7UV&>V*K~V! z>sCe9EqM0^Y94=&8hEW*y_mm8MhY9+>Ua1yY z{+28z#2Ud-erO}&b%{*pMgJBfs$;^h5#B6(wQw+TQ&X}Iafv9BQW4tGAtz3YJvAZT z4I;zt?^V-YGS|=*kW|f+757Vo zG!ILMCdA-c;*IRN-=b=T8k2D=<|-lhsQ|uNa9jtl@1;USHLH%4LAZTPyc#<~Pxlzt z8l=NV>7VPxbp`ww6(Z_dh3f?P*Qn5_{ZDKAxJo6AWt(9Xp|Sm0!Xvbj``A0gu#Po~ z|0``zS4&{L{9gO5tgXXGm^ZZjTWi-5@Hi!86@)t8LU^K1M)9D=*C>?&Vt6m%akZwF zXK42lzA741xZeQ3OYDPjhID*b&GHiAE2C=^#x*n#FithAghAvoRiD=Q8WmiB{g~jv z_0&%h9;b1VN+Gi0cN4yf#zRWRn|_Bxsvk(4xY*-TIV+NmP6=C=@j;~c~YorJH7(p@%iz3d`M1eE>C@US(cW>@Pwe%=}4_4;M9%oLrGTyfCNIT^oLDm!jvT=6@`oacKP zE7{nB_YPzow^VW`9IxP)Ce(1r&3jI!lFv_&OP%D9r9a2CtKYrH>pFO_OWtJmW~`yH zG39)queB{(7%t+?CB^C4*V&(T(!0AI+DFj+{@tDZyCoY8 z0fVn-ud?f6?&gnLN_c~Z?km$&e*deKRi4QE?jUi$WcVmb*#hnR7*kfE=zG>kp<<1d ziep~MpQwWdD_PpKlg$X!xwE&02cFIP$@rTgX*^J-;BG!UM9tyuw|uh?G3Xgg@q$;FzzY{jdYSpZs~w3K{cO@T628Y(Ls` zf(o2d_+uUoj(Ifd51#)Q$d}Iv`r7Y`{J!A%flM?7`|rzy*83;K4_rj?p8eSZ{&>JY zDGG4dApm6XZwCBRq5%JFpu^yYc;62AV_pM}=PTF;&;PsPkNm5ISPFkmL@Y zn+X3G!~p#Enx!cO>wl5pdjA>m2Y)o+kNyYzGb+%U*4n;E%!jcbGiVPP{I}#AtMkYF zd!~gzBG?&eRtEkWDR}J3W5n$Im)6fRO-cXp_-BG2`thrTu?hU~TsgIgt(8jYk$8-y_^o*)dB(-6Z0Al|J!PaDZsy;W9-zM yj!Hn>2l+bYXBD&u_rIltq3!klDgKyBbY~zq>NQ%Pb2j!r$v-Sa%K{DoQT+qb`dVZF literal 0 HcmV?d00001 diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake b/cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake new file mode 100644 index 0000000..8c50177 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake @@ -0,0 +1,74 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "11.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake b/cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..32b5a24 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "11.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-11") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-11") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..a4691337f66c7201fb0c354daa924d93cb69ee7e GIT binary patch literal 15968 zcmeHOYit}>6~4Q9x#ZzZnvjr`W}z)4EuPqk6GD*5+Us>@E5`|m1A>rFX1!y3#6HaK zY-<-Nf$*pmQUz2Mia-hl0TMz=B}9Hyg{^{$sGuT0ph2ioC{zSUTNes4kY+h&?)f(3 zVcnv_49olcEXD%isFPjA6$0GYFL)+8o&_%E=?E#Tb&I$kT zlzfJY#skdXWXCB14(!OiXH-crbS6x>p6vSV`Rj*cDOMzw5g^_%8?CF!5X)SjV3io(>H zlQgRMF)bq=>sE`N?Z5Nnmph)i^ho;T?Vq^giQhfF{kdC*|G+lfZ}wpuE*uX-gk`RC zn{1==@o}oj*d{#hJX!RKc|JJ)susF5amg0EH4k5!hv$C1xkVghStFCSHR_h^f_t|^ zA|-gls(NG`QY>?Rcc?vs*}k;3)!1rmZ`QYUD=Ry^*UCE;XUwg7PGxv+x==1T z!*;H~;l_&Pl7zFgX-h-SV9fv1XDUWA_ZQ=(w%)ytv(Dp>x$l1N0ZMb6zVURyb&TsL zxl;49a(#opC;{72S`Qxbh25IxbI3VExftMs=lxQE#~5RunE=n@2W2+E%U2>)5k?t^ zG7x1T%0QHXC<9Rjq73{WXW-B6H~!r`e!0y&vFMjulrle6_u`G8na6+FcFxaAWBWry z|EY1y*9h7-Dz+!-QD5p;zTEX(cKZAs=JYe>@!!tuAI@~uyMAn*?0JF$G}ctf@}*Iu zed8znc*H+QjCpd==NaBH>#d=t-@|ok`ntx&_KnBb@SGsoyT1MQ9K+_T=JbsD*z>#1 z$7UCpvB%BxSH0B~;1&tc*0?y@zLEL`f9~(G9#*T`ZHLU`J#ns@)6aU#%o9C}Nw~DR z(P&)C)5qhBUZ%V5*b(xbB)3FPqb~i$BU-;clMDTsFUGo?P?u6_lOt zEljk3zaGn65q32n=C4?Dc455zY*_Q_R+=?`3`M$fY)O z5M?0BK$L+f15pN|3`7}-GVt$bfZu<;QppYt?AukPH+JPwD?i~?4tMT660{%6?i9i@&bfza z9RfSVHY|82zkB0%S*KoTG>#IUCcKyM453N*;7p@&nve^>Q{@u7`+$l~CSn_wEonPN zFVvXlwF5`V=Phi|zr=qdcQaMH>3Z}_O_HLXfr5dG^kt?m_ED!5K?jUWJPBkQvMafv88r6KgAE<7#v^b6wM zC^GE+(a`;+Jo(gBk@aG7dcl27?|ag%segPkay)+%8U2#*|2@F^@c%F()}`)Ar*|bc z9m>^8UM<z9bGkF?7C;`R-?0fv(T^HAdjns>cvLbit`;K&1WScNin#du$4WZ zkGNW)CS*K{xk?IuI>c`i9^)JKS*pa;I+aLi2IHPrS;y#U0miG=D)kYnaJ#r(!1Fka zsp}QSKlpD_rB(kQ@$C~TmDH9PU%wFksPF>nCEhcnJ+tAI}iKGQL(}+(Y>&^VBk& z1e6ZfdjpJ{ilu=Z4T&v-%#(~Y?^4=WnpDZ(VG1Sl(lDYUtjN_wQpeHU}o4F?(L(8 zm1G#&tdPPMg;&{@;CDUn^i)|+-u7(e=ZM0xpf@d$Fn0%om9Lhqal4e~-3{4&WR-VI zR;}vfDM*PvtX#D!zW)9R%c30-{9u(2k+({;-2X6l8%Fauc&mkfHfZBfb*kvuIYO_Z zaU3nV;(j37eUBxNb?4S%DD$1BB=nrG8Ocl?Wq)#4iWLfqzYdGUF!p8ID4@vv$ zp{6}hr{H$c9ii^9&>z3sz$6R>!~X9j{;xC#LjN)E1EPJ* z`!Mf9Seq(5=Yv1yg}_r{$bID8!5{NEmpGnkz#sEWApf2ROE~`@A|=o9;E#D75c6g9 zA9lcd$e-tokTGurc1q*n{-aMPslqvhKjyK(x)`GU@bQ0v^n6UvH-8u8_W|>F3FEhg zI^$R9Kj@znKcI+B7s$YeLjIki0KyIdAOpW0@=u8Zm=B#W_#xiIA%DypfVjVbeR%wy z6@TPkCB;(kJ`n*zLsUPY8g~)?r^Eor@4A8|-2P8V8T79wwKeempflBR{y{%Q6`n)l z{sZ$??1v27Lk9kaeA@&5m?zJ65J?4gTDm5Ke}NP{_RxNF-f3u$Iv*Sr9{*h6hx7Oi z;@AZKn1|N4u(eVt|MS`h{DHHi3i>x4I<*hlK?L|gzDgD5&_3p83Golx%i+LXEg*t9 zF>mtlzpcsW3jBkJu@f{+Nx*MO$M`ztxik8M??1lZLf?b_m-t4B%H~jTw5zo|7jEsp Ol7CpJEDJe=MD6~4Q9xipD4Y0{XaG)rl!gyMGO>N{Eynl&ykVs6-(W6+uWS&{hf}P#0R{LdbH?z2{qx zN9&f?4U}$Q=6!egh{gx_oD~txHALnMS)%eZrU5s(b%XUHdvB-YPGWK*jOcAU~dqCuqbHbl) z$!8GTBn&X=QpAx54Gm^IrDfY43peosR1;Du{0}v;v~NcafjYi|AhqaGDQF zdrO^%nB*TQ=~X-PxlC8*&V05tpDR?RTc^9bTDv-}a?$G0O>@8E^x-kJf9SBHFjeLx zjVgNF$cV?f4WeiJ=bkR#@mOi_(eG7v{Q9Y;AKmil`?vj+ZMfg;!!}$v9)<|ZT<12~ z#^mGURFknyc;0<_QWHyjas2fSbiKsI8}QB&d|?Tm`*l-;ILdKGr_;_@u8_{>?siF} z1dlppFJ1DS$#kxuSmyk8sr>_~eZ5YH)nVI*&i*zVo>+QktXmi)RY1V_ZM+ zb%vjp>l^$<3D}e{dhn1h+-`V2hnzE%i$30e-Y@xhj4}3^^YJ`>Q09HS{3JpZVwiz2 z17QZj41^g7GZ1DV%)tL~2L9Z9<6rF)mz(U9D}K3CDf^REFIxMVed32r=X6$TyB{R_ zPql4dC1~EN*q)^CYpG9Zx&05R+4JwWXMby-cy8{%NV2`!{$u;p-lr%)ZDW}%UmCNT zw|+v$BmMzm>{BZ~&v4tkw~?BDH`l4@Yibvpw;pH1bAn`_)AqYF3_Gscvvc<2f4tp( ze14f7dBQ$_)!RS;wn>1d+QqTvt<*30bAONTWwol@de}a(H_BCe_IYo$eRA(g5-#ni z)oPcr^!3DwztdfJ<4f+CMYnxlXY}@9vHaq((*tl1_4{FV!lFs_8Vn zP-C9g4jdz&TiBp)m3||4GgUk3vz>TNtc~@rZFy(&wRbfgSGRB8^X6SQ>(`g;|33P} zU`KT>9MhxEi^PAJiR9YYr=q=URz^$IG8175GZ1DV%s`ldFau!*!VH8N2s037Ak4u3 zMh3865$hAN_E6vSP#0IDo3eg!jmTeTmG%_3txB;PM_f&S&IwIa(8 z%OXasO`PBxJ}PESt5O$4|2jjf`vk8QY!Tcj2*BFNs;qxpC5kp_2>qxEPm4WuLA)D9 zhTY$4roWUYO|rcze6mX|=VsSG3rEPe+H<*11FIS8tHV)pGS>EojC0j*#Xvl90FrY6g+CMEcL|U24f_;TBC18j5{ALJ=T+7bdRl<-YP3pygeu%Ft{3n;4kPM1 zh4Bymn^bAk{~u`kn2N`ZCC2MB!Y72sxO-XnW5Nrl7V2jXqA92OXY2wwqLIf zyip8&(5Rogv_17MFrMB{yi)7x>+}(3SleH(aGim7iEp&N{9fYYF!JHIHNQ!zgpZ`^ zSBQ_PP4)8y?bnH4A8l6nJp%ub*azc0s^i0I0iPs(U38PexQFKF%u~xMZWy_Y)w9IM zX#BJ!U}=!|i>#+{l8|wzpEZ%{lGtOs!RsZl-yy%J`WX@_Um>3R6SQ9ut#<_>G;SsS zrbUbq_7J~5O23kU>p~qGEqU!$kygsn(>BLTk1Ha|US({|8dVFc>K$*=8Rd2LWwOi` zo$-7zlg>L?uUINO>B_VkEly75UC+&0ZH+B>jepKbmr7}RC|K}HGit1qo^+jTWpZ+c zTzry4mfj-M-of+-+}=Cy?4?$6dAHQFFJ+BRO)2NS1MOY8!dTJqJ&R|ia7@bUR zoZ8Li(gm%*O?&zD`JCtFU7ty}wxFy~=lT!!4C<$o4s9and(TkMV5*mB+Ku5PZPD6& z2bHsbV0d58fHU0Re<(TPjP&fIhni#<*wm1~R)*KwzTjrlURvqYQ4|);UIr2tZ)|X~ z<)Sl@E@XMrLu#0;vblm&DZ5$4heY<7a#?)!whG6gjS~F4m5+#bP&C{Yv3Pezz1zG4 zL!Tttk5rzS^wJqZuVionwOoO=V@xTlQ1o1Dyil>GO2sL+wVi=)AV_ z7}Vwy>GFiKvNHv0!k||&nh&|9a;{idBsioix%o6ZD2qpsvZnIp%Nj3I#dD|Wn};D; z7IkJVcR~i6|?g9z}0e3dH9 zp?%ETV&WgPm&1X(T1EtOVqWLre`}pF75MuR=iYCckbvKkj`4MTJ$=w0{QmKM82aw_ fzr;6CR1$&UXxC_Yj@;OPJO5*$vO3@p5Y;~bTFV^r literal 0 HcmV?d00001 diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CMakeSystem.cmake b/cmake-build-debug/CMakeFiles/3.27.8/CMakeSystem.cmake new file mode 100644 index 0000000..21d50c5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.27.8/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.2.0-39-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.2.0-39-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.2.0-39-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.2.0-39-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c b/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..66be365 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,866 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#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_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(_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(__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__) +# 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(__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 "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# 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/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.out b/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..c786756abbd10a6ac500dd20933efa409d328d0c GIT binary patch literal 16088 zcmeHOeQX>@6`woj!=Xv+xG^?KX|^GSgwz|`aZ(eMW8 zZjag(l%SLnlSXPGD*Xebst77RDuINGhy*wk1zHMfB&3G_Oh2R`h1PskrbId3n|Z(U zc{vA(_75a>EbnjLZ{B+|`(}1;c6a7;@qxZ*B%+Y&)IP;htkEzrDR}&D$q>X;w^~ET z_o~~}3X+#;&XmUtP^n2*qKmO!_&P$iYvoK0yv@*5gGp#1Bik*NQrsX)KqcqFcFVay zWcgdL0e6l|kU-C>g8jMN82 zJUJ%(-!1VBV!OBj2JKQ}7sOt%19Balj=$z7{+s%airovAcB6uLm!TC9^?j7=q-#av z=74TKCiN}V4~-IkpoCZL$fQShckRd|+A`@}X|ipydw1LJF1whwJ9Wj}E{pzoOdUFW zLXn#p<|K?NddkS~$7SoKob{J)zUNZi`461`=J4bz`+nZ{vYKsP&pO<0wqYGk><>eP zWzKV*tYhNwdCJMyCcK>dZB`RY9N2$Tjj|r%tQx$#1fN@i=XPzb;YYdd=%nY4rE^{; zeSeZf3h<~~^u2=bX1#PyvCQ$^tqu+JAM9~E?M{1FCBL&vx&1?fZX#Joj;D)$vM@B* zlga0jL*7V+-Hm7SIdSJ2)tZVN!HE7dJryCD+l%p1+K^twQRnf;+z%gpjKUnHJDy3n zj&c21>kL0H*EjfCaabQS<=`PV26)RddaVJzAiNdezbO3H0RI)?+XMX5!e801bmFnY zeT6hz#q$_Lx?06!Y;)OM70=@qX}*fr_gfT%7)BtBKp25A0$~Kg2!s&`Bk(^FfxkA~ z{+4t4TD^02`R{iq<$PhrkCtC_PXD6*S>3+!t|y89OZm=k5HxI3tWVNUwA8D#-0`RW z>C2yRreAhWzdCnxDBdyC@tkvR@AKrK+*~Bhzm3@qn;z8uh`&gTb8h(sh7ZmA%~bWr zI8RltD$h1-I>n053X=Y#T7TD<7`EMTrstfCukUv*&eu7SOU~sR{(5q7r#PrD&yF>0 zqISWa+k0y7AQh|9_7l$Oy;06O)35ofowIvakZ^Tdxm>=Qpu;8YCUTN&7uo;uJ}P8K zC&+I4v)7#I((Ete*SVR_+2-fzN&Rg6n)A35d9mRc)$r4qNc=kS7nb0^Q;Rna&NV;1 zmZJR3vc`&+2Wx4QcfS^YHh%pibz7xRE4|1~4O19_Falu&!U%*B2qO?iAdEm5fiMDL z1i}dXKSzMSf88wgAMQJ{XEdLkNN19TVfre0aQ9Qy@Uxue)HfH(rW>Aa;{wd8XQAZt8}@u~=NA5qsO`Dl zE6`(-68rS&|HtI_+f2mQHa-;XS+gSg1l7z$n8FBz5eOp?Mj(tp7=bVXVFbbmgb@fM z@Xkg6>lLv+5o-YT!wXfl8r8}A#Wf=TPS!cTM`Wyn+$b_0VK#`2^^pAB!wKbozfsP! z{C!zWh&6&KerTh_>k>I#k@9yLQJoRIMX*({Sr8y*YDU%}u9SjysR-@pmJ_GNo;tzb z?IJ_(pJmftQrFZCkhkzfF%=mugwY5!Rhz zohjCpVjbzBo}N9{))OP8oL{o&L7$%R+d4{G?0BHF({AtDCiKl4#@(rD9+V?j*iZwN&DX(mljCMH>|EE8t_I zAM`V*{X=U3?&jCi=!o zsXpSHsNZ8UuJpSiD*T@KX%v0MiEoP1-867rbP&&Ri&;jqQw;WLzC~FvL*TsB@zH|cVdrTDzBiI~ zeQ#V5QS?h=WA><8Sgr5+S$CAz>laBgk$1;4`4KPUCj5M%=z66|#qSt1Nk5se+iPp^ z-hs616$;*zo6PxzDK%E`vPm~l%4Vm?q)Kv0(_f_8Gw6LX+0!HMG5ZtLHrMStc3?2> z#t-+pv}2(6p2G(Q`+JC{mz-|gky5Akm~syd965Mkz&+B}cRW7i4jni+5GRY^4u%-^ zE&Qjw3dw}$drF@Vd11k9Tp(fbE(SMI%)2Ri5z0Fp`j3!SBAs(f#biRIb7OfIZ&8hu z@p9uOZ#?P#`x{b45fdA{%caUjibbhdZ@_R}+EO9m(C#Y^gD+!mvcF>SHjhe3cq@nQ z71LCCPizE!?W>esoXYy%2%%pvm_ja{qwO9O%FgBeq&=Q1*%O8QM6%#dRZ%0QH0{+% zCxkk1u)mGRqE=6N#gwuWQ#q=_pkFX0Xopr4!KJc7GUKs{F_IRE$J_T6W zJRC_guRGIDrepx75@Zj_*qf1PERZMXUN${S&Ec_NQ&%XPx+Y5_Tdugb2RtvMTSDdS zesG^1=4Ggbb*t0+NZ`2>UG_RHwVzCiEAucm;Okt1tGZ6D<)E_+m zuaYgF6Ur;UGxB?b=LS;IDcFBsC$`$&5<8%XV!iM)2L8!_eY+F@p$7+$f!__-$D{!G zUZMD;VuaT8(xf+zs*s%V-_u>Ri= zU2Q)v_Q3N2d-Ol(mncJPSu6V?F%QN*%%DDG;45U?P-TyK_k0_Xl%Qv%1sVJsRKR0T z9v>Fw!?bRe(~R^VkAF_ELqC3tI97o@o+oE^u(nb$eOx%e9ym`$)%F#Gc4O1MV5)Pl z1AT)s%%OhF1G~jOs4u4jb5%zKbE011VZXh?m<;Tz5o4!XH6;#lALQ$ppA*m?-2YY) ohqhPS$M_>ECG3ATl4&dQj65B#Wq*c$SSYPVLyf4>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(_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(__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__) +# 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(__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 "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "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/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.out b/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..6f7591430982e78f058bf3d0fb3528e454cf27eb GIT binary patch literal 16096 zcmeHOeQX>@6`#9&IW);#(uSC%G)HNxq^&n+$4O04$T{{oYh)*B;*>xdR%_qdKJ`A# z-5#|Iv_UBlHw`pU0TM-uiUa~w2_zImr51;xqE;;=5)}a<6h10~l(yzmZi#ZdH}ihy z^KuRX`UevGEbp85dml6VW_E9Ocjkd~Ur#g=QJ@9tJ&L7N+#o4YoVr5_#8Rq5EvMt# z)%9vI$qO}R^eMwgYv_D*E^iWi0de+g=0XF0y@9C)Lues$_M4AJxj{tWO3s7*7O_I) zApf;g01kbvz63iHCG@ez9~M9GdOvQ;bc?Z{-aePxl9#>0;m4vr1{;CGLF2WKGaAzL8Fb~e{y0JkVg(Ov<+NFC)|Og%bGveS2l}0iSMo-(W#20e z^mpZo1#iF|%yGDpe6b+m9AnzhkTV$3f2OA*By)Q)UMg#|OF8R2{uukt$Xrt5GXx1gCiT;Fe@2zi)+Fau!*!VH8N2s037Ak4u3LXyd|{!{hluMmr^S8PwxQ(Ed)T5f%% zckV8+##h#qD&%CikCf_;!f4G;F z9OwY~O@8c>Jz2T%qx5BNrhR<%^Yo;CJblUjq8&LKJFQ|*Pesy~34d}P{2PsM6X3+^ zCst6FPcMwuqCD8hnxgxS@Z;&rhpF3YeOl{9ZfZzj2Eq)483;2FW+2Q!n1L_@VFtns zgc%4k@c*0v{{D3}>fPP5XWLLQKbFmTr9<>p^6*^iIeO>AUa6cd77isfwYFNOkZeaG zd01(Wv7GA<7fbm=ef)J*K({nBdPvIjVX%;KOBwp$H|$n&{-M@8MB|P7UV&>V*K~V! z>sCe9EqM0^Y94=&8hEW*y_mm8MhY9+>Ua1yY z{+28z#2Ud-erO}&b%{*pMgJBfs$;^h5#B6(wQw+TQ&X}Iafv9BQW4tGAtz3YJvAZT z4I;zt?^V-YGS|=*kW|f+757Vo zG!ILMCdA-c;*IRN-=b=T8k2D=<|-lhsQ|uNa9jtl@1;USHLH%4LAZTPyc#<~Pxlzt z8l=NV>7VPxbp`ww6(Z_dh3f?P*Qn5_{ZDKAxJo6AWt(9Xp|Sm0!Xvbj``A0gu#Po~ z|0``zS4&{L{9gO5tgXXGm^ZZjTWi-5@Hi!86@)t8LU^K1M)9D=*C>?&Vt6m%akZwF zXK42lzA741xZeQ3OYDPjhID*b&GHiAE2C=^#x*n#FithAghAvoRiD=Q8WmiB{g~jv z_0&%h9;b1VN+Gi0cN4yf#zRWRn|_Bxsvk(4xY*-TIV+NmP6=C=@j;~c~YorJH7(p@%iz3d`M1eE>C@US(cW>@Pwe%=}4_4;M9%oLrGTyfCNIT^oLDm!jvT=6@`oacKP zE7{nB_YPzow^VW`9IxP)Ce(1r&3jI!lFv_&OP%D9r9a2CtKYrH>pFO_OWtJmW~`yH zG39)queB{(7%t+?CB^C4*V&(T(!0AI+DFj+{@tDZyCoY8 z0fVn-ud?f6?&gnLN_c~Z?km$&e*deKRi4QE?jUi$WcVmb*#hnR7*kfE=zG>kp<<1d ziep~MpQwWdD_PpKlg$X!xwE&02cFIP$@rTgX*^J-;BG!UM9tyuw|uh?G3Xgg@q$;FzzY{jdYSpZs~w3K{cO@T628Y(Ls` zf(o2d_+uUoj(Ifd51#)Q$d}Iv`r7Y`{J!A%flM?7`|rzy*83;K4_rj?p8eSZ{&>JY zDGG4dApm6XZwCBRq5%JFpu^yYc;62AV_pM}=PTF;&;PsPkNm5ISPFkmL@Y zn+X3G!~p#Enx!cO>wl5pdjA>m2Y)o+kNyYzGb+%U*4n;E%!jcbGiVPP{I}#AtMkYF zd!~gzBG?&eRtEkWDR}J3W5n$Im)6fRO-cXp_-BG2`thrTu?hU~TsgIgt(8jYk$8-y_^o*)dB(-6Z0Al|J!PaDZsy;W9-zM yj!Hn>2l+bYXBD&u_rIltq3!klDgKyBbY~zq>NQ%Pb2j!r$v-Sa%K{DoQT+qb`dVZF literal 0 HcmV?d00001 diff --git a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..3923476 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,1259 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineSystem.cmake:204 (message)" + - "CMakeLists.txt:19 (project)" + message: | + The system is: Linux - 6.2.0-37-generic - x86_64 + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aUSjKk" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aUSjKk" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aUSjKk + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_f3336/fast && /usr/bin/gmake -f CMakeFiles/cmTC_f3336.dir/build.make CMakeFiles/cmTC_f3336.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aUSjKk' + Building CXX object CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f3336.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f3336.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc9QmEi6.s + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/include/c++/11 + /usr/include/x86_64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f3336.dir/' + as -v --64 -o CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc9QmEi6.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_f3336 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f3336.dir/link.txt --verbose=1 + /usr/bin/c++ -v CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f3336 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f3336' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f3336.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7R2Uc9.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f3336 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f3336' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f3336.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aUSjKk' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/x86_64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/11] ==> [/usr/include/x86_64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aUSjKk] + ignore line: [] + ignore line: [Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_f3336/fast && /usr/bin/gmake -f CMakeFiles/cmTC_f3336.dir/build.make CMakeFiles/cmTC_f3336.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aUSjKk'] + ignore line: [Building CXX object CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f3336.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f3336.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc9QmEi6.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f3336.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc9QmEi6.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_f3336] + ignore line: [/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f3336.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f3336 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f3336' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f3336.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7R2Uc9.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f3336 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_f3336.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc7R2Uc9.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_f3336] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_f3336.dir/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/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kfYVpU" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kfYVpU" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kfYVpU + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_844d8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_844d8.dir/build.make CMakeFiles/cmTC_844d8.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kfYVpU' + Building C object CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_844d8.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_844d8.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccS2FPY8.s + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: 50eaa2331df977b8016186198deb2d18 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_844d8.dir/' + as -v --64 -o CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o /tmp/ccS2FPY8.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_844d8 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_844d8.dir/link.txt --verbose=1 + /usr/bin/cc -v CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o -o cmTC_844d8 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_844d8' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_844d8.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cceq7rZ8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_844d8 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_844d8' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_844d8.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kfYVpU' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kfYVpU] + ignore line: [] + ignore line: [Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_844d8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_844d8.dir/build.make CMakeFiles/cmTC_844d8.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kfYVpU'] + ignore line: [Building C object CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o -c /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_844d8.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_844d8.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccS2FPY8.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 50eaa2331df977b8016186198deb2d18] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_844d8.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o /tmp/ccS2FPY8.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_844d8] + ignore line: [/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_844d8.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o -o cmTC_844d8 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_844d8' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_844d8.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/cceq7rZ8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_844d8 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cceq7rZ8.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_844d8] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_844d8.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCXXSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "cmake_modules/DetectCPUFeatures.cmake:45 (check_cxx_source_compiles)" + - "CMakeLists.txt:25 (include)" + checks: + - "Performing Test SUPPORT_SSE42" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bolqmJ" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bolqmJ" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_SSE42" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bolqmJ + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_e0ca6/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e0ca6.dir/build.make CMakeFiles/cmTC_e0ca6.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bolqmJ' + Building CXX object CMakeFiles/cmTC_e0ca6.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_SSE42 -march=native -msse4.2 -fdiagnostics-color=always -o CMakeFiles/cmTC_e0ca6.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bolqmJ/src.cxx + Linking CXX executable cmTC_e0ca6 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e0ca6.dir/link.txt --verbose=1 + /usr/bin/c++ -march=native -msse4.2 CMakeFiles/cmTC_e0ca6.dir/src.cxx.o -o cmTC_e0ca6 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-bolqmJ' + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCXXSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "cmake_modules/DetectCPUFeatures.cmake:47 (check_cxx_source_compiles)" + - "CMakeLists.txt:25 (include)" + checks: + - "Performing Test SUPPORT_AVX" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1aXN7F" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1aXN7F" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_AVX" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1aXN7F + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_86484/fast && /usr/bin/gmake -f CMakeFiles/cmTC_86484.dir/build.make CMakeFiles/cmTC_86484.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1aXN7F' + Building CXX object CMakeFiles/cmTC_86484.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_AVX -march=native -mavx -fdiagnostics-color=always -o CMakeFiles/cmTC_86484.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1aXN7F/src.cxx + Linking CXX executable cmTC_86484 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86484.dir/link.txt --verbose=1 + /usr/bin/c++ -march=native -mavx CMakeFiles/cmTC_86484.dir/src.cxx.o -o cmTC_86484 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1aXN7F' + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCXXSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "cmake_modules/DetectCPUFeatures.cmake:49 (check_cxx_source_compiles)" + - "CMakeLists.txt:25 (include)" + checks: + - "Performing Test SUPPORT_AVX2" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-DewYTG" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-DewYTG" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_AVX2" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-DewYTG + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_97f94/fast && /usr/bin/gmake -f CMakeFiles/cmTC_97f94.dir/build.make CMakeFiles/cmTC_97f94.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-DewYTG' + Building CXX object CMakeFiles/cmTC_97f94.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_AVX2 -march=native -mavx2 -fdiagnostics-color=always -o CMakeFiles/cmTC_97f94.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-DewYTG/src.cxx + Linking CXX executable cmTC_97f94 + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_97f94.dir/link.txt --verbose=1 + /usr/bin/c++ -march=native -mavx2 CMakeFiles/cmTC_97f94.dir/src.cxx.o -o cmTC_97f94 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-DewYTG' + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/CheckCSourceCompiles.cmake:76 (cmake_check_source_compiles)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" + - "/snap/clion/250/bin/cmake/linux/x64/share/cmake-3.26/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "cmake_modules/googletest.cmake:7 (find_package)" + - "CMakeLists.txt:205 (include)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6dtKrn" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6dtKrn" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-Wall -Wcast-align -ggdb -lm -std=c99 -march=native" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6dtKrn + + Run Build Command(s):/snap/clion/250/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_324aa/fast && /usr/bin/gmake -f CMakeFiles/cmTC_324aa.dir/build.make CMakeFiles/cmTC_324aa.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6dtKrn' + Building C object CMakeFiles/cmTC_324aa.dir/src.c.o + /usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -fdiagnostics-color=always -o CMakeFiles/cmTC_324aa.dir/src.c.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6dtKrn/src.c + Linking C executable cmTC_324aa + /snap/clion/250/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_324aa.dir/link.txt --verbose=1 + /usr/bin/cc CMakeFiles/cmTC_324aa.dir/src.c.o -o cmTC_324aa + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6dtKrn' + + exitCode: 0 +... + +--- +events: + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake:211 (message)" + - "CMakeLists.txt:19 (project)" + message: | + The system is: Linux - 6.2.0-39-generic - x86_64 + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:19 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + 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 GNU, found in: + /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-sogXgy" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-sogXgy" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-sogXgy' + + Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_173c4/fast + /usr/bin/gmake -f CMakeFiles/cmTC_173c4.dir/build.make CMakeFiles/cmTC_173c4.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-sogXgy' + Building CXX object CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_173c4.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_173c4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc4ZHJx7.s + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/include/c++/11 + /usr/include/x86_64-linux-gnu/c++/11 + /usr/include/c++/11/backward + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_173c4.dir/' + as -v --64 -o CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc4ZHJx7.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_173c4 + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_173c4.dir/link.txt --verbose=1 + /usr/bin/c++ -v CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_173c4 + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_173c4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_173c4.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZZs7hG.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_173c4 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_173c4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_173c4.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-sogXgy' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/11] + add: [/usr/include/x86_64-linux-gnu/c++/11] + add: [/usr/include/c++/11/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/11] ==> [/usr/include/c++/11] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/11] ==> [/usr/include/x86_64-linux-gnu/c++/11] + collapse include dir [/usr/include/c++/11/backward] ==> [/usr/include/c++/11/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/11;/usr/include/x86_64-linux-gnu/c++/11;/usr/include/c++/11/backward;/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-sogXgy'] + ignore line: [] + ignore line: [Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_173c4/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_173c4.dir/build.make CMakeFiles/cmTC_173c4.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-sogXgy'] + ignore line: [Building CXX object CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -fdiagnostics-color=always -v -o CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_173c4.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_173c4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc4ZHJx7.s] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/11"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/11] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/11] + ignore line: [ /usr/include/c++/11/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: d591828bb4d392ae8b7b160e5bb0b95f] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_173c4.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc4ZHJx7.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_173c4] + ignore line: [/snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_173c4.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_173c4 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_173c4' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_173c4.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZZs7hG.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_173c4 /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_173c4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccZZs7hG.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_173c4] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_173c4.dir/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/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-In13PU" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-In13PU" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-In13PU' + + Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_7985f/fast + /usr/bin/gmake -f CMakeFiles/cmTC_7985f.dir/build.make CMakeFiles/cmTC_7985f.dir/build + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-In13PU' + Building C object CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_7985f.dir/' + /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7985f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc1kXfRy.s + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/11/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu) + compiled by GNU C version 11.4.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: 50eaa2331df977b8016186198deb2d18 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_7985f.dir/' + as -v --64 -o CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o /tmp/cc1kXfRy.s + GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38 + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_7985f + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7985f.dir/link.txt --verbose=1 + /usr/bin/cc -v CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o -o cmTC_7985f + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) + COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7985f' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_7985f.' + /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfVmYDM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_7985f /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7985f' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_7985f.' + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-In13PU' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/11/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/11/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/11/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/11/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:19 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-In13PU'] + ignore line: [] + ignore line: [Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_7985f/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_7985f.dir/build.make CMakeFiles/cmTC_7985f.dir/build] + ignore line: [gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-In13PU'] + ignore line: [Building C object CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -fdiagnostics-color=always -v -o CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o -c /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_7985f.dir/'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/cc1 -quiet -v -imultiarch x86_64-linux-gnu /snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7985f.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc1kXfRy.s] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/11/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/11/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 11.4.0-1ubuntu1~22.04) version 11.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 11.4.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 50eaa2331df977b8016186198deb2d18] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_7985f.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o /tmp/cc1kXfRy.s] + ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_7985f] + ignore line: [/snap/clion/261/bin/cmake/linux/x64/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7985f.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o -o cmTC_7985f ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 11.4.0-1ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-11/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-11 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-11-XeT9lY/gcc-11-11.4.0/debian/tmp-gcn/usr --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/11/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7985f' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_7985f.'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/11/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfVmYDM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_7985f /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/11 -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/11/../../.. CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/11/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccfVmYDM.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_7985f] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] + arg [CMakeFiles/cmTC_7985f.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11] ==> [/usr/lib/gcc/x86_64-linux-gnu/11] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/11/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/11/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/11;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +... + +--- +events: + - + kind: "try_compile-v1" + backtrace: + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake:34 (cmake_check_compiler_flag)" + - "cmake_modules/environment.cmake:3 (check_cxx_compiler_flag)" + - "CMakeLists.txt:58 (include)" + checks: + - "Performing Test SUPPORT_NEON" + directories: + source: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE" + binary: "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_MODULE_PATH: "/home/kosakseb/Developer/FastPFor/cmake_modules" + buildResult: + variable: "SUPPORT_NEON" + cached: true + stdout: | + Change Dir: '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE' + + Run Build Command(s): /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_62ba9/fast + gmake[1]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE' + /usr/bin/gmake -f CMakeFiles/cmTC_62ba9.dir/build.make CMakeFiles/cmTC_62ba9.dir/build + gmake[2]: Entering directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE' + Building CXX object CMakeFiles/cmTC_62ba9.dir/src.cxx.o + /usr/bin/c++ -DSUPPORT_NEON -mfpu=neon -o CMakeFiles/cmTC_62ba9.dir/src.cxx.o -c /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE/src.cxx + c++: error: unrecognized command-line option '-mfpu=neon' + gmake[2]: *** [CMakeFiles/cmTC_62ba9.dir/build.make:78: CMakeFiles/cmTC_62ba9.dir/src.cxx.o] Error 1 + gmake[2]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE' + gmake[1]: *** [Makefile:127: cmTC_62ba9/fast] Error 2 + gmake[1]: Leaving directory '/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-L4EHWE' + + exitCode: 2 +... diff --git a/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..aeb48c9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/kosakseb/Developer/FastPFor") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/kosakseb/Developer/FastPFor/cmake-build-debug") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt b/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..52365d7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,29 @@ +# Hashes of file build rules. +17cc7e555fd96ceb6b42d34f7b800089 CMakeFiles/check +162ab560b8ddc766118dfdc4c809beaf CMakeFiles/gmock_src +6347399291325d669e3890dd08156fbe CMakeFiles/gmock_src-complete +162ab560b8ddc766118dfdc4c809beaf CMakeFiles/googletest +6653e9caf90e48abe6810995d8abce44 CMakeFiles/googletest-complete +162ab560b8ddc766118dfdc4c809beaf CMakeFiles/gtest_src +b5d39d0ac2613bfe69abc2f19325a6c3 CMakeFiles/gtest_src-complete +925eabf13e96794dde625a083121e14f vendor/gtm/src/gmock_src-stamp/gmock_src-build +6b6a9af74e26844102a3657fc589e571 vendor/gtm/src/gmock_src-stamp/gmock_src-configure +a690097607d04e9a7006407b2420e2b1 vendor/gtm/src/gmock_src-stamp/gmock_src-download +2e71c6bd2429dead4fda0ceb8fd4be4f vendor/gtm/src/gmock_src-stamp/gmock_src-install +3e845c0d750c21f92053cefd63d66ced vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir +31bb3c821eb830a5179a8116e3772c48 vendor/gtm/src/gmock_src-stamp/gmock_src-patch +9e09a41dcd185a6bfdb15b2c2ab62ebc vendor/gtm/src/gmock_src-stamp/gmock_src-update +0dc20263825cba5ce8753aa00e4b394b vendor/gtm/src/googletest-stamp/googletest-build +7c19835b8a6a531b4b47aa66a95305d2 vendor/gtm/src/googletest-stamp/googletest-configure +91075ce37ad2366aff819c16edaa377e vendor/gtm/src/googletest-stamp/googletest-download +3a47461f9d1be28f4242ed3259d8a8fb vendor/gtm/src/googletest-stamp/googletest-install +597cf095404cabc0f8b930f388b38c9e vendor/gtm/src/googletest-stamp/googletest-mkdir +590101759b653c359ce6f7b99022db28 vendor/gtm/src/googletest-stamp/googletest-patch +d9cf90f45766dfedb959dafe52f2d62a vendor/gtm/src/googletest-stamp/googletest-update +888035ea2d83a945a86bcbc21a541fa3 vendor/gtm/src/gtest_src-stamp/gtest_src-build +528901fbebdb4e3899f01e9114d6188f vendor/gtm/src/gtest_src-stamp/gtest_src-configure +56ae123b3c14d2e96de9d02734e1ce73 vendor/gtm/src/gtest_src-stamp/gtest_src-download +f7959e142face8fdf7de629d0279d4a8 vendor/gtm/src/gtest_src-stamp/gtest_src-install +473c391bd71ddbfba9a180ab6dd762e1 vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir +49539228507931b5a13122d0c260468a vendor/gtm/src/gtest_src-stamp/gtest_src-patch +3bce521f8dd76e98ae21c9125b02faef vendor/gtm/src/gtest_src-stamp/gtest_src-update diff --git a/cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake b/cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake new file mode 100644 index 0000000..0dd2c88 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "FastPFOR::FastPFOR" for configuration "Debug" +set_property(TARGET FastPFOR::FastPFOR APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(FastPFOR::FastPFOR PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C;CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libFastPFOR.a" + ) + +list(APPEND _cmake_import_check_targets FastPFOR::FastPFOR ) +list(APPEND _cmake_import_check_files_for_FastPFOR::FastPFOR "${_IMPORT_PREFIX}/lib/libFastPFOR.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake b/cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake new file mode 100644 index 0000000..0c039a0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/Export/ff0ecddd394eb5d4d384f6293969bd82/FastPFORTargets.cmake @@ -0,0 +1,102 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.3") + message(FATAL_ERROR "CMake >= 2.8.3 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.3...3.25) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS FastPFOR::FastPFOR) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target FastPFOR::FastPFOR +add_library(FastPFOR::FastPFOR STATIC IMPORTED) + +set_target_properties(FastPFOR::FastPFOR PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/FastPFORTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/FastPFOR.dir/DependInfo.cmake new file mode 100644 index 0000000..e68cbf5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/DependInfo.cmake @@ -0,0 +1,27 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/streamvbyte.c" "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" "gcc" "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d" + "/home/kosakseb/Developer/FastPFor/src/varintdecode.c" "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" "gcc" "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d" + "/home/kosakseb/Developer/FastPFor/src/bitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp" "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp" "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/codecfactory.cpp" "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp" "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" "gcc" "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/build.make b/cmake-build-debug/CMakeFiles/FastPFOR.dir/build.make new file mode 100644 index 0000000..2820be3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/build.make @@ -0,0 +1,239 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/FastPFOR.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/FastPFOR.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/FastPFOR.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/FastPFOR.dir/flags.make + +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp > CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o: /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o -MF CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o -c /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp + +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp > CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.i + +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp -o CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.s + +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o: /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o -MF CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o -c /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp + +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp > CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.i + +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp -o CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.s + +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp > CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp > CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o: /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o -MF CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o -c /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp + +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp > CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.i + +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp -o CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.s + +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o -MF CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d -o CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp + +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp > CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.i + +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp -o CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.s + +CMakeFiles/FastPFOR.dir/src/varintdecode.c.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/varintdecode.c.o: /home/kosakseb/Developer/FastPFor/src/varintdecode.c +CMakeFiles/FastPFOR.dir/src/varintdecode.c.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/varintdecode.c.o -MF CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d -o CMakeFiles/FastPFOR.dir/src/varintdecode.c.o -c /home/kosakseb/Developer/FastPFor/src/varintdecode.c + +CMakeFiles/FastPFOR.dir/src/varintdecode.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FastPFOR.dir/src/varintdecode.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/varintdecode.c > CMakeFiles/FastPFOR.dir/src/varintdecode.c.i + +CMakeFiles/FastPFOR.dir/src/varintdecode.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FastPFOR.dir/src/varintdecode.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/varintdecode.c -o CMakeFiles/FastPFOR.dir/src/varintdecode.c.s + +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o: CMakeFiles/FastPFOR.dir/flags.make +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o: /home/kosakseb/Developer/FastPFor/src/streamvbyte.c +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o: CMakeFiles/FastPFOR.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o -MF CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d -o CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o -c /home/kosakseb/Developer/FastPFor/src/streamvbyte.c + +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FastPFOR.dir/src/streamvbyte.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/streamvbyte.c > CMakeFiles/FastPFOR.dir/src/streamvbyte.c.i + +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FastPFOR.dir/src/streamvbyte.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/streamvbyte.c -o CMakeFiles/FastPFOR.dir/src/streamvbyte.c.s + +# Object files for target FastPFOR +FastPFOR_OBJECTS = \ +"CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" \ +"CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" \ +"CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" + +# External object files for target FastPFOR +FastPFOR_EXTERNAL_OBJECTS = + +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/varintdecode.c.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o +libFastPFOR.a: CMakeFiles/FastPFOR.dir/build.make +libFastPFOR.a: CMakeFiles/FastPFOR.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX static library libFastPFOR.a" + $(CMAKE_COMMAND) -P CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FastPFOR.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/FastPFOR.dir/build: libFastPFOR.a +.PHONY : CMakeFiles/FastPFOR.dir/build + +CMakeFiles/FastPFOR.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/FastPFOR.dir/cmake_clean.cmake +.PHONY : CMakeFiles/FastPFOR.dir/clean + +CMakeFiles/FastPFOR.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/FastPFOR.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/FastPFOR.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean.cmake new file mode 100644 index 0000000..e0edc4b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean.cmake @@ -0,0 +1,27 @@ +file(REMOVE_RECURSE + "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o" + "CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o" + "CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o" + "CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o" + "CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d" + "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o" + "CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d" + "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o" + "CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d" + "libFastPFOR.a" + "libFastPFOR.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C CXX) + include(CMakeFiles/FastPFOR.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake b/cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..285199e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libFastPFOR.a" +) diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.make new file mode 100644 index 0000000..dc3a5d2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FastPFOR. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.ts new file mode 100644 index 0000000..062c992 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FastPFOR. diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/depend.make b/cmake-build-debug/CMakeFiles/FastPFOR.dir/depend.make new file mode 100644 index 0000000..936d1f7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FastPFOR. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/flags.make b/cmake-build-debug/CMakeFiles/FastPFOR.dir/flags.make new file mode 100644 index 0000000..d43d87b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/flags.make @@ -0,0 +1,17 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile C with /usr/bin/cc +# compile CXX with /usr/bin/c++ +C_DEFINES = + +C_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +C_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c99 -march=native -fPIC -fdiagnostics-color=always + +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fPIC -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/link.txt b/cmake-build-debug/CMakeFiles/FastPFOR.dir/link.txt new file mode 100644 index 0000000..1215a01 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libFastPFOR.a CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o CMakeFiles/FastPFOR.dir/src/varintdecode.c.o CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o +/usr/bin/ranlib libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/progress.make b/cmake-build-debug/CMakeFiles/FastPFOR.dir/progress.make new file mode 100644 index 0000000..6c587e2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/progress.make @@ -0,0 +1,11 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 + diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d new file mode 100644 index 0000000..f30b28f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o.d @@ -0,0 +1,294 @@ +CMakeFiles/FastPFOR.dir/src/bitpacking.cpp.o: \ + /home/kosakseb/Developer/FastPFor/src/bitpacking.cpp \ + /usr/include/stdc-predef.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/errno.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/linux/falloc.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/limits /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d new file mode 100644 index 0000000..ea07e22 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o.d @@ -0,0 +1,294 @@ +CMakeFiles/FastPFOR.dir/src/bitpackingaligned.cpp.o: \ + /home/kosakseb/Developer/FastPFor/src/bitpackingaligned.cpp \ + /usr/include/stdc-predef.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/errno.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/linux/falloc.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/limits /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d new file mode 100644 index 0000000..6cffce5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o.d @@ -0,0 +1,295 @@ +CMakeFiles/FastPFOR.dir/src/bitpackingunaligned.cpp.o: \ + /home/kosakseb/Developer/FastPFor/src/bitpackingunaligned.cpp \ + /usr/include/stdc-predef.h /usr/include/c++/11/exception \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/new /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/nested_exception.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingunaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/linux/falloc.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/uniform_int_dist.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/limits /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d new file mode 100644 index 0000000..7753ad6 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o.d @@ -0,0 +1,330 @@ +CMakeFiles/FastPFOR.dir/src/codecfactory.cpp.o: \ + /home/kosakseb/Developer/FastPFor/src/codecfactory.cpp \ + /usr/include/stdc-predef.h \ + /home/kosakseb/Developer/FastPFor/headers/codecfactory.h \ + /home/kosakseb/Developer/FastPFor/headers/codecs.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/errno.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/linux/falloc.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/limits /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h \ + /home/kosakseb/Developer/FastPFor/headers/util.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackinghelpers.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/vsencoding.h \ + /home/kosakseb/Developer/FastPFor/headers/simple16.h \ + /home/kosakseb/Developer/FastPFor/headers/simple9.h \ + /home/kosakseb/Developer/FastPFor/headers/simple9_rle.h \ + /home/kosakseb/Developer/FastPFor/headers/simple8b.h \ + /home/kosakseb/Developer/FastPFor/headers/simple8b_rle.h \ + /home/kosakseb/Developer/FastPFor/headers/newpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/simdnewpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/usimdbitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/optpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/simdoptpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/fastpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/blockpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingunaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/cpubenchmark.h \ + /home/kosakseb/Developer/FastPFor/headers/packingvectors.h \ + /home/kosakseb/Developer/FastPFor/headers/simdfastpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/simdbitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/memutil.h \ + /home/kosakseb/Developer/FastPFor/headers/variablebyte.h \ + /home/kosakseb/Developer/FastPFor/headers/compositecodec.h \ + /home/kosakseb/Developer/FastPFor/headers/pfor.h \ + /home/kosakseb/Developer/FastPFor/headers/simdpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/pfor2008.h \ + /home/kosakseb/Developer/FastPFor/headers/VarIntG8IU.h \ + /home/kosakseb/Developer/FastPFor/headers/simdbinarypacking.h \ + /home/kosakseb/Developer/FastPFor/headers/snappydelta.h \ + /home/kosakseb/Developer/FastPFor/headers/varintgb.h \ + /home/kosakseb/Developer/FastPFor/headers/simdvariablebyte.h \ + /home/kosakseb/Developer/FastPFor/headers/streamvariablebyte.h \ + /home/kosakseb/Developer/FastPFor/headers/simdgroupsimple.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d new file mode 100644 index 0000000..604af68 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o.d @@ -0,0 +1,294 @@ +CMakeFiles/FastPFOR.dir/src/horizontalbitpacking.cpp.o: \ + /home/kosakseb/Developer/FastPFor/src/horizontalbitpacking.cpp \ + /usr/include/stdc-predef.h \ + /home/kosakseb/Developer/FastPFor/headers/horizontalbitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/errno.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/linux/falloc.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/limits /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d new file mode 100644 index 0000000..36aefcb --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o.d @@ -0,0 +1,294 @@ +CMakeFiles/FastPFOR.dir/src/simdbitpacking.cpp.o: \ + /home/kosakseb/Developer/FastPFor/src/simdbitpacking.cpp \ + /usr/include/stdc-predef.h \ + /home/kosakseb/Developer/FastPFor/headers/simdbitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/errno.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/linux/falloc.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/limits /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d new file mode 100644 index 0000000..a55e4be --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o.d @@ -0,0 +1,294 @@ +CMakeFiles/FastPFOR.dir/src/simdunalignedbitpacking.cpp.o: \ + /home/kosakseb/Developer/FastPFor/src/simdunalignedbitpacking.cpp \ + /usr/include/stdc-predef.h \ + /home/kosakseb/Developer/FastPFor/headers/usimdbitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/errno.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/include/linux/falloc.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h /usr/include/c++/11/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/uniform_int_dist.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/limits /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/cmath \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/stl_map.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_multimap.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/c++/11/cerrno /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d new file mode 100644 index 0000000..dd30590 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o.d @@ -0,0 +1,121 @@ +CMakeFiles/FastPFOR.dir/src/streamvbyte.c.o: \ + /home/kosakseb/Developer/FastPFor/src/streamvbyte.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm3dnow.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fma4intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ammintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xopintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/assert.h \ + /usr/include/string.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d new file mode 100644 index 0000000..c000f7e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR.dir/src/varintdecode.c.o.d @@ -0,0 +1,112 @@ +CMakeFiles/FastPFOR.dir/src/varintdecode.c.o: \ + /home/kosakseb/Developer/FastPFor/src/varintdecode.c \ + /usr/include/stdc-predef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm3dnow.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fma4intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ammintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xopintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake new file mode 100644 index 0000000..5103e01 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake @@ -0,0 +1,22 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d" + "/home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" "gcc" "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/build.make b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/build.make new file mode 100644 index 0000000..2e288e1 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/build.make @@ -0,0 +1,160 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/FastPFOR_unittest.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/FastPFOR_unittest.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/FastPFOR_unittest.dir/flags.make + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.s + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.s + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.s + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o: CMakeFiles/FastPFOR_unittest.dir/flags.make +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o: /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o: CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o -MF CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o -c /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp > CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.i + +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp -o CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.s + +# Object files for target FastPFOR_unittest +FastPFOR_unittest_OBJECTS = \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" \ +"CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" + +# External object files for target FastPFOR_unittest +FastPFOR_unittest_EXTERNAL_OBJECTS = + +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/build.make +FastPFOR_unittest: vendor/gtm/gtest/lib/libgtest.a +FastPFOR_unittest: libFastPFOR.a +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX executable FastPFOR_unittest" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FastPFOR_unittest.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/FastPFOR_unittest.dir/build: FastPFOR_unittest +.PHONY : CMakeFiles/FastPFOR_unittest.dir/build + +CMakeFiles/FastPFOR_unittest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/FastPFOR_unittest.dir/clean + +CMakeFiles/FastPFOR_unittest.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/FastPFOR_unittest.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake new file mode 100644 index 0000000..9896d99 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o" + "CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d" + "FastPFOR_unittest" + "FastPFOR_unittest.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/FastPFOR_unittest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make new file mode 100644 index 0000000..e1b9229 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for FastPFOR_unittest. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts new file mode 100644 index 0000000..3a971b8 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for FastPFOR_unittest. diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/depend.make b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/depend.make new file mode 100644 index 0000000..65f7109 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for FastPFOR_unittest. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/flags.make b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/flags.make new file mode 100644 index 0000000..5ae78c2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers -isystem /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/link.txt b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/link.txt new file mode 100644 index 0000000..5576a7f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o -o FastPFOR_unittest vendor/gtm/gtest/lib/libgtest.a libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/progress.make b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/progress.make new file mode 100644 index 0000000..bdc2181 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = 11 +CMAKE_PROGRESS_2 = 12 +CMAKE_PROGRESS_3 = 13 +CMAKE_PROGRESS_4 = 14 +CMAKE_PROGRESS_5 = 15 + diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d new file mode 100644 index 0000000..e72a92e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o.d @@ -0,0 +1,412 @@ +CMakeFiles/FastPFOR_unittest.dir/unittest/test_composite.cpp.o: \ + /home/kosakseb/Developer/FastPFor/unittest/test_composite.cpp \ + /usr/include/stdc-predef.h /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/pstl/pstl_config.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/pstl/glue_memory_defs.h \ + /usr/include/c++/11/pstl/execution_defs.h /usr/include/c++/11/limits \ + /usr/include/c++/11/random /usr/include/c++/11/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/specfun.h /usr/include/c++/11/tr1/gamma.tcc \ + /usr/include/c++/11/tr1/special_function_util.h \ + /usr/include/c++/11/tr1/bessel_function.tcc \ + /usr/include/c++/11/tr1/beta_function.tcc \ + /usr/include/c++/11/tr1/ell_integral.tcc \ + /usr/include/c++/11/tr1/exp_integral.tcc \ + /usr/include/c++/11/tr1/hypergeometric.tcc \ + /usr/include/c++/11/tr1/legendre_function.tcc \ + /usr/include/c++/11/tr1/modified_bessel_func.tcc \ + /usr/include/c++/11/tr1/poly_hermite.tcc \ + /usr/include/c++/11/tr1/poly_laguerre.tcc \ + /usr/include/c++/11/tr1/riemann_zeta.tcc /usr/include/c++/11/cstdlib \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h /usr/include/c++/11/string_view \ + /usr/include/c++/11/bits/string_view.tcc \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/11/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/random.h \ + /usr/include/c++/11/bits/uniform_int_dist.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/opt_random.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/include/c++/11/bits/random.tcc /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h \ + /usr/include/c++/11/pstl/glue_numeric_defs.h \ + /home/kosakseb/Developer/FastPFor/headers/codecs.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/c++/11/algorithm \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11/functional /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/node_handle.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/cassert \ + /usr/include/assert.h /usr/include/c++/11/chrono \ + /usr/include/c++/11/ratio /usr/include/c++/11/ctime \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/set /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h /usr/include/c++/11/stdexcept \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h \ + /home/kosakseb/Developer/FastPFor/headers/util.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackinghelpers.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/compositecodec.h \ + /home/kosakseb/Developer/FastPFor/headers/codecs.h \ + /home/kosakseb/Developer/FastPFor/headers/variablebyte.h \ + /home/kosakseb/Developer/FastPFor/headers/fastpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/blockpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingunaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/cpubenchmark.h \ + /home/kosakseb/Developer/FastPFor/headers/packingvectors.h \ + /home/kosakseb/Developer/FastPFor/headers/simple8b.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest.h \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/streambuf /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port.h \ + /usr/include/c++/11/iostream /usr/include/c++/11/istream \ + /usr/include/c++/11/bits/istream.tcc /usr/include/c++/11/sstream \ + /usr/include/c++/11/bits/sstream.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port-arch.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-port.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/regex.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/float.h \ + /usr/include/c++/11/iomanip /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/quoted_string.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-message.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-string.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-filepath.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-type-util.h \ + /usr/include/c++/11/cxxabi.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cxxabi_tweaks.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-death-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-death-test-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-param-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util.h \ + /usr/include/c++/11/iterator /usr/include/c++/11/bits/stream_iterator.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-linked_ptr.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util-generated.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_prod.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-test-part.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-typed-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_pred_impl.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d new file mode 100644 index 0000000..9218fd4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o.d @@ -0,0 +1,259 @@ +CMakeFiles/FastPFOR_unittest.dir/unittest/test_driver.cpp.o: \ + /home/kosakseb/Developer/FastPFor/unittest/test_driver.cpp \ + /usr/include/stdc-predef.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest.h \ + /usr/include/c++/11/limits \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/pstl/pstl_config.h /usr/include/c++/11/ostream \ + /usr/include/c++/11/ios /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h \ + /usr/include/c++/11/bits/memoryfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/11/exception /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/typeinfo /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/new /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h /usr/include/c++/11/cstdint \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/c++/11/bits/ios_base.h /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/bits/locale_classes.h /usr/include/c++/11/string \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h \ + /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/basic_string.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_construct.h /usr/include/c++/11/string_view \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/string_view.tcc \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdlib \ + /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/11/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/vector.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port.h \ + /usr/include/c++/11/stdlib.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h \ + /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/uniform_int_dist.h \ + /usr/include/c++/11/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11/functional /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/invoke.h /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/unordered_map \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/node_handle.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/bits/erase_if.h \ + /usr/include/c++/11/pstl/execution_defs.h /usr/include/c++/11/iostream \ + /usr/include/c++/11/istream /usr/include/c++/11/bits/istream.tcc \ + /usr/include/c++/11/sstream /usr/include/c++/11/bits/sstream.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port-arch.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-port.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/regex.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/float.h \ + /usr/include/c++/11/iomanip /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h /usr/include/c++/11/ctime \ + /usr/include/x86_64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/unique_ptr.h \ + /usr/include/c++/11/bits/quoted_string.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-message.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-string.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-filepath.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-type-util.h \ + /usr/include/c++/11/cxxabi.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cxxabi_tweaks.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-death-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-death-test-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-param-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util.h \ + /usr/include/c++/11/iterator /usr/include/c++/11/bits/stream_iterator.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-linked_ptr.h \ + /usr/include/assert.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util-generated.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_prod.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-test-part.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-typed-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_pred_impl.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d new file mode 100644 index 0000000..b1cb1cb --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o.d @@ -0,0 +1,411 @@ +CMakeFiles/FastPFOR_unittest.dir/unittest/test_fastpfor.cpp.o: \ + /home/kosakseb/Developer/FastPFor/unittest/test_fastpfor.cpp \ + /usr/include/stdc-predef.h /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/pstl/pstl_config.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/pstl/glue_memory_defs.h \ + /usr/include/c++/11/pstl/execution_defs.h /usr/include/c++/11/limits \ + /usr/include/c++/11/random /usr/include/c++/11/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/specfun.h /usr/include/c++/11/tr1/gamma.tcc \ + /usr/include/c++/11/tr1/special_function_util.h \ + /usr/include/c++/11/tr1/bessel_function.tcc \ + /usr/include/c++/11/tr1/beta_function.tcc \ + /usr/include/c++/11/tr1/ell_integral.tcc \ + /usr/include/c++/11/tr1/exp_integral.tcc \ + /usr/include/c++/11/tr1/hypergeometric.tcc \ + /usr/include/c++/11/tr1/legendre_function.tcc \ + /usr/include/c++/11/tr1/modified_bessel_func.tcc \ + /usr/include/c++/11/tr1/poly_hermite.tcc \ + /usr/include/c++/11/tr1/poly_laguerre.tcc \ + /usr/include/c++/11/tr1/riemann_zeta.tcc /usr/include/c++/11/cstdlib \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h /usr/include/c++/11/string_view \ + /usr/include/c++/11/bits/string_view.tcc \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/11/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/random.h \ + /usr/include/c++/11/bits/uniform_int_dist.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/opt_random.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/include/c++/11/bits/random.tcc /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h \ + /usr/include/c++/11/pstl/glue_numeric_defs.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest.h \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11/functional /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/node_handle.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/iostream \ + /usr/include/c++/11/istream /usr/include/c++/11/bits/istream.tcc \ + /usr/include/c++/11/sstream /usr/include/c++/11/bits/sstream.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port-arch.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-port.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/regex.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/float.h \ + /usr/include/c++/11/iomanip /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h /usr/include/c++/11/ctime \ + /usr/include/x86_64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/quoted_string.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-message.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-string.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-filepath.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-type-util.h \ + /usr/include/c++/11/cxxabi.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cxxabi_tweaks.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-death-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-death-test-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-param-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util.h \ + /usr/include/c++/11/iterator /usr/include/c++/11/bits/stream_iterator.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-linked_ptr.h \ + /usr/include/assert.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util-generated.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_prod.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-test-part.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-typed-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_pred_impl.h \ + /home/kosakseb/Developer/FastPFor/headers/codecs.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/linux/falloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/c++/11/cassert \ + /usr/include/c++/11/chrono /usr/include/c++/11/ratio \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h \ + /home/kosakseb/Developer/FastPFor/headers/util.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackinghelpers.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/fastpfor.h \ + /home/kosakseb/Developer/FastPFor/headers/blockpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/codecs.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingunaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackingaligned.h \ + /home/kosakseb/Developer/FastPFor/headers/cpubenchmark.h \ + /home/kosakseb/Developer/FastPFor/headers/packingvectors.h \ + /home/kosakseb/Developer/FastPFor/headers/simple8b.h diff --git a/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d new file mode 100644 index 0000000..9616dbe --- /dev/null +++ b/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o.d @@ -0,0 +1,405 @@ +CMakeFiles/FastPFOR_unittest.dir/unittest/test_variablebyte.cpp.o: \ + /home/kosakseb/Developer/FastPFor/unittest/test_variablebyte.cpp \ + /usr/include/stdc-predef.h /usr/include/c++/11/vector \ + /usr/include/c++/11/bits/stl_algobase.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/os_defines.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cpu_defines.h \ + /usr/include/c++/11/pstl/pstl_config.h \ + /usr/include/c++/11/bits/functexcept.h \ + /usr/include/c++/11/bits/exception_defines.h \ + /usr/include/c++/11/bits/cpp_type_traits.h \ + /usr/include/c++/11/ext/type_traits.h \ + /usr/include/c++/11/ext/numeric_traits.h \ + /usr/include/c++/11/bits/stl_pair.h /usr/include/c++/11/bits/move.h \ + /usr/include/c++/11/type_traits \ + /usr/include/c++/11/bits/stl_iterator_base_types.h \ + /usr/include/c++/11/bits/stl_iterator_base_funcs.h \ + /usr/include/c++/11/bits/concept_check.h \ + /usr/include/c++/11/debug/assertions.h \ + /usr/include/c++/11/bits/stl_iterator.h \ + /usr/include/c++/11/bits/ptr_traits.h /usr/include/c++/11/debug/debug.h \ + /usr/include/c++/11/bits/predefined_ops.h \ + /usr/include/c++/11/bits/allocator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++allocator.h \ + /usr/include/c++/11/ext/new_allocator.h /usr/include/c++/11/new \ + /usr/include/c++/11/bits/exception.h \ + /usr/include/c++/11/bits/memoryfwd.h \ + /usr/include/c++/11/bits/stl_construct.h \ + /usr/include/c++/11/bits/stl_uninitialized.h \ + /usr/include/c++/11/ext/alloc_traits.h \ + /usr/include/c++/11/bits/alloc_traits.h \ + /usr/include/c++/11/bits/stl_vector.h \ + /usr/include/c++/11/initializer_list \ + /usr/include/c++/11/bits/stl_bvector.h \ + /usr/include/c++/11/bits/functional_hash.h \ + /usr/include/c++/11/bits/hash_bytes.h \ + /usr/include/c++/11/bits/range_access.h \ + /usr/include/c++/11/bits/vector.tcc /usr/include/c++/11/memory \ + /usr/include/c++/11/bits/stl_tempbuf.h \ + /usr/include/c++/11/bits/stl_raw_storage_iter.h \ + /usr/include/c++/11/bits/align.h /usr/include/c++/11/bit \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/c++/11/bits/uses_allocator.h \ + /usr/include/c++/11/bits/unique_ptr.h /usr/include/c++/11/utility \ + /usr/include/c++/11/bits/stl_relops.h /usr/include/c++/11/tuple \ + /usr/include/c++/11/array /usr/include/c++/11/bits/invoke.h \ + /usr/include/c++/11/bits/stl_function.h \ + /usr/include/c++/11/backward/binders.h \ + /usr/include/c++/11/bits/shared_ptr.h /usr/include/c++/11/iosfwd \ + /usr/include/c++/11/bits/stringfwd.h /usr/include/c++/11/bits/postypes.h \ + /usr/include/c++/11/cwchar /usr/include/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/c++/11/bits/shared_ptr_base.h /usr/include/c++/11/typeinfo \ + /usr/include/c++/11/bits/allocated_ptr.h \ + /usr/include/c++/11/bits/refwrap.h \ + /usr/include/c++/11/ext/aligned_buffer.h \ + /usr/include/c++/11/ext/atomicity.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/gthr-default.h \ + /usr/include/pthread.h /usr/include/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/sched.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ + /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/setjmp.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/atomic_word.h \ + /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ + /usr/include/c++/11/ext/concurrence.h /usr/include/c++/11/exception \ + /usr/include/c++/11/bits/exception_ptr.h \ + /usr/include/c++/11/bits/cxxabi_init_exception.h \ + /usr/include/c++/11/bits/nested_exception.h \ + /usr/include/c++/11/bits/shared_ptr_atomic.h \ + /usr/include/c++/11/bits/atomic_base.h \ + /usr/include/c++/11/bits/atomic_lockfree_defines.h \ + /usr/include/c++/11/backward/auto_ptr.h \ + /usr/include/c++/11/pstl/glue_memory_defs.h \ + /usr/include/c++/11/pstl/execution_defs.h /usr/include/c++/11/limits \ + /usr/include/c++/11/random /usr/include/c++/11/cmath /usr/include/math.h \ + /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ + /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ + /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ + /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ + /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ + /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ + /usr/include/c++/11/bits/std_abs.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/11/bits/specfun.h /usr/include/c++/11/tr1/gamma.tcc \ + /usr/include/c++/11/tr1/special_function_util.h \ + /usr/include/c++/11/tr1/bessel_function.tcc \ + /usr/include/c++/11/tr1/beta_function.tcc \ + /usr/include/c++/11/tr1/ell_integral.tcc \ + /usr/include/c++/11/tr1/exp_integral.tcc \ + /usr/include/c++/11/tr1/hypergeometric.tcc \ + /usr/include/c++/11/tr1/legendre_function.tcc \ + /usr/include/c++/11/tr1/modified_bessel_func.tcc \ + /usr/include/c++/11/tr1/poly_hermite.tcc \ + /usr/include/c++/11/tr1/poly_laguerre.tcc \ + /usr/include/c++/11/tr1/riemann_zeta.tcc /usr/include/c++/11/cstdlib \ + /usr/include/c++/11/string /usr/include/c++/11/bits/char_traits.h \ + /usr/include/c++/11/cstdint /usr/include/c++/11/bits/localefwd.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/c++locale.h \ + /usr/include/c++/11/clocale /usr/include/locale.h \ + /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/11/cctype \ + /usr/include/ctype.h /usr/include/c++/11/bits/ostream_insert.h \ + /usr/include/c++/11/bits/cxxabi_forced.h \ + /usr/include/c++/11/bits/basic_string.h /usr/include/c++/11/string_view \ + /usr/include/c++/11/bits/string_view.tcc \ + /usr/include/c++/11/ext/string_conversions.h /usr/include/c++/11/cstdio \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/c++/11/cerrno /usr/include/errno.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/c++/11/bits/charconv.h \ + /usr/include/c++/11/bits/basic_string.tcc \ + /usr/include/c++/11/bits/random.h \ + /usr/include/c++/11/bits/uniform_int_dist.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/opt_random.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/emmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mm_malloc.h \ + /usr/include/c++/11/stdlib.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitintrin.h \ + /usr/include/c++/11/bits/random.tcc /usr/include/c++/11/numeric \ + /usr/include/c++/11/bits/stl_numeric.h \ + /usr/include/c++/11/pstl/glue_numeric_defs.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest.h \ + /usr/include/c++/11/ostream /usr/include/c++/11/ios \ + /usr/include/c++/11/bits/ios_base.h \ + /usr/include/c++/11/bits/locale_classes.h \ + /usr/include/c++/11/bits/locale_classes.tcc \ + /usr/include/c++/11/system_error \ + /usr/include/x86_64-linux-gnu/c++/11/bits/error_constants.h \ + /usr/include/c++/11/stdexcept /usr/include/c++/11/streambuf \ + /usr/include/c++/11/bits/streambuf.tcc \ + /usr/include/c++/11/bits/basic_ios.h \ + /usr/include/c++/11/bits/locale_facets.h /usr/include/c++/11/cwctype \ + /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_base.h \ + /usr/include/c++/11/bits/streambuf_iterator.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/ctype_inline.h \ + /usr/include/c++/11/bits/locale_facets.tcc \ + /usr/include/c++/11/bits/basic_ios.tcc \ + /usr/include/c++/11/bits/ostream.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/c++/11/algorithm /usr/include/c++/11/bits/stl_algo.h \ + /usr/include/c++/11/bits/algorithmfwd.h \ + /usr/include/c++/11/bits/stl_heap.h \ + /usr/include/c++/11/pstl/glue_algorithm_defs.h \ + /usr/include/c++/11/functional /usr/include/c++/11/bits/std_function.h \ + /usr/include/c++/11/unordered_map /usr/include/c++/11/bits/hashtable.h \ + /usr/include/c++/11/bits/hashtable_policy.h \ + /usr/include/c++/11/bits/enable_special_members.h \ + /usr/include/c++/11/bits/node_handle.h \ + /usr/include/c++/11/bits/unordered_map.h \ + /usr/include/c++/11/bits/erase_if.h /usr/include/c++/11/iostream \ + /usr/include/c++/11/istream /usr/include/c++/11/bits/istream.tcc \ + /usr/include/c++/11/sstream /usr/include/c++/11/bits/sstream.tcc \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-port-arch.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-port.h \ + /usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/include/linux/close_range.h /usr/include/regex.h \ + /usr/include/x86_64-linux-gnu/sys/wait.h /usr/include/signal.h \ + /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ + /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ + /usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ + /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ + /usr/include/x86_64-linux-gnu/bits/sigaction.h \ + /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ + /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ + /usr/include/x86_64-linux-gnu/sys/ucontext.h \ + /usr/include/x86_64-linux-gnu/bits/sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigstksz.h \ + /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ + /usr/include/x86_64-linux-gnu/bits/sigthread.h \ + /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/float.h \ + /usr/include/c++/11/iomanip /usr/include/c++/11/locale \ + /usr/include/c++/11/bits/locale_facets_nonio.h /usr/include/c++/11/ctime \ + /usr/include/x86_64-linux-gnu/c++/11/bits/time_members.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/messages_members.h \ + /usr/include/libintl.h /usr/include/c++/11/bits/codecvt.h \ + /usr/include/c++/11/bits/locale_facets_nonio.tcc \ + /usr/include/c++/11/bits/locale_conv.h \ + /usr/include/c++/11/bits/quoted_string.h /usr/include/c++/11/map \ + /usr/include/c++/11/bits/stl_tree.h /usr/include/c++/11/bits/stl_map.h \ + /usr/include/c++/11/bits/stl_multimap.h /usr/include/c++/11/set \ + /usr/include/c++/11/bits/stl_set.h \ + /usr/include/c++/11/bits/stl_multiset.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-message.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-string.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-filepath.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-type-util.h \ + /usr/include/c++/11/cxxabi.h \ + /usr/include/x86_64-linux-gnu/c++/11/bits/cxxabi_tweaks.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-death-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-death-test-internal.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-param-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util.h \ + /usr/include/c++/11/iterator /usr/include/c++/11/bits/stream_iterator.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-linked_ptr.h \ + /usr/include/assert.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/custom/gtest-printers.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/internal/gtest-param-util-generated.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_prod.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-test-part.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest-typed-test.h \ + /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest/include/gtest/gtest_pred_impl.h \ + /home/kosakseb/Developer/FastPFor/headers/codecs.h \ + /home/kosakseb/Developer/FastPFor/headers/common.h /usr/include/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl.h \ + /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ + /usr/include/linux/falloc.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/immintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/x86gprintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/ia32intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/adxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/bmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/cldemoteintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clflushoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clwbintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/clzerointrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/enqcmdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fxsrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lzcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/lwpintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/movdirintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/mwaitxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pconfigintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/popcntintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/pkuintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rdseedintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/rtmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/serializeintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/sgxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tbmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tsxldtrkintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/uintrintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/waitpkgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wbnoinvdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavecintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsaveoptintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xsavesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/xtestintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/hresetintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/tmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/smmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/wmmintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avxvnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512fintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512erintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512pfintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512cdintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512dqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vlbwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vldqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512ifmavlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmiintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124fmapsintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx5124vnniwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vbmi2vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vnnivlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vpopcntdqvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bitalgintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512vp2intersectvlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/shaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/fmaintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/f16cintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/gfniintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vaesintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/vpclmulqdqintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16vlintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/avx512bf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxtileintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxint8intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/amxbf16intrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/prfchwintrin.h \ + /usr/lib/gcc/x86_64-linux-gnu/11/include/keylockerintrin.h \ + /usr/include/x86_64-linux-gnu/sys/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman.h \ + /usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h \ + /usr/include/x86_64-linux-gnu/bits/mman-linux.h \ + /usr/include/x86_64-linux-gnu/bits/mman-shared.h \ + /usr/include/x86_64-linux-gnu/sys/resource.h \ + /usr/include/x86_64-linux-gnu/bits/resource.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h \ + /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/c++/11/cassert \ + /usr/include/c++/11/chrono /usr/include/c++/11/ratio \ + /usr/include/c++/11/bits/parse_numbers.h /usr/include/c++/11/queue \ + /usr/include/c++/11/deque /usr/include/c++/11/bits/stl_deque.h \ + /usr/include/c++/11/bits/deque.tcc /usr/include/c++/11/bits/stl_queue.h \ + /usr/include/c++/11/unordered_set \ + /usr/include/c++/11/bits/unordered_set.h \ + /home/kosakseb/Developer/FastPFor/headers/util.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpackinghelpers.h \ + /home/kosakseb/Developer/FastPFor/headers/bitpacking.h \ + /home/kosakseb/Developer/FastPFor/headers/variablebyte.h \ + /home/kosakseb/Developer/FastPFor/headers/codecs.h diff --git a/cmake-build-debug/CMakeFiles/Makefile.cmake b/cmake-build-debug/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..91d3e2c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/Makefile.cmake @@ -0,0 +1,118 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/kosakseb/Developer/FastPFor/CMakeLists.txt" + "/home/kosakseb/Developer/FastPFor/FastPFORConfig.cmake.in" + "CMakeFiles/3.27.8/CMakeCCompiler.cmake" + "CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" + "CMakeFiles/3.27.8/CMakeSystem.cmake" + "vendor/gtm/tmp/gmock_src-mkdirs.cmake" + "vendor/gtm/tmp/googletest-mkdirs.cmake" + "vendor/gtm/tmp/gtest_src-mkdirs.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/AppendCompilerFlags.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/DetectCPUFeatures.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/Findsnappy.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/environment.cmake" + "/home/kosakseb/Developer/FastPFor/cmake_modules/googletest.cmake" + "/home/kosakseb/Developer/FastPFor/fastpfor.pc.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakePackageConfigHelpers.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCSourceCompiles.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXCompilerFlag.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckCXXSourceCompiles.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckIncludeFile.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/CheckLibraryExists.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/PatchInfo.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/RepositoryInfo.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/UpdateInfo.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/cfgcmd.txt.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/gitclone.cmake.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/mkdirs.cmake.in" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/ExternalProject/shared_internal_commands.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindGit.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindPackageMessage.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/FindThreads.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/GNUInstallDirs.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckCompilerFlag.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckFlagCommonConfig.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Internal/CheckSourceCompiles.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-C.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU-CXX.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-GNU.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux-Initialize.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/Linux.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/Platform/UnixPaths.cmake" + "/snap/clion/261/bin/cmake/linux/x64/share/cmake-3.27/Modules/WriteBasicConfigVersionFile.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "vendor/gtm/tmp/googletest-mkdirs.cmake" + "vendor/gtm/tmp/googletest-gitclone.cmake" + "vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt" + "vendor/gtm/src/googletest-stamp/googletest-update-info.txt" + "vendor/gtm/src/googletest-stamp/googletest-patch-info.txt" + "vendor/gtm/tmp/googletest-cfgcmd.txt" + "vendor/gtm/tmp/gtest_src-mkdirs.cmake" + "vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt" + "vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt" + "vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt" + "vendor/gtm/tmp/gtest_src-cfgcmd.txt" + "vendor/gtm/tmp/gmock_src-mkdirs.cmake" + "vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt" + "vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt" + "vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt" + "vendor/gtm/tmp/gmock_src-cfgcmd.txt" + "FastPFORConfig.cmake" + "FastPFORConfigVersion.cmake" + "fastpfor.pc" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/FastPFOR.dir/DependInfo.cmake" + "CMakeFiles/gapstats.dir/DependInfo.cmake" + "CMakeFiles/partitionbylength.dir/DependInfo.cmake" + "CMakeFiles/csv2maropu.dir/DependInfo.cmake" + "CMakeFiles/entropy.dir/DependInfo.cmake" + "CMakeFiles/benchbitpacking.dir/DependInfo.cmake" + "CMakeFiles/codecssnappy.dir/DependInfo.cmake" + "CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake" + "CMakeFiles/googletest.dir/DependInfo.cmake" + "CMakeFiles/gtest_src.dir/DependInfo.cmake" + "CMakeFiles/gmock_src.dir/DependInfo.cmake" + "CMakeFiles/codecs.dir/DependInfo.cmake" + "CMakeFiles/example.dir/DependInfo.cmake" + "CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake" + "CMakeFiles/unit.dir/DependInfo.cmake" + "CMakeFiles/check.dir/DependInfo.cmake" + "CMakeFiles/FastPFOR_unittest.dir/DependInfo.cmake" + ) diff --git a/cmake-build-debug/CMakeFiles/Makefile2 b/cmake-build-debug/CMakeFiles/Makefile2 new file mode 100644 index 0000000..c4521a5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/Makefile2 @@ -0,0 +1,560 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/FastPFOR.dir/all +all: CMakeFiles/gapstats.dir/all +all: CMakeFiles/partitionbylength.dir/all +all: CMakeFiles/csv2maropu.dir/all +all: CMakeFiles/entropy.dir/all +all: CMakeFiles/benchbitpacking.dir/all +all: CMakeFiles/codecssnappy.dir/all +all: CMakeFiles/inmemorybenchmarksnappy.dir/all +all: CMakeFiles/googletest.dir/all +all: CMakeFiles/gtest_src.dir/all +all: CMakeFiles/gmock_src.dir/all +all: CMakeFiles/codecs.dir/all +all: CMakeFiles/example.dir/all +all: CMakeFiles/inmemorybenchmark.dir/all +all: CMakeFiles/unit.dir/all +all: CMakeFiles/FastPFOR_unittest.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/FastPFOR.dir/clean +clean: CMakeFiles/gapstats.dir/clean +clean: CMakeFiles/partitionbylength.dir/clean +clean: CMakeFiles/csv2maropu.dir/clean +clean: CMakeFiles/entropy.dir/clean +clean: CMakeFiles/benchbitpacking.dir/clean +clean: CMakeFiles/codecssnappy.dir/clean +clean: CMakeFiles/inmemorybenchmarksnappy.dir/clean +clean: CMakeFiles/googletest.dir/clean +clean: CMakeFiles/gtest_src.dir/clean +clean: CMakeFiles/gmock_src.dir/clean +clean: CMakeFiles/codecs.dir/clean +clean: CMakeFiles/example.dir/clean +clean: CMakeFiles/inmemorybenchmark.dir/clean +clean: CMakeFiles/unit.dir/clean +clean: CMakeFiles/check.dir/clean +clean: CMakeFiles/FastPFOR_unittest.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/FastPFOR.dir + +# All Build rule for target. +CMakeFiles/FastPFOR.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target FastPFOR" +.PHONY : CMakeFiles/FastPFOR.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/FastPFOR.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 10 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/FastPFOR.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/FastPFOR.dir/rule + +# Convenience name for target. +FastPFOR: CMakeFiles/FastPFOR.dir/rule +.PHONY : FastPFOR + +# clean rule for target. +CMakeFiles/FastPFOR.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR.dir/build.make CMakeFiles/FastPFOR.dir/clean +.PHONY : CMakeFiles/FastPFOR.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gapstats.dir + +# All Build rule for target. +CMakeFiles/gapstats.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=28,29 "Built target gapstats" +.PHONY : CMakeFiles/gapstats.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gapstats.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gapstats.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/gapstats.dir/rule + +# Convenience name for target. +gapstats: CMakeFiles/gapstats.dir/rule +.PHONY : gapstats + +# clean rule for target. +CMakeFiles/gapstats.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gapstats.dir/build.make CMakeFiles/gapstats.dir/clean +.PHONY : CMakeFiles/gapstats.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/partitionbylength.dir + +# All Build rule for target. +CMakeFiles/partitionbylength.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=58,59 "Built target partitionbylength" +.PHONY : CMakeFiles/partitionbylength.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/partitionbylength.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/partitionbylength.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/partitionbylength.dir/rule + +# Convenience name for target. +partitionbylength: CMakeFiles/partitionbylength.dir/rule +.PHONY : partitionbylength + +# clean rule for target. +CMakeFiles/partitionbylength.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/partitionbylength.dir/build.make CMakeFiles/partitionbylength.dir/clean +.PHONY : CMakeFiles/partitionbylength.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/csv2maropu.dir + +# All Build rule for target. +CMakeFiles/csv2maropu.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=22,23 "Built target csv2maropu" +.PHONY : CMakeFiles/csv2maropu.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/csv2maropu.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/csv2maropu.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/csv2maropu.dir/rule + +# Convenience name for target. +csv2maropu: CMakeFiles/csv2maropu.dir/rule +.PHONY : csv2maropu + +# clean rule for target. +CMakeFiles/csv2maropu.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/csv2maropu.dir/build.make CMakeFiles/csv2maropu.dir/clean +.PHONY : CMakeFiles/csv2maropu.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/entropy.dir + +# All Build rule for target. +CMakeFiles/entropy.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=24,25 "Built target entropy" +.PHONY : CMakeFiles/entropy.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/entropy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/entropy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/entropy.dir/rule + +# Convenience name for target. +entropy: CMakeFiles/entropy.dir/rule +.PHONY : entropy + +# clean rule for target. +CMakeFiles/entropy.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/entropy.dir/build.make CMakeFiles/entropy.dir/clean +.PHONY : CMakeFiles/entropy.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/benchbitpacking.dir + +# All Build rule for target. +CMakeFiles/benchbitpacking.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=16,17 "Built target benchbitpacking" +.PHONY : CMakeFiles/benchbitpacking.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/benchbitpacking.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/benchbitpacking.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/benchbitpacking.dir/rule + +# Convenience name for target. +benchbitpacking: CMakeFiles/benchbitpacking.dir/rule +.PHONY : benchbitpacking + +# clean rule for target. +CMakeFiles/benchbitpacking.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/benchbitpacking.dir/build.make CMakeFiles/benchbitpacking.dir/clean +.PHONY : CMakeFiles/benchbitpacking.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/codecssnappy.dir + +# All Build rule for target. +CMakeFiles/codecssnappy.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=20,21 "Built target codecssnappy" +.PHONY : CMakeFiles/codecssnappy.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/codecssnappy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/codecssnappy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/codecssnappy.dir/rule + +# Convenience name for target. +codecssnappy: CMakeFiles/codecssnappy.dir/rule +.PHONY : codecssnappy + +# clean rule for target. +CMakeFiles/codecssnappy.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecssnappy.dir/build.make CMakeFiles/codecssnappy.dir/clean +.PHONY : CMakeFiles/codecssnappy.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/inmemorybenchmarksnappy.dir + +# All Build rule for target. +CMakeFiles/inmemorybenchmarksnappy.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=56,57 "Built target inmemorybenchmarksnappy" +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/inmemorybenchmarksnappy.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/inmemorybenchmarksnappy.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/rule + +# Convenience name for target. +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/rule +.PHONY : inmemorybenchmarksnappy + +# clean rule for target. +CMakeFiles/inmemorybenchmarksnappy.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmarksnappy.dir/build.make CMakeFiles/inmemorybenchmarksnappy.dir/clean +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/googletest.dir + +# All Build rule for target. +CMakeFiles/googletest.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=38,39,40,41,42,43,44,45 "Built target googletest" +.PHONY : CMakeFiles/googletest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/googletest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 8 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/googletest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/googletest.dir/rule + +# Convenience name for target. +googletest: CMakeFiles/googletest.dir/rule +.PHONY : googletest + +# clean rule for target. +CMakeFiles/googletest.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/clean +.PHONY : CMakeFiles/googletest.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gtest_src.dir + +# All Build rule for target. +CMakeFiles/gtest_src.dir/all: CMakeFiles/googletest.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_src.dir/build.make CMakeFiles/gtest_src.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_src.dir/build.make CMakeFiles/gtest_src.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=46,47,48,49,50,51,52,53 "Built target gtest_src" +.PHONY : CMakeFiles/gtest_src.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gtest_src.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 16 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gtest_src.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/gtest_src.dir/rule + +# Convenience name for target. +gtest_src: CMakeFiles/gtest_src.dir/rule +.PHONY : gtest_src + +# clean rule for target. +CMakeFiles/gtest_src.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gtest_src.dir/build.make CMakeFiles/gtest_src.dir/clean +.PHONY : CMakeFiles/gtest_src.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/gmock_src.dir + +# All Build rule for target. +CMakeFiles/gmock_src.dir/all: CMakeFiles/googletest.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/gmock_src.dir/build.make CMakeFiles/gmock_src.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/gmock_src.dir/build.make CMakeFiles/gmock_src.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=30,31,32,33,34,35,36,37 "Built target gmock_src" +.PHONY : CMakeFiles/gmock_src.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/gmock_src.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 16 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/gmock_src.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/gmock_src.dir/rule + +# Convenience name for target. +gmock_src: CMakeFiles/gmock_src.dir/rule +.PHONY : gmock_src + +# clean rule for target. +CMakeFiles/gmock_src.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/gmock_src.dir/build.make CMakeFiles/gmock_src.dir/clean +.PHONY : CMakeFiles/gmock_src.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/codecs.dir + +# All Build rule for target. +CMakeFiles/codecs.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=18,19 "Built target codecs" +.PHONY : CMakeFiles/codecs.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/codecs.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/codecs.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/codecs.dir/rule + +# Convenience name for target. +codecs: CMakeFiles/codecs.dir/rule +.PHONY : codecs + +# clean rule for target. +CMakeFiles/codecs.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/codecs.dir/build.make CMakeFiles/codecs.dir/clean +.PHONY : CMakeFiles/codecs.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/example.dir + +# All Build rule for target. +CMakeFiles/example.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=26,27 "Built target example" +.PHONY : CMakeFiles/example.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/example.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/example.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/example.dir/rule + +# Convenience name for target. +example: CMakeFiles/example.dir/rule +.PHONY : example + +# clean rule for target. +CMakeFiles/example.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/clean +.PHONY : CMakeFiles/example.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/inmemorybenchmark.dir + +# All Build rule for target. +CMakeFiles/inmemorybenchmark.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=54,55 "Built target inmemorybenchmark" +.PHONY : CMakeFiles/inmemorybenchmark.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/inmemorybenchmark.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/inmemorybenchmark.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/inmemorybenchmark.dir/rule + +# Convenience name for target. +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/rule +.PHONY : inmemorybenchmark + +# clean rule for target. +CMakeFiles/inmemorybenchmark.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/inmemorybenchmark.dir/build.make CMakeFiles/inmemorybenchmark.dir/clean +.PHONY : CMakeFiles/inmemorybenchmark.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/unit.dir + +# All Build rule for target. +CMakeFiles/unit.dir/all: CMakeFiles/FastPFOR.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=60,61 "Built target unit" +.PHONY : CMakeFiles/unit.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/unit.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/unit.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/unit.dir/rule + +# Convenience name for target. +unit: CMakeFiles/unit.dir/rule +.PHONY : unit + +# clean rule for target. +CMakeFiles/unit.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/unit.dir/build.make CMakeFiles/unit.dir/clean +.PHONY : CMakeFiles/unit.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/check.dir + +# All Build rule for target. +CMakeFiles/check.dir/all: CMakeFiles/unit.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num= "Built target check" +.PHONY : CMakeFiles/check.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/check.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/check.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/check.dir/rule + +# Convenience name for target. +check: CMakeFiles/check.dir/rule +.PHONY : check + +# clean rule for target. +CMakeFiles/check.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/clean +.PHONY : CMakeFiles/check.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/FastPFOR_unittest.dir + +# All Build rule for target. +CMakeFiles/FastPFOR_unittest.dir/all: CMakeFiles/FastPFOR.dir/all +CMakeFiles/FastPFOR_unittest.dir/all: CMakeFiles/gtest_src.dir/all + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=11,12,13,14,15 "Built target FastPFOR_unittest" +.PHONY : CMakeFiles/FastPFOR_unittest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/FastPFOR_unittest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 31 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/FastPFOR_unittest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles 0 +.PHONY : CMakeFiles/FastPFOR_unittest.dir/rule + +# Convenience name for target. +FastPFOR_unittest: CMakeFiles/FastPFOR_unittest.dir/rule +.PHONY : FastPFOR_unittest + +# clean rule for target. +CMakeFiles/FastPFOR_unittest.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/FastPFOR_unittest.dir/build.make CMakeFiles/FastPFOR_unittest.dir/clean +.PHONY : CMakeFiles/FastPFOR_unittest.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/cmake-build-debug/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..a1b9f27 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,24 @@ +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/FastPFOR.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gapstats.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/partitionbylength.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/csv2maropu.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/entropy.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/benchbitpacking.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/codecssnappy.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/codecs.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/example.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/unit.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/check.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/FastPFOR_unittest.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/test.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/edit_cache.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/rebuild_cache.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/list_install_components.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/install.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/install/local.dir +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/install/strip.dir diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/DependInfo.cmake new file mode 100644 index 0000000..6bb6900 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp" "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" "gcc" "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/build.make b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/build.make new file mode 100644 index 0000000..5106bad --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/benchbitpacking.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/benchbitpacking.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/benchbitpacking.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/benchbitpacking.dir/flags.make + +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o: CMakeFiles/benchbitpacking.dir/flags.make +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o: /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o: CMakeFiles/benchbitpacking.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o -MF CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o.d -o CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o -c /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp + +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp > CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.i + +CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/benchbitpacking.cpp -o CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.s + +# Object files for target benchbitpacking +benchbitpacking_OBJECTS = \ +"CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" + +# External object files for target benchbitpacking +benchbitpacking_EXTERNAL_OBJECTS = + +benchbitpacking: CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o +benchbitpacking: CMakeFiles/benchbitpacking.dir/build.make +benchbitpacking: libFastPFOR.a +benchbitpacking: CMakeFiles/benchbitpacking.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable benchbitpacking" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/benchbitpacking.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/benchbitpacking.dir/build: benchbitpacking +.PHONY : CMakeFiles/benchbitpacking.dir/build + +CMakeFiles/benchbitpacking.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/benchbitpacking.dir/cmake_clean.cmake +.PHONY : CMakeFiles/benchbitpacking.dir/clean + +CMakeFiles/benchbitpacking.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/benchbitpacking.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/benchbitpacking.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake new file mode 100644 index 0000000..f8ef77b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o" + "CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o.d" + "benchbitpacking" + "benchbitpacking.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/benchbitpacking.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.make new file mode 100644 index 0000000..594511f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for benchbitpacking. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.ts new file mode 100644 index 0000000..efb77a9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for benchbitpacking. diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/depend.make b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/depend.make new file mode 100644 index 0000000..2307861 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for benchbitpacking. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/flags.make b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/link.txt b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/link.txt new file mode 100644 index 0000000..05a0992 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/benchbitpacking.dir/src/benchbitpacking.cpp.o -o benchbitpacking libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/benchbitpacking.dir/progress.make b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/progress.make new file mode 100644 index 0000000..d7d1be2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/benchbitpacking.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 16 +CMAKE_PROGRESS_2 = 17 + diff --git a/cmake-build-debug/CMakeFiles/check.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/check.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/check.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/check.dir/build.make b/cmake-build-debug/CMakeFiles/check.dir/build.make new file mode 100644 index 0000000..d3c71c7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/check.dir/build.make @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Utility rule file for check. + +# Include any custom commands dependencies for this target. +include CMakeFiles/check.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/check.dir/progress.make + +CMakeFiles/check: unit + ./unit + +check: CMakeFiles/check +check: CMakeFiles/check.dir/build.make +.PHONY : check + +# Rule to build all files generated by this target. +CMakeFiles/check.dir/build: check +.PHONY : CMakeFiles/check.dir/build + +CMakeFiles/check.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/check.dir/cmake_clean.cmake +.PHONY : CMakeFiles/check.dir/clean + +CMakeFiles/check.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/check.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/check.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/check.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/check.dir/cmake_clean.cmake new file mode 100644 index 0000000..97eb243 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/check.dir/cmake_clean.cmake @@ -0,0 +1,8 @@ +file(REMOVE_RECURSE + "CMakeFiles/check" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/check.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/check.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/check.dir/compiler_depend.make new file mode 100644 index 0000000..12fa6bb --- /dev/null +++ b/cmake-build-debug/CMakeFiles/check.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for check. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/check.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/check.dir/compiler_depend.ts new file mode 100644 index 0000000..2aa2de6 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/check.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for check. diff --git a/cmake-build-debug/CMakeFiles/check.dir/progress.make b/cmake-build-debug/CMakeFiles/check.dir/progress.make new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/check.dir/progress.make @@ -0,0 +1 @@ + diff --git a/cmake-build-debug/CMakeFiles/clion-Debug-log.txt b/cmake-build-debug/CMakeFiles/clion-Debug-log.txt new file mode 100644 index 0000000..2b5a6f9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/clion-Debug-log.txt @@ -0,0 +1,21 @@ +/snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_BUILD_TYPE=Debug -S /home/kosakseb/Developer/FastPFor -B /home/kosakseb/Developer/FastPFor/cmake-build-debug +CMake Deprecation Warning at CMakeLists.txt:6 (cmake_minimum_required): + Compatibility with CMake < 3.5 will be removed from a future version of + CMake. + + Update the VERSION argument value or use a ... suffix to tell + CMake that the project does not need compatibility with older versions. + + +-- CMAKE_BUILD_TYPE: Debug +Building for architecture: x86_64 +-- CMAKE_SIZEOF_VOID_P (should be 8): 8 +-- Good. You appear to have a 64-bit system. +-- CMAKE_CXX_COMPILER_ID: GNU +-- CMAKE_C_COMPILER: /usr/bin/cc +-- CXX_COMPILER_VERSION: 11 +-- SSE 4.2 support detected +-- Snappy was found. Building additional targets codecssnappy and inmemorybenchmarksnappy. +-- Configuring done (0.0s) +-- Generating done (0.0s) +-- Build files have been written to: /home/kosakseb/Developer/FastPFor/cmake-build-debug diff --git a/cmake-build-debug/CMakeFiles/clion-environment.txt b/cmake-build-debug/CMakeFiles/clion-environment.txt new file mode 100644 index 0000000..270d93c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/clion-environment.txt @@ -0,0 +1,3 @@ +ToolSet: 1.0 (local)Options: + +Options: \ No newline at end of file diff --git a/cmake-build-debug/CMakeFiles/cmake.check_cache b/cmake-build-debug/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/codecs.dir/DependInfo.cmake new file mode 100644 index 0000000..4c260ba --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/codecs.cpp" "CMakeFiles/codecs.dir/src/codecs.cpp.o" "gcc" "CMakeFiles/codecs.dir/src/codecs.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/build.make b/cmake-build-debug/CMakeFiles/codecs.dir/build.make new file mode 100644 index 0000000..271a22c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/codecs.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/codecs.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/codecs.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/codecs.dir/flags.make + +CMakeFiles/codecs.dir/src/codecs.cpp.o: CMakeFiles/codecs.dir/flags.make +CMakeFiles/codecs.dir/src/codecs.cpp.o: /home/kosakseb/Developer/FastPFor/src/codecs.cpp +CMakeFiles/codecs.dir/src/codecs.cpp.o: CMakeFiles/codecs.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/codecs.dir/src/codecs.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/codecs.dir/src/codecs.cpp.o -MF CMakeFiles/codecs.dir/src/codecs.cpp.o.d -o CMakeFiles/codecs.dir/src/codecs.cpp.o -c /home/kosakseb/Developer/FastPFor/src/codecs.cpp + +CMakeFiles/codecs.dir/src/codecs.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/codecs.dir/src/codecs.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/codecs.cpp > CMakeFiles/codecs.dir/src/codecs.cpp.i + +CMakeFiles/codecs.dir/src/codecs.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/codecs.dir/src/codecs.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/codecs.cpp -o CMakeFiles/codecs.dir/src/codecs.cpp.s + +# Object files for target codecs +codecs_OBJECTS = \ +"CMakeFiles/codecs.dir/src/codecs.cpp.o" + +# External object files for target codecs +codecs_EXTERNAL_OBJECTS = + +codecs: CMakeFiles/codecs.dir/src/codecs.cpp.o +codecs: CMakeFiles/codecs.dir/build.make +codecs: libFastPFOR.a +codecs: CMakeFiles/codecs.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable codecs" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/codecs.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/codecs.dir/build: codecs +.PHONY : CMakeFiles/codecs.dir/build + +CMakeFiles/codecs.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/codecs.dir/cmake_clean.cmake +.PHONY : CMakeFiles/codecs.dir/clean + +CMakeFiles/codecs.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/codecs.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/codecs.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/codecs.dir/cmake_clean.cmake new file mode 100644 index 0000000..6f5438c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/codecs.dir/src/codecs.cpp.o" + "CMakeFiles/codecs.dir/src/codecs.cpp.o.d" + "codecs" + "codecs.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/codecs.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.make new file mode 100644 index 0000000..f8bd0b4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for codecs. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.ts new file mode 100644 index 0000000..9f7475d --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for codecs. diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/depend.make b/cmake-build-debug/CMakeFiles/codecs.dir/depend.make new file mode 100644 index 0000000..955c7d3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for codecs. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/flags.make b/cmake-build-debug/CMakeFiles/codecs.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/link.txt b/cmake-build-debug/CMakeFiles/codecs.dir/link.txt new file mode 100644 index 0000000..8b1b320 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/codecs.dir/src/codecs.cpp.o -o codecs libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/codecs.dir/progress.make b/cmake-build-debug/CMakeFiles/codecs.dir/progress.make new file mode 100644 index 0000000..2b041ba --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecs.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 18 +CMAKE_PROGRESS_2 = 19 + diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/codecssnappy.dir/DependInfo.cmake new file mode 100644 index 0000000..42b8095 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/codecs.cpp" "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" "gcc" "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/build.make b/cmake-build-debug/CMakeFiles/codecssnappy.dir/build.make new file mode 100644 index 0000000..511eebd --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/build.make @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/codecssnappy.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/codecssnappy.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/codecssnappy.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/codecssnappy.dir/flags.make + +CMakeFiles/codecssnappy.dir/src/codecs.cpp.o: CMakeFiles/codecssnappy.dir/flags.make +CMakeFiles/codecssnappy.dir/src/codecs.cpp.o: /home/kosakseb/Developer/FastPFor/src/codecs.cpp +CMakeFiles/codecssnappy.dir/src/codecs.cpp.o: CMakeFiles/codecssnappy.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/codecssnappy.dir/src/codecs.cpp.o -MF CMakeFiles/codecssnappy.dir/src/codecs.cpp.o.d -o CMakeFiles/codecssnappy.dir/src/codecs.cpp.o -c /home/kosakseb/Developer/FastPFor/src/codecs.cpp + +CMakeFiles/codecssnappy.dir/src/codecs.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/codecssnappy.dir/src/codecs.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/codecs.cpp > CMakeFiles/codecssnappy.dir/src/codecs.cpp.i + +CMakeFiles/codecssnappy.dir/src/codecs.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/codecssnappy.dir/src/codecs.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/codecs.cpp -o CMakeFiles/codecssnappy.dir/src/codecs.cpp.s + +# Object files for target codecssnappy +codecssnappy_OBJECTS = \ +"CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" + +# External object files for target codecssnappy +codecssnappy_EXTERNAL_OBJECTS = + +codecssnappy: CMakeFiles/codecssnappy.dir/src/codecs.cpp.o +codecssnappy: CMakeFiles/codecssnappy.dir/build.make +codecssnappy: libFastPFOR.a +codecssnappy: /usr/lib/x86_64-linux-gnu/libsnappy.so +codecssnappy: CMakeFiles/codecssnappy.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable codecssnappy" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/codecssnappy.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/codecssnappy.dir/build: codecssnappy +.PHONY : CMakeFiles/codecssnappy.dir/build + +CMakeFiles/codecssnappy.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/codecssnappy.dir/cmake_clean.cmake +.PHONY : CMakeFiles/codecssnappy.dir/clean + +CMakeFiles/codecssnappy.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/codecssnappy.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/codecssnappy.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/codecssnappy.dir/cmake_clean.cmake new file mode 100644 index 0000000..8b44975 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o" + "CMakeFiles/codecssnappy.dir/src/codecs.cpp.o.d" + "codecssnappy" + "codecssnappy.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/codecssnappy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.make new file mode 100644 index 0000000..1c24690 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for codecssnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.ts new file mode 100644 index 0000000..17b3c21 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for codecssnappy. diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/depend.make b/cmake-build-debug/CMakeFiles/codecssnappy.dir/depend.make new file mode 100644 index 0000000..7631cad --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for codecssnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/flags.make b/cmake-build-debug/CMakeFiles/codecssnappy.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/link.txt b/cmake-build-debug/CMakeFiles/codecssnappy.dir/link.txt new file mode 100644 index 0000000..6c8cbb1 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/codecssnappy.dir/src/codecs.cpp.o -o codecssnappy libFastPFOR.a -lsnappy diff --git a/cmake-build-debug/CMakeFiles/codecssnappy.dir/progress.make b/cmake-build-debug/CMakeFiles/codecssnappy.dir/progress.make new file mode 100644 index 0000000..bc8bba0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/codecssnappy.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 20 +CMAKE_PROGRESS_2 = 21 + diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/csv2maropu.dir/DependInfo.cmake new file mode 100644 index 0000000..c0645b8 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp" "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" "gcc" "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/build.make b/cmake-build-debug/CMakeFiles/csv2maropu.dir/build.make new file mode 100644 index 0000000..16124ea --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/csv2maropu.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/csv2maropu.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/csv2maropu.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/csv2maropu.dir/flags.make + +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o: CMakeFiles/csv2maropu.dir/flags.make +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o: /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o: CMakeFiles/csv2maropu.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o -MF CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o.d -o CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o -c /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp + +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp > CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.i + +CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/csv2maropu.cpp -o CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.s + +# Object files for target csv2maropu +csv2maropu_OBJECTS = \ +"CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" + +# External object files for target csv2maropu +csv2maropu_EXTERNAL_OBJECTS = + +csv2maropu: CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o +csv2maropu: CMakeFiles/csv2maropu.dir/build.make +csv2maropu: CMakeFiles/csv2maropu.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable csv2maropu" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/csv2maropu.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/csv2maropu.dir/build: csv2maropu +.PHONY : CMakeFiles/csv2maropu.dir/build + +CMakeFiles/csv2maropu.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/csv2maropu.dir/cmake_clean.cmake +.PHONY : CMakeFiles/csv2maropu.dir/clean + +CMakeFiles/csv2maropu.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/csv2maropu.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/csv2maropu.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/csv2maropu.dir/cmake_clean.cmake new file mode 100644 index 0000000..334053e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o" + "CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o.d" + "csv2maropu" + "csv2maropu.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/csv2maropu.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.make new file mode 100644 index 0000000..983b187 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for csv2maropu. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.ts new file mode 100644 index 0000000..78c98db --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for csv2maropu. diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/depend.make b/cmake-build-debug/CMakeFiles/csv2maropu.dir/depend.make new file mode 100644 index 0000000..1d24772 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for csv2maropu. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/flags.make b/cmake-build-debug/CMakeFiles/csv2maropu.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/link.txt b/cmake-build-debug/CMakeFiles/csv2maropu.dir/link.txt new file mode 100644 index 0000000..6405e1c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/csv2maropu.dir/src/csv2maropu.cpp.o -o csv2maropu diff --git a/cmake-build-debug/CMakeFiles/csv2maropu.dir/progress.make b/cmake-build-debug/CMakeFiles/csv2maropu.dir/progress.make new file mode 100644 index 0000000..783d35b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/csv2maropu.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 22 +CMAKE_PROGRESS_2 = 23 + diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/entropy.dir/DependInfo.cmake new file mode 100644 index 0000000..4695ade --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/entropy.cpp" "CMakeFiles/entropy.dir/src/entropy.cpp.o" "gcc" "CMakeFiles/entropy.dir/src/entropy.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/build.make b/cmake-build-debug/CMakeFiles/entropy.dir/build.make new file mode 100644 index 0000000..daae3dc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/entropy.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/entropy.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/entropy.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/entropy.dir/flags.make + +CMakeFiles/entropy.dir/src/entropy.cpp.o: CMakeFiles/entropy.dir/flags.make +CMakeFiles/entropy.dir/src/entropy.cpp.o: /home/kosakseb/Developer/FastPFor/src/entropy.cpp +CMakeFiles/entropy.dir/src/entropy.cpp.o: CMakeFiles/entropy.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/entropy.dir/src/entropy.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/entropy.dir/src/entropy.cpp.o -MF CMakeFiles/entropy.dir/src/entropy.cpp.o.d -o CMakeFiles/entropy.dir/src/entropy.cpp.o -c /home/kosakseb/Developer/FastPFor/src/entropy.cpp + +CMakeFiles/entropy.dir/src/entropy.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/entropy.dir/src/entropy.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/entropy.cpp > CMakeFiles/entropy.dir/src/entropy.cpp.i + +CMakeFiles/entropy.dir/src/entropy.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/entropy.dir/src/entropy.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/entropy.cpp -o CMakeFiles/entropy.dir/src/entropy.cpp.s + +# Object files for target entropy +entropy_OBJECTS = \ +"CMakeFiles/entropy.dir/src/entropy.cpp.o" + +# External object files for target entropy +entropy_EXTERNAL_OBJECTS = + +entropy: CMakeFiles/entropy.dir/src/entropy.cpp.o +entropy: CMakeFiles/entropy.dir/build.make +entropy: libFastPFOR.a +entropy: CMakeFiles/entropy.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable entropy" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/entropy.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/entropy.dir/build: entropy +.PHONY : CMakeFiles/entropy.dir/build + +CMakeFiles/entropy.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/entropy.dir/cmake_clean.cmake +.PHONY : CMakeFiles/entropy.dir/clean + +CMakeFiles/entropy.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/entropy.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/entropy.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/entropy.dir/cmake_clean.cmake new file mode 100644 index 0000000..158524e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/entropy.dir/src/entropy.cpp.o" + "CMakeFiles/entropy.dir/src/entropy.cpp.o.d" + "entropy" + "entropy.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/entropy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.make new file mode 100644 index 0000000..3641215 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for entropy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.ts new file mode 100644 index 0000000..86e07b3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for entropy. diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/depend.make b/cmake-build-debug/CMakeFiles/entropy.dir/depend.make new file mode 100644 index 0000000..98fe0ea --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for entropy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/flags.make b/cmake-build-debug/CMakeFiles/entropy.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/link.txt b/cmake-build-debug/CMakeFiles/entropy.dir/link.txt new file mode 100644 index 0000000..e7c2433 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/entropy.dir/src/entropy.cpp.o -o entropy libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/entropy.dir/progress.make b/cmake-build-debug/CMakeFiles/entropy.dir/progress.make new file mode 100644 index 0000000..59fdd58 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/entropy.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 24 +CMAKE_PROGRESS_2 = 25 + diff --git a/cmake-build-debug/CMakeFiles/example.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/example.dir/DependInfo.cmake new file mode 100644 index 0000000..35fa6dc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/example.cpp" "CMakeFiles/example.dir/example.cpp.o" "gcc" "CMakeFiles/example.dir/example.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/example.dir/build.make b/cmake-build-debug/CMakeFiles/example.dir/build.make new file mode 100644 index 0000000..2d92c8b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/example.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/example.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/example.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/example.dir/flags.make + +CMakeFiles/example.dir/example.cpp.o: CMakeFiles/example.dir/flags.make +CMakeFiles/example.dir/example.cpp.o: /home/kosakseb/Developer/FastPFor/example.cpp +CMakeFiles/example.dir/example.cpp.o: CMakeFiles/example.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/example.dir/example.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/example.dir/example.cpp.o -MF CMakeFiles/example.dir/example.cpp.o.d -o CMakeFiles/example.dir/example.cpp.o -c /home/kosakseb/Developer/FastPFor/example.cpp + +CMakeFiles/example.dir/example.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/example.dir/example.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/example.cpp > CMakeFiles/example.dir/example.cpp.i + +CMakeFiles/example.dir/example.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/example.dir/example.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/example.cpp -o CMakeFiles/example.dir/example.cpp.s + +# Object files for target example +example_OBJECTS = \ +"CMakeFiles/example.dir/example.cpp.o" + +# External object files for target example +example_EXTERNAL_OBJECTS = + +example: CMakeFiles/example.dir/example.cpp.o +example: CMakeFiles/example.dir/build.make +example: libFastPFOR.a +example: CMakeFiles/example.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable example" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/example.dir/build: example +.PHONY : CMakeFiles/example.dir/build + +CMakeFiles/example.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/example.dir/cmake_clean.cmake +.PHONY : CMakeFiles/example.dir/clean + +CMakeFiles/example.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/example.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/example.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/example.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/example.dir/cmake_clean.cmake new file mode 100644 index 0000000..09552e7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/example.dir/example.cpp.o" + "CMakeFiles/example.dir/example.cpp.o.d" + "example" + "example.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/example.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/example.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/example.dir/compiler_depend.make new file mode 100644 index 0000000..fd35cca --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for example. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/example.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/example.dir/compiler_depend.ts new file mode 100644 index 0000000..82206ab --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for example. diff --git a/cmake-build-debug/CMakeFiles/example.dir/depend.make b/cmake-build-debug/CMakeFiles/example.dir/depend.make new file mode 100644 index 0000000..1438e1c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for example. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/example.dir/flags.make b/cmake-build-debug/CMakeFiles/example.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/example.dir/link.txt b/cmake-build-debug/CMakeFiles/example.dir/link.txt new file mode 100644 index 0000000..2bea6a5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/example.dir/example.cpp.o -o example libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/example.dir/progress.make b/cmake-build-debug/CMakeFiles/example.dir/progress.make new file mode 100644 index 0000000..3244467 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/example.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 26 +CMAKE_PROGRESS_2 = 27 + diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/gapstats.dir/DependInfo.cmake new file mode 100644 index 0000000..f3fdc06 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/gapstats.cpp" "CMakeFiles/gapstats.dir/src/gapstats.cpp.o" "gcc" "CMakeFiles/gapstats.dir/src/gapstats.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/build.make b/cmake-build-debug/CMakeFiles/gapstats.dir/build.make new file mode 100644 index 0000000..e39ddca --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/gapstats.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/gapstats.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gapstats.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/gapstats.dir/flags.make + +CMakeFiles/gapstats.dir/src/gapstats.cpp.o: CMakeFiles/gapstats.dir/flags.make +CMakeFiles/gapstats.dir/src/gapstats.cpp.o: /home/kosakseb/Developer/FastPFor/src/gapstats.cpp +CMakeFiles/gapstats.dir/src/gapstats.cpp.o: CMakeFiles/gapstats.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/gapstats.dir/src/gapstats.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/gapstats.dir/src/gapstats.cpp.o -MF CMakeFiles/gapstats.dir/src/gapstats.cpp.o.d -o CMakeFiles/gapstats.dir/src/gapstats.cpp.o -c /home/kosakseb/Developer/FastPFor/src/gapstats.cpp + +CMakeFiles/gapstats.dir/src/gapstats.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/gapstats.dir/src/gapstats.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/gapstats.cpp > CMakeFiles/gapstats.dir/src/gapstats.cpp.i + +CMakeFiles/gapstats.dir/src/gapstats.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/gapstats.dir/src/gapstats.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/gapstats.cpp -o CMakeFiles/gapstats.dir/src/gapstats.cpp.s + +# Object files for target gapstats +gapstats_OBJECTS = \ +"CMakeFiles/gapstats.dir/src/gapstats.cpp.o" + +# External object files for target gapstats +gapstats_EXTERNAL_OBJECTS = + +gapstats: CMakeFiles/gapstats.dir/src/gapstats.cpp.o +gapstats: CMakeFiles/gapstats.dir/build.make +gapstats: CMakeFiles/gapstats.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable gapstats" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gapstats.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/gapstats.dir/build: gapstats +.PHONY : CMakeFiles/gapstats.dir/build + +CMakeFiles/gapstats.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gapstats.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gapstats.dir/clean + +CMakeFiles/gapstats.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gapstats.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/gapstats.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/gapstats.dir/cmake_clean.cmake new file mode 100644 index 0000000..7bf5c6c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gapstats.dir/src/gapstats.cpp.o" + "CMakeFiles/gapstats.dir/src/gapstats.cpp.o.d" + "gapstats" + "gapstats.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gapstats.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.make new file mode 100644 index 0000000..ec8956f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gapstats. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.ts new file mode 100644 index 0000000..a35e785 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gapstats. diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/depend.make b/cmake-build-debug/CMakeFiles/gapstats.dir/depend.make new file mode 100644 index 0000000..5c3d415 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gapstats. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/flags.make b/cmake-build-debug/CMakeFiles/gapstats.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/link.txt b/cmake-build-debug/CMakeFiles/gapstats.dir/link.txt new file mode 100644 index 0000000..a50b919 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/gapstats.dir/src/gapstats.cpp.o -o gapstats diff --git a/cmake-build-debug/CMakeFiles/gapstats.dir/progress.make b/cmake-build-debug/CMakeFiles/gapstats.dir/progress.make new file mode 100644 index 0000000..ec204d3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gapstats.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 28 +CMAKE_PROGRESS_2 = 29 + diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/gmock_src.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.json b/cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.json new file mode 100644 index 0000000..a038f75 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src-complete.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-build.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-configure.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-download.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-install.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-patch.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-update.rule" + } + ], + "target" : + { + "labels" : + [ + "gmock_src" + ], + "name" : "gmock_src" + } +} \ No newline at end of file diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.txt b/cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.txt new file mode 100644 index 0000000..ea2a130 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + gmock_src +# Source files and their labels +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src-complete.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-build.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-configure.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-download.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-install.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-patch.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-update.rule diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/build.make b/cmake-build-debug/CMakeFiles/gmock_src.dir/build.make new file mode 100644 index 0000000..3f5db8c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/build.make @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Utility rule file for gmock_src. + +# Include any custom commands dependencies for this target. +include CMakeFiles/gmock_src.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gmock_src.dir/progress.make + +CMakeFiles/gmock_src: CMakeFiles/gmock_src-complete + +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-install +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-download +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-update +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-patch +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-configure +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-build +CMakeFiles/gmock_src-complete: vendor/gtm/src/gmock_src-stamp/gmock_src-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'gmock_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E make_directory /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src-complete + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-done + +vendor/gtm/src/gmock_src-stamp/gmock_src-build: vendor/gtm/src/gmock_src-stamp/gmock_src-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Performing build step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-build && $(MAKE) + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-build + +vendor/gtm/src/gmock_src-stamp/gmock_src-configure: vendor/gtm/tmp/gmock_src-cfgcmd.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-configure: vendor/gtm/src/gmock_src-stamp/gmock_src-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Performing configure step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gmock -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= "-GUnix Makefiles" -S /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest/googlemock -B /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-build + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-configure + +vendor/gtm/src/gmock_src-stamp/gmock_src-download: vendor/gtm/src/gmock_src-stamp/gmock_src-custominfo.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-download: vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "No download step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-download + +vendor/gtm/src/gmock_src-stamp/gmock_src-install: vendor/gtm/src/gmock_src-stamp/gmock_src-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Performing install step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-build && $(MAKE) install + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-install + +vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'gmock_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/tmp/gmock_src-mkdirs.cmake + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir + +vendor/gtm/src/gmock_src-stamp/gmock_src-patch: vendor/gtm/src/gmock_src-stamp/gmock_src-patch-info.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-patch: vendor/gtm/src/gmock_src-stamp/gmock_src-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'gmock_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-patch + +vendor/gtm/src/gmock_src-stamp/gmock_src-update: vendor/gtm/src/gmock_src-stamp/gmock_src-update-info.txt +vendor/gtm/src/gmock_src-stamp/gmock_src-update: vendor/gtm/src/gmock_src-stamp/gmock_src-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No update step for 'gmock_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest/googlemock && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest/googlemock && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gmock_src-stamp/gmock_src-update + +gmock_src: CMakeFiles/gmock_src +gmock_src: CMakeFiles/gmock_src-complete +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-build +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-configure +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-download +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-install +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-patch +gmock_src: vendor/gtm/src/gmock_src-stamp/gmock_src-update +gmock_src: CMakeFiles/gmock_src.dir/build.make +.PHONY : gmock_src + +# Rule to build all files generated by this target. +CMakeFiles/gmock_src.dir/build: gmock_src +.PHONY : CMakeFiles/gmock_src.dir/build + +CMakeFiles/gmock_src.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gmock_src.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gmock_src.dir/clean + +CMakeFiles/gmock_src.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gmock_src.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/gmock_src.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/gmock_src.dir/cmake_clean.cmake new file mode 100644 index 0000000..eac93f6 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock_src" + "CMakeFiles/gmock_src-complete" + "vendor/gtm/src/gmock_src-stamp/gmock_src-build" + "vendor/gtm/src/gmock_src-stamp/gmock_src-configure" + "vendor/gtm/src/gmock_src-stamp/gmock_src-download" + "vendor/gtm/src/gmock_src-stamp/gmock_src-install" + "vendor/gtm/src/gmock_src-stamp/gmock_src-mkdir" + "vendor/gtm/src/gmock_src-stamp/gmock_src-patch" + "vendor/gtm/src/gmock_src-stamp/gmock_src-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/gmock_src.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.make new file mode 100644 index 0000000..a850e73 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for gmock_src. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.ts new file mode 100644 index 0000000..e47429c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for gmock_src. diff --git a/cmake-build-debug/CMakeFiles/gmock_src.dir/progress.make b/cmake-build-debug/CMakeFiles/gmock_src.dir/progress.make new file mode 100644 index 0000000..7218115 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gmock_src.dir/progress.make @@ -0,0 +1,9 @@ +CMAKE_PROGRESS_1 = 30 +CMAKE_PROGRESS_2 = 31 +CMAKE_PROGRESS_3 = 32 +CMAKE_PROGRESS_4 = 33 +CMAKE_PROGRESS_5 = 34 +CMAKE_PROGRESS_6 = 35 +CMAKE_PROGRESS_7 = 36 +CMAKE_PROGRESS_8 = 37 + diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/googletest.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/Labels.json b/cmake-build-debug/CMakeFiles/googletest.dir/Labels.json new file mode 100644 index 0000000..a613ff4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest-complete.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-build.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-configure.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-download.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-install.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-mkdir.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-patch.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-update.rule" + } + ], + "target" : + { + "labels" : + [ + "googletest" + ], + "name" : "googletest" + } +} \ No newline at end of file diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/Labels.txt b/cmake-build-debug/CMakeFiles/googletest.dir/Labels.txt new file mode 100644 index 0000000..c66e3f4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + googletest +# Source files and their labels +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest-complete.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-build.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-configure.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-download.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-install.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-mkdir.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-patch.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-update.rule diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/build.make b/cmake-build-debug/CMakeFiles/googletest.dir/build.make new file mode 100644 index 0000000..2af3208 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/build.make @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Utility rule file for googletest. + +# Include any custom commands dependencies for this target. +include CMakeFiles/googletest.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/googletest.dir/progress.make + +CMakeFiles/googletest: CMakeFiles/googletest-complete + +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-install +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-mkdir +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-download +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-update +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-patch +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-configure +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-build +CMakeFiles/googletest-complete: vendor/gtm/src/googletest-stamp/googletest-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'googletest'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E make_directory /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest-complete + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-done + +vendor/gtm/src/googletest-stamp/googletest-build: vendor/gtm/src/googletest-stamp/googletest-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-build + +vendor/gtm/src/googletest-stamp/googletest-configure: vendor/gtm/tmp/googletest-cfgcmd.txt +vendor/gtm/src/googletest-stamp/googletest-configure: vendor/gtm/src/googletest-stamp/googletest-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-configure + +vendor/gtm/src/googletest-stamp/googletest-download: vendor/gtm/src/googletest-stamp/googletest-gitinfo.txt +vendor/gtm/src/googletest-stamp/googletest-download: vendor/gtm/src/googletest-stamp/googletest-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -P /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/tmp/googletest-gitclone.cmake + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-download + +vendor/gtm/src/googletest-stamp/googletest-install: vendor/gtm/src/googletest-stamp/googletest-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-install + +vendor/gtm/src/googletest-stamp/googletest-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'googletest'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/tmp/googletest-mkdirs.cmake + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-mkdir + +vendor/gtm/src/googletest-stamp/googletest-patch: vendor/gtm/src/googletest-stamp/googletest-patch-info.txt +vendor/gtm/src/googletest-stamp/googletest-patch: vendor/gtm/src/googletest-stamp/googletest-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'googletest'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-patch + +vendor/gtm/src/googletest-stamp/googletest-update: vendor/gtm/src/googletest-stamp/googletest-update-info.txt +vendor/gtm/src/googletest-stamp/googletest-update: vendor/gtm/src/googletest-stamp/googletest-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No update step for 'googletest'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest-stamp/googletest-update + +googletest: CMakeFiles/googletest +googletest: CMakeFiles/googletest-complete +googletest: vendor/gtm/src/googletest-stamp/googletest-build +googletest: vendor/gtm/src/googletest-stamp/googletest-configure +googletest: vendor/gtm/src/googletest-stamp/googletest-download +googletest: vendor/gtm/src/googletest-stamp/googletest-install +googletest: vendor/gtm/src/googletest-stamp/googletest-mkdir +googletest: vendor/gtm/src/googletest-stamp/googletest-patch +googletest: vendor/gtm/src/googletest-stamp/googletest-update +googletest: CMakeFiles/googletest.dir/build.make +.PHONY : googletest + +# Rule to build all files generated by this target. +CMakeFiles/googletest.dir/build: googletest +.PHONY : CMakeFiles/googletest.dir/build + +CMakeFiles/googletest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/googletest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/googletest.dir/clean + +CMakeFiles/googletest.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/googletest.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/googletest.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/googletest.dir/cmake_clean.cmake new file mode 100644 index 0000000..0cf11c9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/googletest" + "CMakeFiles/googletest-complete" + "vendor/gtm/src/googletest-stamp/googletest-build" + "vendor/gtm/src/googletest-stamp/googletest-configure" + "vendor/gtm/src/googletest-stamp/googletest-download" + "vendor/gtm/src/googletest-stamp/googletest-install" + "vendor/gtm/src/googletest-stamp/googletest-mkdir" + "vendor/gtm/src/googletest-stamp/googletest-patch" + "vendor/gtm/src/googletest-stamp/googletest-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/googletest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.make new file mode 100644 index 0000000..1a115b9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for googletest. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.ts new file mode 100644 index 0000000..4c3c4b2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for googletest. diff --git a/cmake-build-debug/CMakeFiles/googletest.dir/progress.make b/cmake-build-debug/CMakeFiles/googletest.dir/progress.make new file mode 100644 index 0000000..90f183f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/googletest.dir/progress.make @@ -0,0 +1,9 @@ +CMAKE_PROGRESS_1 = 38 +CMAKE_PROGRESS_2 = 39 +CMAKE_PROGRESS_3 = 40 +CMAKE_PROGRESS_4 = 41 +CMAKE_PROGRESS_5 = 42 +CMAKE_PROGRESS_6 = 43 +CMAKE_PROGRESS_7 = 44 +CMAKE_PROGRESS_8 = 45 + diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/gtest_src.dir/DependInfo.cmake new file mode 100644 index 0000000..45a25b7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/DependInfo.cmake @@ -0,0 +1,18 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.json b/cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.json new file mode 100644 index 0000000..01f4cd0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src-complete.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-build.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-configure.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-download.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-install.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-patch.rule" + }, + { + "file" : "/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-update.rule" + } + ], + "target" : + { + "labels" : + [ + "gtest_src" + ], + "name" : "gtest_src" + } +} \ No newline at end of file diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.txt b/cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.txt new file mode 100644 index 0000000..c40a07e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + gtest_src +# Source files and their labels +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src-complete.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-build.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-configure.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-download.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-install.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-patch.rule +/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-update.rule diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/build.make b/cmake-build-debug/CMakeFiles/gtest_src.dir/build.make new file mode 100644 index 0000000..d67e064 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/build.make @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Utility rule file for gtest_src. + +# Include any custom commands dependencies for this target. +include CMakeFiles/gtest_src.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/gtest_src.dir/progress.make + +CMakeFiles/gtest_src: CMakeFiles/gtest_src-complete + +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-install +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-download +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-update +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-patch +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-configure +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-build +CMakeFiles/gtest_src-complete: vendor/gtm/src/gtest_src-stamp/gtest_src-install + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'gtest_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E make_directory /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src-complete + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-done + +vendor/gtm/src/gtest_src-stamp/gtest_src-build: vendor/gtm/src/gtest_src-stamp/gtest_src-configure + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Performing build step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-build && $(MAKE) + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-build + +vendor/gtm/src/gtest_src-stamp/gtest_src-configure: vendor/gtm/tmp/gtest_src-cfgcmd.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-configure: vendor/gtm/src/gtest_src-stamp/gtest_src-patch + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Performing configure step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -DCMAKE_INSTALL_PREFIX=/home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/gtest -DCMAKE_C_COMPILER=/usr/bin/cc -DCMAKE_CXX_COMPILER=/usr/bin/c++ -DCMAKE_CXX_FLAGS= "-GUnix Makefiles" -S /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest/googletest -B /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-build + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-configure + +vendor/gtm/src/gtest_src-stamp/gtest_src-download: vendor/gtm/src/gtest_src-stamp/gtest_src-custominfo.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-download: vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "No download step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-download + +vendor/gtm/src/gtest_src-stamp/gtest_src-install: vendor/gtm/src/gtest_src-stamp/gtest_src-build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Performing install step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-build && $(MAKE) install + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-build && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-install + +vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'gtest_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -Dcfgdir= -P /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/tmp/gtest_src-mkdirs.cmake + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir + +vendor/gtm/src/gtest_src-stamp/gtest_src-patch: vendor/gtm/src/gtest_src-stamp/gtest_src-patch-info.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-patch: vendor/gtm/src/gtest_src-stamp/gtest_src-update + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'gtest_src'" + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-patch + +vendor/gtm/src/gtest_src-stamp/gtest_src-update: vendor/gtm/src/gtest_src-stamp/gtest_src-update-info.txt +vendor/gtm/src/gtest_src-stamp/gtest_src-update: vendor/gtm/src/gtest_src-stamp/gtest_src-download + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No update step for 'gtest_src'" + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E echo_append + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/googletest/googletest && /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E touch /home/kosakseb/Developer/FastPFor/cmake-build-debug/vendor/gtm/src/gtest_src-stamp/gtest_src-update + +gtest_src: CMakeFiles/gtest_src +gtest_src: CMakeFiles/gtest_src-complete +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-build +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-configure +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-download +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-install +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-patch +gtest_src: vendor/gtm/src/gtest_src-stamp/gtest_src-update +gtest_src: CMakeFiles/gtest_src.dir/build.make +.PHONY : gtest_src + +# Rule to build all files generated by this target. +CMakeFiles/gtest_src.dir/build: gtest_src +.PHONY : CMakeFiles/gtest_src.dir/build + +CMakeFiles/gtest_src.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/gtest_src.dir/cmake_clean.cmake +.PHONY : CMakeFiles/gtest_src.dir/clean + +CMakeFiles/gtest_src.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/gtest_src.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/gtest_src.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/gtest_src.dir/cmake_clean.cmake new file mode 100644 index 0000000..4d96dc2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest_src" + "CMakeFiles/gtest_src-complete" + "vendor/gtm/src/gtest_src-stamp/gtest_src-build" + "vendor/gtm/src/gtest_src-stamp/gtest_src-configure" + "vendor/gtm/src/gtest_src-stamp/gtest_src-download" + "vendor/gtm/src/gtest_src-stamp/gtest_src-install" + "vendor/gtm/src/gtest_src-stamp/gtest_src-mkdir" + "vendor/gtm/src/gtest_src-stamp/gtest_src-patch" + "vendor/gtm/src/gtest_src-stamp/gtest_src-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/gtest_src.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.make new file mode 100644 index 0000000..b30c467 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty custom commands generated dependencies file for gtest_src. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.ts new file mode 100644 index 0000000..96a91cc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for custom commands dependencies management for gtest_src. diff --git a/cmake-build-debug/CMakeFiles/gtest_src.dir/progress.make b/cmake-build-debug/CMakeFiles/gtest_src.dir/progress.make new file mode 100644 index 0000000..40c4475 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/gtest_src.dir/progress.make @@ -0,0 +1,9 @@ +CMAKE_PROGRESS_1 = 46 +CMAKE_PROGRESS_2 = 47 +CMAKE_PROGRESS_3 = 48 +CMAKE_PROGRESS_4 = 49 +CMAKE_PROGRESS_5 = 50 +CMAKE_PROGRESS_6 = 51 +CMAKE_PROGRESS_7 = 52 +CMAKE_PROGRESS_8 = 53 + diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake new file mode 100644 index 0000000..d01bdd9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp" "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" "gcc" "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/build.make b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/build.make new file mode 100644 index 0000000..507fdad --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/inmemorybenchmark.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/inmemorybenchmark.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/inmemorybenchmark.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/inmemorybenchmark.dir/flags.make + +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmark.dir/flags.make +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o: /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o -MF CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o.d -o CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o -c /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp + +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp > CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.i + +CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp -o CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.s + +# Object files for target inmemorybenchmark +inmemorybenchmark_OBJECTS = \ +"CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" + +# External object files for target inmemorybenchmark +inmemorybenchmark_EXTERNAL_OBJECTS = + +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/build.make +inmemorybenchmark: libFastPFOR.a +inmemorybenchmark: CMakeFiles/inmemorybenchmark.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable inmemorybenchmark" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/inmemorybenchmark.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/inmemorybenchmark.dir/build: inmemorybenchmark +.PHONY : CMakeFiles/inmemorybenchmark.dir/build + +CMakeFiles/inmemorybenchmark.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake +.PHONY : CMakeFiles/inmemorybenchmark.dir/clean + +CMakeFiles/inmemorybenchmark.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/inmemorybenchmark.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake new file mode 100644 index 0000000..d4c1bc0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o" + "CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o.d" + "inmemorybenchmark" + "inmemorybenchmark.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/inmemorybenchmark.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make new file mode 100644 index 0000000..a92b05c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for inmemorybenchmark. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts new file mode 100644 index 0000000..6cd1da1 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for inmemorybenchmark. diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/depend.make b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/depend.make new file mode 100644 index 0000000..3703cec --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for inmemorybenchmark. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/flags.make b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/link.txt b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/link.txt new file mode 100644 index 0000000..6f3e565 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/inmemorybenchmark.dir/src/inmemorybenchmark.cpp.o -o inmemorybenchmark libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/progress.make b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/progress.make new file mode 100644 index 0000000..2e6ba90 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmark.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 54 +CMAKE_PROGRESS_2 = 55 + diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake new file mode 100644 index 0000000..bf8ac48 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp" "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" "gcc" "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/build.make b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/build.make new file mode 100644 index 0000000..03f7a74 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/build.make @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/inmemorybenchmarksnappy.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/inmemorybenchmarksnappy.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/inmemorybenchmarksnappy.dir/flags.make + +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmarksnappy.dir/flags.make +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o: /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o: CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o -MF CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o.d -o CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o -c /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp + +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp > CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.i + +CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/inmemorybenchmark.cpp -o CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.s + +# Object files for target inmemorybenchmarksnappy +inmemorybenchmarksnappy_OBJECTS = \ +"CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" + +# External object files for target inmemorybenchmarksnappy +inmemorybenchmarksnappy_EXTERNAL_OBJECTS = + +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/build.make +inmemorybenchmarksnappy: libFastPFOR.a +inmemorybenchmarksnappy: /usr/lib/x86_64-linux-gnu/libsnappy.so +inmemorybenchmarksnappy: CMakeFiles/inmemorybenchmarksnappy.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable inmemorybenchmarksnappy" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/inmemorybenchmarksnappy.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/inmemorybenchmarksnappy.dir/build: inmemorybenchmarksnappy +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/build + +CMakeFiles/inmemorybenchmarksnappy.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/clean + +CMakeFiles/inmemorybenchmarksnappy.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/inmemorybenchmarksnappy.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake new file mode 100644 index 0000000..c7aae56 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o" + "CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o.d" + "inmemorybenchmarksnappy" + "inmemorybenchmarksnappy.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/inmemorybenchmarksnappy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make new file mode 100644 index 0000000..7b28d75 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for inmemorybenchmarksnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts new file mode 100644 index 0000000..e30a8a8 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for inmemorybenchmarksnappy. diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make new file mode 100644 index 0000000..439e1d7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for inmemorybenchmarksnappy. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt new file mode 100644 index 0000000..2bb92dc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/inmemorybenchmarksnappy.dir/src/inmemorybenchmark.cpp.o -o inmemorybenchmarksnappy libFastPFOR.a -lsnappy diff --git a/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make new file mode 100644 index 0000000..fb03824 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/inmemorybenchmarksnappy.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 56 +CMAKE_PROGRESS_2 = 57 + diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/partitionbylength.dir/DependInfo.cmake new file mode 100644 index 0000000..dcbe142 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp" "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" "gcc" "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/build.make b/cmake-build-debug/CMakeFiles/partitionbylength.dir/build.make new file mode 100644 index 0000000..283195e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/partitionbylength.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/partitionbylength.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/partitionbylength.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/partitionbylength.dir/flags.make + +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o: CMakeFiles/partitionbylength.dir/flags.make +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o: /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o: CMakeFiles/partitionbylength.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o -MF CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o.d -o CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o -c /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp + +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp > CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.i + +CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/partitionbylength.cpp -o CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.s + +# Object files for target partitionbylength +partitionbylength_OBJECTS = \ +"CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" + +# External object files for target partitionbylength +partitionbylength_EXTERNAL_OBJECTS = + +partitionbylength: CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o +partitionbylength: CMakeFiles/partitionbylength.dir/build.make +partitionbylength: CMakeFiles/partitionbylength.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable partitionbylength" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/partitionbylength.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/partitionbylength.dir/build: partitionbylength +.PHONY : CMakeFiles/partitionbylength.dir/build + +CMakeFiles/partitionbylength.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/partitionbylength.dir/cmake_clean.cmake +.PHONY : CMakeFiles/partitionbylength.dir/clean + +CMakeFiles/partitionbylength.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/partitionbylength.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/partitionbylength.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/partitionbylength.dir/cmake_clean.cmake new file mode 100644 index 0000000..fb72c7e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o" + "CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o.d" + "partitionbylength" + "partitionbylength.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/partitionbylength.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.make new file mode 100644 index 0000000..a381c49 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for partitionbylength. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.ts new file mode 100644 index 0000000..92151cc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for partitionbylength. diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/depend.make b/cmake-build-debug/CMakeFiles/partitionbylength.dir/depend.make new file mode 100644 index 0000000..b09f1e8 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for partitionbylength. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/flags.make b/cmake-build-debug/CMakeFiles/partitionbylength.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/link.txt b/cmake-build-debug/CMakeFiles/partitionbylength.dir/link.txt new file mode 100644 index 0000000..d29592e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/partitionbylength.dir/src/partitionbylength.cpp.o -o partitionbylength diff --git a/cmake-build-debug/CMakeFiles/partitionbylength.dir/progress.make b/cmake-build-debug/CMakeFiles/partitionbylength.dir/progress.make new file mode 100644 index 0000000..42baaba --- /dev/null +++ b/cmake-build-debug/CMakeFiles/partitionbylength.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 58 +CMAKE_PROGRESS_2 = 59 + diff --git a/cmake-build-debug/CMakeFiles/progress.marks b/cmake-build-debug/CMakeFiles/progress.marks new file mode 100644 index 0000000..b1e7d26 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/progress.marks @@ -0,0 +1 @@ +61 diff --git a/cmake-build-debug/CMakeFiles/unit.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/unit.dir/DependInfo.cmake new file mode 100644 index 0000000..7a6e5f0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/DependInfo.cmake @@ -0,0 +1,19 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/kosakseb/Developer/FastPFor/src/unit.cpp" "CMakeFiles/unit.dir/src/unit.cpp.o" "gcc" "CMakeFiles/unit.dir/src/unit.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/unit.dir/build.make b/cmake-build-debug/CMakeFiles/unit.dir/build.make new file mode 100644 index 0000000..edac66e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /snap/clion/261/bin/cmake/linux/x64/bin/cmake + +# The command to remove a file. +RM = /snap/clion/261/bin/cmake/linux/x64/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/kosakseb/Developer/FastPFor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/kosakseb/Developer/FastPFor/cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/unit.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/unit.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/unit.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/unit.dir/flags.make + +CMakeFiles/unit.dir/src/unit.cpp.o: CMakeFiles/unit.dir/flags.make +CMakeFiles/unit.dir/src/unit.cpp.o: /home/kosakseb/Developer/FastPFor/src/unit.cpp +CMakeFiles/unit.dir/src/unit.cpp.o: CMakeFiles/unit.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/unit.dir/src/unit.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/unit.dir/src/unit.cpp.o -MF CMakeFiles/unit.dir/src/unit.cpp.o.d -o CMakeFiles/unit.dir/src/unit.cpp.o -c /home/kosakseb/Developer/FastPFor/src/unit.cpp + +CMakeFiles/unit.dir/src/unit.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/unit.dir/src/unit.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/kosakseb/Developer/FastPFor/src/unit.cpp > CMakeFiles/unit.dir/src/unit.cpp.i + +CMakeFiles/unit.dir/src/unit.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/unit.dir/src/unit.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/kosakseb/Developer/FastPFor/src/unit.cpp -o CMakeFiles/unit.dir/src/unit.cpp.s + +# Object files for target unit +unit_OBJECTS = \ +"CMakeFiles/unit.dir/src/unit.cpp.o" + +# External object files for target unit +unit_EXTERNAL_OBJECTS = + +unit: CMakeFiles/unit.dir/src/unit.cpp.o +unit: CMakeFiles/unit.dir/build.make +unit: libFastPFOR.a +unit: CMakeFiles/unit.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable unit" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/unit.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/unit.dir/build: unit +.PHONY : CMakeFiles/unit.dir/build + +CMakeFiles/unit.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/unit.dir/cmake_clean.cmake +.PHONY : CMakeFiles/unit.dir/clean + +CMakeFiles/unit.dir/depend: + cd /home/kosakseb/Developer/FastPFor/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug /home/kosakseb/Developer/FastPFor/cmake-build-debug/CMakeFiles/unit.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/unit.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/unit.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/unit.dir/cmake_clean.cmake new file mode 100644 index 0000000..59ee0a2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/unit.dir/src/unit.cpp.o" + "CMakeFiles/unit.dir/src/unit.cpp.o.d" + "unit" + "unit.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/unit.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.make new file mode 100644 index 0000000..4eae069 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for unit. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.ts new file mode 100644 index 0000000..1c41603 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for unit. diff --git a/cmake-build-debug/CMakeFiles/unit.dir/depend.make b/cmake-build-debug/CMakeFiles/unit.dir/depend.make new file mode 100644 index 0000000..10f3d38 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for unit. +# This may be replaced when dependencies are built. diff --git a/cmake-build-debug/CMakeFiles/unit.dir/flags.make b/cmake-build-debug/CMakeFiles/unit.dir/flags.make new file mode 100644 index 0000000..ecfc2e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.27 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/home/kosakseb/Developer/FastPFor/headers + +CXX_FLAGS = -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -std=gnu++11 -fdiagnostics-color=always + diff --git a/cmake-build-debug/CMakeFiles/unit.dir/link.txt b/cmake-build-debug/CMakeFiles/unit.dir/link.txt new file mode 100644 index 0000000..0ff2223 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Wall -Wcast-align -ggdb -lm -std=c++11 -DHAVE_CXX0X -march=native -rdynamic CMakeFiles/unit.dir/src/unit.cpp.o -o unit libFastPFOR.a diff --git a/cmake-build-debug/CMakeFiles/unit.dir/progress.make b/cmake-build-debug/CMakeFiles/unit.dir/progress.make new file mode 100644 index 0000000..554ea33 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/unit.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 60 +CMAKE_PROGRESS_2 = 61 + diff --git a/cmake-build-debug/CTestTestfile.cmake b/cmake-build-debug/CTestTestfile.cmake new file mode 100644 index 0000000..a10b94d --- /dev/null +++ b/cmake-build-debug/CTestTestfile.cmake @@ -0,0 +1,10 @@ +# CMake generated Testfile for +# Source directory: /home/kosakseb/Developer/FastPFor +# Build directory: /home/kosakseb/Developer/FastPFor/cmake-build-debug +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test(unit "unit") +set_tests_properties(unit PROPERTIES _BACKTRACE_TRIPLES "/home/kosakseb/Developer/FastPFor/CMakeLists.txt;185;add_test;/home/kosakseb/Developer/FastPFor/CMakeLists.txt;0;") +add_test(FastPFOR_unittest "FastPFOR_unittest") +set_tests_properties(FastPFOR_unittest PROPERTIES _BACKTRACE_TRIPLES "/home/kosakseb/Developer/FastPFor/CMakeLists.txt;186;add_test;/home/kosakseb/Developer/FastPFor/CMakeLists.txt;0;") diff --git a/cmake-build-debug/FastPFORConfig.cmake b/cmake-build-debug/FastPFORConfig.cmake new file mode 100644 index 0000000..05a2aae --- /dev/null +++ b/cmake-build-debug/FastPFORConfig.cmake @@ -0,0 +1,29 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was FastPFORConfig.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### + +if(NOT TARGET FastPFOR) + include("${CMAKE_CURRENT_LIST_DIR}/FastPFORTargets.cmake") +endif() diff --git a/cmake-build-debug/FastPFORConfigVersion.cmake b/cmake-build-debug/FastPFORConfigVersion.cmake new file mode 100644 index 0000000..03c436e --- /dev/null +++ b/cmake-build-debug/FastPFORConfigVersion.cmake @@ -0,0 +1,65 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "0.1.9") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("0.1.9" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) + string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") + endif() + else() + set(CVF_VERSION_MAJOR "0.1.9") + endif() + + if(PACKAGE_FIND_VERSION_RANGE) + # both endpoints of the range must have the expected major version + math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") + if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + else() + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/cmake-build-debug/FastPFOR_unittest b/cmake-build-debug/FastPFOR_unittest new file mode 100755 index 0000000000000000000000000000000000000000..ee03c3b9c620abfb80c9a1b8873491d5b7b68f73 GIT binary patch literal 8184192 zcmeFadwf*Y)yI9pMWUhvg*LTbf~bx4mLOnI(V&hFDmDt()T)^n0*OKxbAfn4gMcQ+ zw9%@~(`q}`OH*q#c)@5D2QMUT)rJ-|wq6G7WhmGNYjvJhpWF26(3z(W%gGt;$=`7A1TTlacka&r^}JH`U(aiKMqlTk&&nnBHJMbH$Di$ou8Xk@0h1u`{1K8c)T>`?>zg5_*gI^zyXk z{YUcGA+7Oq#z|jO8_cJ@pE_RY*Y%F@`No{liknY+KQ5b^*hICxrYG~W|3vMs z_T%E>{o*fc`}n(=pLtTA=F^lX$H@OmhSPrnK8rN=%qQ+wBm3d!DYBpW~|XH z?acAYWWUs_x;*i7V^}9>KF#sYrv12FzUZG+yLXNp&s7gyQV-_Sw6miY)?PGq@=*)t z9kH;suBrKm=8~yLOr3mW!{Q?+sSr4>0{X{o>a?@wdK7h>nG~ZptVL_%kGGAJ?QH+6 zUw*LR(me8$kY4KIFk+6V3XPQGdS%JE&JPo~`i|K{%Jd3yzHiR~85pW7pte@xXM z>C|<9p#Ase;si?Om!Y~+!G!3^1Q>({BH#N`IW=Zy^i*sbJo5TJfNBo~TIIoL?%IErBgE=o3gY3_Al*8_h zezcEc-Wlu2>vBi@BOUgKJI2YU9PQ_MN50QH`pd5z{q$o;oclTY(3nJ`A4@`fhy7EI{+n`)4?m;J7eVb|l%rq&!_m%v?I?%c9r;!|#-%lm<4$+vJKr(RYO5V`2WDM{_l1ix8LEX%TbSO9p#hn@bjF*{z`}c>5lf??-+j$cldwF(XQ@y@EaWC zc8w#>D_q<$E?w=2^IS*14>-zmp`#pLbokG8%)bvf#)o$u^VHoA|Ia$c=OIV@qa5w| z`;PKF+Hu_F4*PQ*O|RSx@+4*syC+*PI zx1(O}am;HeNBtf}aR!yoHyrECgoBTB^wSbYJZDioj`jBSN{1$@Qle&{{`R2pNlu7|4QXBf&4_k&ub2TE5$j%%l8JK(Z{9JG4*$|Du;c&_%_Y+ zxWeggE{zXC@%)ASbNqPRS7|@CKj>T*R%t>#FBeUbL`UZwuaX-dVF7kEy7rYHltrE}nEzWkYQhxva0PTQGC!?8f5a zs+!9BipKiN+Qx>NOGC3O=|7?3q6#`xZ9{Z%Lv?70S8?8)bI&5iPAV^|T~a)$xT0do zqS}h8g_R8r6^)lgt1D{j<}VJBA2sgvzSO)$C)a(9WCPxUgYn_K`#95Ib5I$6_jv>dHkktL9XMW>2Y5 zG3-PdQx{g(EoiJ!1va~J5|vkDP5t7f6&hDm*Viwu|GW&{RWgaHq-t>;h1yirIJ4{w zs-`7#DrT2d@S)}}u3uVNKd+*e8b)Q~Vye)}1v^<8wauYLsuH+rPA(3ebH;2gMyizJ z;)RPBQ0q~Ns4Y8DQ>u-8`3gRU8)Ri;CDp7B#?hpmZLGMM%daw8SykJ3nV;cO&X61U zS+i@Y*_=}=nI2u=RM%L$s9NWG$|T(hs2NSGZmz11Hr6h#BTLn^0*)Bew&qmKDWcXj zm8xq>#q8?Fr8}2~)Q;=Ox<3UpZ8`ig73ZAcuC&>cE2#O;DXs|ZxR#uaG+j$7J$D~+ zda(P@yoF^;bW>csupu;$3v4Gm`Z4KhW>@o7+4DDD-~8=j#kkF%Vp;^_g}!Mzl4dbo z8j^l;IhXy}U$Xdor594%)P{BBwSqT}19fi?~tJ_&=@UoQr4{)wZeB%w^+lBnE9;L#q+8wDA4NJMHT1xWBX(sdhL97*gRJ9v`X`4 z#mvPG72kB5DJt9Z)Nt%dv)XAZuTm)2A^eoj+zHblQK zr|T$l3FM4!YGstto44~zl4;SVh8im8s!KvUIb}u9l%r=>b6}{ zOBKYGJb7kaZKGcds@a};&g{jrE7TCb6V*0(ek~PC6}P;)NYTKOM?8cG`IxA|dtX)_C9;Dq|U~8m&d*&Xj+Nzfh&TcQ92sI|q%>vnm>Bc$HHUo&^^)H&;Zf>l+r= zRW778aK)0M9r|{Tj8qh#cNXK^SI;0ku^+7~LQXPNnsy8Mf}^xQ2<&7bWu7!HrL!u1 z(zr8~_JtNb?i!m^F@r~!ikezF$LDfdYD#HdWf_+b&GXdMt-+|izVfn)x@vQRx#Ond ztP*RY+u70Ftk+DlSUhEEJ)MbiGtr|0UsUktpq-vA7VYebxt_ArWTR5tiH0_%dQp_l z8@Y_tFl(O*@30%WE1bJ1uYDHk6Wg7vKI)DCr&(0Z=INsO@@MAMR82$OL9cNZ!{mnA z%k?#;9qjFFyl`^YSo}qnv3^TbXM6hGe&$_AdDcOng1Wy<-(c(aB~UUEI`Iv3Pz3EfE$}SIl43NY!%r&K)&i#-$@!r(NlF zI}JY;_g5=Bcibs-!H+J|o<&R81$9kS)XltPty^5bhz1sOIgldc5?;Fhe5o~Mx{Z9<3kzA7#_1AH6*VK(u;@y2 zKp}q4LY}VRRyWSCUAS;2EsA#btjxcJ{(mT6?6=f@qk)&E^z{pO4XTTc>M~;48FWFB zLMl&$L$-BP*|QgKdoL(`&auc~HVZN0a&s)1(W>Z(Oi z^_4#K>_@9CI_bK++KW<=SJQ=qMNN&>&Aj}(#G^W_s;T#A1gNfC3mA(s;e43x{?;9>kx~o7cE-6q}p55RJW)y3clu5(~%Zm z=BdW1Zf@{dJl(+K3x@OQ{Mn-$h74!}iU)$w7l8Y*9 z>wK$As_E97n)AK+(Wb^Kl@+;~AElrh=PTGi2TGtw7xMNx zu8xMrc|1zbZ>%OriE@#8^XD(5i*$Yxw4v?|;($pL0IghSBG*VU8Myq)< zhe;pvnkd_ODibfNyAs=}`Wi8)uRd>z2>gMVys-W722D%ef&GqKjYeStWtHt%) zD(Ez@-XpJ*l%wcnehdxO3+H=F#F$cHpB^P&S*7kvk`SU8%ZgrEarOSmL6;35x)l$V>!S}%G7OPVg<)5pUZnAny>6S4!y7}s4 zk5Z~!Sl7hMJ!&3Rm(Y#aOLVJR#7&X5Ha1>HL2)l3mvwZ}i0+|LbD~764m*rrqnpZd zK^3(xR>iEUG(YX+lPiusvdBB_%$X;hTwYG!Cm%Vf$fK__PMTR!eB{wbPRrZ|a;jyT zVOTsRLryBTrT$(qiQG^2zo)+)eY6jYEt>v1>BuSkT);4TV{e4|-!S?Vn2q|&A^k6U*2Fw7R(8l`^dwuJxBCHRd#?AkZ0{r#P5qc2 zBpKuFP1|{&%Qief_M^Q6jaJ)t^^Ov~MCn}b1krzf;1YW9W|TKebhX+((kmBzsnR37 z1)>`dy@?)88SX71&3`%6LULpq>&9=?(vwYlde;aWS6fR@KJVfEK=ea5-bzoj?Cy1m zzFFzrygNldtn@D4{i2)pVSmHC$4K*^dH>lw9}^v|pNomgd(noUmalm;@YZAXb2lx( zPdiKVR^XwSu9;5Yx80zhSLy;@B=K|uFJG^pGwK0;^Clf@$AMq|uC^Zl-YWhF zftS6d?GwPS5}pJ;ApTRpd&R%ETIXTPdGz13|6Jh53eN+6$a~tp0C-aT7Xt4WKSjVl z5?%uQO7R~Cp5LeAE(5;uZ5>ZJ@CSuQfd5JSM}ddMe>3pXceMW&;B~@VffpvVeHZX% z@gDN2 zQ^4>4yY}NfnAr|L6rKzG*e%*V4|t34eBf&rX!`=-qiZxT1a9&z0&emx0lr?28wNgL z+9&Xq8Tz>8z@HW#0Y2g+ZC?XCB0LKGV#%u+c$e@N;3nTz;3nTr;7`bLW58Sftn05E z_~|2ut8u;uc&qSU;Jw1*z{_^geg=Sd%W(&RpYpyQ{}aILg(rb0#eWL;p!oM5%50wp z{zLoE1zsjR5BM)e>G%tP=Wf(~3xRw8)c%WrA1S;9`1!foe;9a)_%8$ghWIH5K6*$W zHv;@?yK4VY;5FjE8Tb?8rv>=mg|`A95dU4kyTpGC_)oU!IJ<%O3-1Ab{cbw`IPiY) z-w(X`1MPnR_&vf0fuFLw_MZfv68}TM&;6J7p8~#8xcBfx)o;wa{F(UA177%&w#x@T z`9tl$0Qg113xW5J*727BFBku%!1wyM_8$gbD!dGM{T|wX1bD0XuK_+Jexktl|41LV z8TjFQYX7akd&Pez@E65T7w}Jn$AG^p{(FEY#eXmG`##oj#)1Duct7yi7#;s0@O=5b zp9JvhQ`&zLc(3pw;OFIO|K1}LGul;H{O1C%`Csin5BROZ^MQ{WtNj-OZx;VWz)$^; z_Fn?LQFtlv7sY=W@NV&64*a11YX1@7=LoL>-ny5LzZv+T_-_F|>=W(36?l>GPT(i) zt^LP<=f0xrqZ@ca{PY0d^HY7?Uf`dI|9;>l;(q}6TJbXoe5>#T@HOLf{6oNN#D5C- zZJ+5ly)`;NGmiaUcrNhhcXE! zl>xt2cscO5#eWU(l=zPVpDI7C)(m`}@D|`d`?`*&6L{g^L=|Tj@NvVmeGK?X!n=W& z%MY#fA{YO0;2(&ee&7Ye^>GJ)@5L`9(O&|1tN2d>9}qu7z&{h70{*=C&wW&vhiPv; z;y(}gkt1|G`M_@zUI6^seYAZc@Y{qJ0dM@Kwl4+ly{h921Ft_w+m`|F65AUr+{~gfA6u08SUzE@skTYB|H!KxaB(j0^r@^zYuug5^Y}ue7^7!;FpX4Fz~qe zF9Uw7_$ddzQFsJ+Li|U84~qY0;3Jmm_*;OVB)k>)sn=-xF5pArKL)&B{B#5F5#9s* zKJgz1p8MB{s$TnnC&bSH@co;0oP)skTA_Ioc!BsI0)CeGNddn>xc9h@%Zy{q;y({~ ziTKY4{)G4`0RA80g}~ns|0Tf7#D6L9Z(pYK4Fj(cUIzS>mD)Z6yhi-j0Phk%QQ$8N zZw7v^_-_T?BK|vp?{c}0rwjNg!ehYmR%!bl;9cUs7kH!ii35L7ct7wZ;(ri$kN8gj ze@px%ffrn%;~WD1n)vsAJ27J%>lgpIz{|u>9`GLs&j)_ewfeY)z!QJf$14K9R{WFz z|3r8x@NV&620Zmw?Y|uO;aBQ-BET;eUITp3>$H6{@VwWw{}$js5kIZK2ZeV6ZxsJA z;DzG98+fj)mwJGoD!do?U&Mbu@KW(V0DOt~83g{Y@C5MER$V?rz{|yd3iv%@?>(W* z&x~Vl3(o~Uu1)*T1O9E{`M@s{UI4sHcp>o8>$U$9PXb>ednQ*0Ur|o-M~K-KRv(?ly=w)yj=Xpf&b@D`T-C6>jyskF3ksk?7>!r+^iN652iL(&6iL(^= zG>J0|-1sj8ezMq?12_I7z)u(Z8sKw^T-Y+~3JYW3u1AqJ^9nS#pr0_xDC!MD4lfX;G{}Ax}leK*c_^HCZ zr!w1Hz4*@qUh=NC%LjhoLj8PB0q~237Xtr@@Dkt=@m~sjiNqNOewXkv;EAJkJQ3hE zQa&}nH;SJq@L{Lua%%>joT&Y`0AK%K`T;ijYX!dM-;i&IIttJGwn2f#36}KJF0ky&luti)XgCg!st?e!_#= zJ`eZ}!V7@M#7`mcPAQ)v;A@4K0AF~gK5i-SUGCDn4EUhbS2^&1i2n%i!$Z1V)d27P zm2Ov2;Li(h2L6`t7T_NVZw0>Fz1n{#@co5%0iPs12K-dv-N4Ti-UGZ&crWm4gvWuO z64mA05Bxr{9|S%m<(~jPdV%(n1U^sr5b!5zw0#QrXNxrV)@8QaV{0|f1>SRs=6S$- z#XcYS)Qh!!0q}=~7XrU+p|&pqzL&&V0(_FhQwsbL@e>AqO`Y~%2E0}LM}X%_zpDX$ zzO?fw@au&)1HW~HjH|%+JWt2d3jD(JHSYv|ulVT#exKOKfdAtH?WY^~MHgz`1N=VW zy}%EQX!|(um6e+J179m~4gil-Y5PIoe-is7@O+s!hk*B=sr{sY&zYrp?$ep=IV$y- z2mEoVuYBN1;RV2ZUKy_Dog(0^;=crV{;7IAECqh5@G$V*#D6*Pe(@gxK5jtAQv>{3 z;Zfjggtq`M5dW>fmq?tQz#kUg1^gFlbvus%zbLMGH*hn~_W(EJd@t}bpV5Bez!$F9 zydU^&ztemGcypiTgTTw5)jR>*jPpt0W}F`aK53oylLB7zl;*k5WVX)|(>{T}_L#QM z2Y%Aynil}C7hVXw^a*WW0(?l0TMGR0C$)VTc(?E};AVa=2X5x~2yj#HHNZ{1M}eF9 zy&1Tf-&=s2`Mnjmncq8soB6#9xT*ITa8vKyz;89{1mI?Vj|1!1pfO|^z*|dz+)0; zDew;@o-ptNdB30xxQVkIxQR0Yyl{*>&kWqe*$jL@;%otazr@oD{59d7z)hT8z)hSn z;MeY{2wC42z5iE|LRi8BHG?LBmyN#G{V6!0R6(|azn zeI6q3N8|#ZBRmhdi8CL#iL(IsNfKuva1&<<@QB1&3j8gJCk#AK-d`vKZsIHlZsLpp zPe{M30dC@K2Hq`kb^Fa4V$i;s%@Y1v8`WtY+{DH^Bz6-c1&u-ua z=V<>uz>WVn@D{P}2X6ci0{3QX{|Vs6{}Av}u}=Xv{&S_AO#Q~hJ`cF@UjRHI_JzQW z{}SM(b9DTrz>WVh;4NZb4&3;!0iF>1C~)Jy1$e<+9ZxIpr06c-QL&E!H}*ZiV`AS6 zyzpH;ZuSFDi2We&ymO`Aft%wF0WT7JuRn8qjtI{O-t}i~7X}^|UIzTxt@^pUa^Snk zdodB@bF_U8a5IiYfgdUVKdsHc&G^;|+{D=l+>>~^fKLBkc`xa9GX(r)u}=Zt*SrV!hs^e7^34Tq^34OjM)J)EZt^VzZsIHg zzL&&P0{jf&Vc?~bZyE51#l9T)e}qSXn|y14n|!0dnE>FD0vSt_xa3r z7?XVSfJenXANU&K1;9ibohwwt+MUrn3@ZIEn(h}fh!b^dh ze8a#^zGcAwGefuMa^NQ48sH|*DDYDyo@U@z3vUG;k$gLWC&j)C_>uD7YYe!_w;Q<0 zw+HxLl5a0?lW#w86XyW%gCw3o;1>u_0`HW3hk&ma`xNle@*b}DVrF|Y`Q`#Q`Q`!t ztW?);K5&z7A#f9C5%6K=ePQ6o2@eC0OTJ~m?-KiR;C~k$0dDfG0dDe*0`Hc5n}M5r zTY;N6JAo%8o-W|ukoT9nfe%T(J;1LK`(EJv!sEbAzWu;Wz5~F|k$eY%n|zbNO`Jo( z*GfDo;2#Um{bOc3EOb+~ivW+{76LK2_pr2EJH$EAWKm+X;M7 z?7M*P?+sVad&Gd7e7k|0e0zX@c)ZTH7r4o{AGnEg0QfkGXAt--;Yr|mgSy=e0be8b zDd3+7_cmmE>Fd%|=7l-UmZCEq;YWy5v(c)F++4ZuVeSK-F3*SL0XN4j0B(+31l;&91KuphZ3SL>iN4R(3EbSDiUE&{eGl-` zh1yRqa8v&Mz~f>+0Nj*Y0(ik9?LP_J_)j4hdrz*{nsPS&^MHGG+J8Q9%iV`3jhF72}%xVKox69I1gM}e1$eKT+qe=Bma?*wlA$ABlqz8kpl-wV7ns^gCX zH~t5Jw}|~9aN|D-JR$Z&z>R-Tu6vn!FSu04lMCGV&j;Qj_65L=|03XVu`dB`{D*-T z)a!W4fE)i2;1RK}0dD*^1CNV+3vlDV6S&u)xba^GyhZHG zfgArdz!PF01#bMe054dg<7owM{C5Fw5&IZ$l3zq7527nv?3E&a2 zPXagoQ^4b5@5%X!sdwW)54hK?u7a#f!<>jo(J4K zuT=m%A@+s9&HA|nxOcVAD-7H`S5^+ZMsyT-MEtY>j|=Yv9(_%prwju3T68=K;O05K zA>b`yp8{^|bN`Zgo|q8(JmAK@0C;4%j;9c~u`dCh5c^W##=Z=A1 zC~#xn0z9%p`)>tq?7M&`#6AYx*!KXBtknK{fgAgN;0duG0B-CPz$2@)|0Hl@p8}o` zd+)EA^=|C*fJd&?{_}ww`$FIeu`dE{>`Q@1uG9X*z>R%5@Pyb$fE)WL@JOrn-wfQ? zw*pUyeJ5~Z9|Im~)Bd}G8~a}139*j@H}(U-BiC#HgTRe_5_m%FhkzSH}(6Xa5d9(0WVywc?@{0L-TIn=6X&K@Z^uQeJ^lxou?motHe0~e2v622>fl~3E(Eq zBybbw5b(2Z(s8DMn>ce{pQy^ow5wi;GY@$EgW69%@R;xdIm~+{D=r zJa^MX)sF^%-zxD80)JL`0=S7Y3Eadv1bnNEV=3S!&RiLXO#3X5I17NA;}!xp$1MSF z{D*hctMwrrx&@De?Rbu*be|V z@h6areG<5dKLyR*jIbiG32&jTJ2`+VTWeb2j{`ULJ^-{auD4jy;#eg`j-bv_=q zT-GzlTO7RG!IKU?^k|4qocu)+z!997-3iHi(@FE8fJ9xywn;pErICz)-FW=6z6B0m;^0vSZ*}mPgZDf5kb{@J8ytVc!Oe9e zEH`r>iTR22&zzT;=U$O_S?hV*-aO}v_U1WOdBR%% zTu;WPofKL1_EZ-(uNEEdDQxw^;mtEgsvJ z_W!ZP;}+j$@nlll^ZzRX=V1PZEUw?Q)mu^)A8w5Kb935{{$+B#G1uby&Zg#h7Uwo$ z{_-uZ|DPK4mI8~Ldknm#(BiuqC-hll@!c$5V)5NAUTX2t77tr|4~v&sd{2v)TYQYg zBNjJ(g*Vq&e5_?3wfJ5ZZ?^c}7H_fmIE%Mhe7wawE&er&cUfHD>ChWv7SFfryDk0= zi}zT3AB*=|{F@e!TYO)O_gj2Fiw{_Qe~S-V`~Zt5EM8#oq{Sy#e8}PlT0CWO-Qs2A z-_z~?Aj>}2;s;wi&*FzzJm2EqvUq{T3oTw~@o!ta$l`}tyu{*%TfEfbM_4>;@gpr> zX7QseUT*Osi$^S8Z1Eb4PqKK_;zwJ&+2WHe-eU177H_rqREu|7{1}UOS-iyJF^f;L zc(=umwRn%kkF$8M#gDgm+~U(M-f!^}EIwfIQi~5-e1^pn7C*`2NsFIs@ga+!V)2y4 zPqnzWCEfl{vv{t>!xqo8_)LrETl{p37g+oZix*n_Op6y;e3r#aEPj^7OD+B#i-#>< zX7MtMpKbASi=Sihh{b1HyvE{lEFQJ^T#Gkb{9KE-Sp2&dZ?$;2#XBwjJ&Si){5*@t zEdG6qcU$~?i}zUk0*m)r{6dSzEnZ>qev3yeK49@miw|1-B8w+1US;v5#phXk$l}!& zPg#7v#l5ZR_P@a5xfZXnc%H>;EuL@ji!EMY@k=aTXz_&>FS7U|iEApt;N0f)9wE{i|1Or)#7;;Z?ky5#c!~9fyFy4UTE#XButYVjK_ z9=7;R7B92-k1Sqp@tZ9kvG}bPud(=#EgrRam&Kbc{y!FPvG`9c-fHomTD;TZw^_W) z; z@ga-<%Hk=D-)nL2AL;i0Ym4Vv{6354S^PH^&$syf7B8^)0~Rl|c#p-4EWX;}B^H0s z;-waU$l_s(KWyMy%vvJ{4t9+Tl{g0w^;nQ7H_rq6Bh5Z z_>&gzviMqy$1MJo#k(yYw|I}mpSF0f#hn%QL@ji_nZ*Y!UT*PMEgrG>UoBo^@z*RKwfGwrZ?^a*i?>+(EsM8W z{BIWTwD{W=@3Qzi7LQr{J&Si+JZbSBi*L60S6{y>fv-y7s}lIC1imVPuS(#n68NeF zzAAyQO5m#!_^JfHDuJ&`;QxOm@UJoZ|0ld+Yi_uG4VLe`Z`zXN?-4)^x3}NP3alF-d*WpUyoLLg0J^bdaSSaR657kW0cKtMmq6@1^uQU+=B-YG032`VL=@SNcX@e@*G-zW%z>m-;$i=}KRJL+P`9 zy^qo}eEm(Oi+#PX(i42WpVDJ}y}!~qzCJ+dZJ(O_3zXjE>j_G4@b!U8uk-aprC0m< zAf@l{^}$Nt=<7q2UheB}DSfH03ze?)^`T0i?dxwVJ;T?BDP8RA!m!sN>+2(x z&hhn8N^kqb&Z&r;p-_%-{|Y9N-y{IF-l+R>k_3a zeLYR-vweN6(ldO0oYKXca+}tACrHX(wlsJw$dAXeU8%Wd_7y~)xMsi^c}vQtMrY&K3D1GzW%P# zm-@O~=}KRJPwBILeV)=YeEof;i+z2*(i41rfzo4reWB7hzOGPu+y9#UBT8@bb*0i9 ze0`D9>wI0M^lD$vQ~C~HS1Wy^ujebh+}8_~zSP$|0e!H!($}?0pY7|5m7d}2OO!75 z^+Kg5_sF;Jech(?*}lGB=^4Im zSGw5OHz+;9*Bwfa_4N;w&hhmRmEQJ|$-h(SO}@TS=?%WVN$GXI{*ltFeSNdicli1i zrEm20tx7NV^^cXl)Yn}~SNi&Yls?38hU;jqwvA(`v=^S4_p!Bv6P5wPfZ}RnOr8oHcL8aIE`XQxP z`}$#}@9^~_O5f<~HA*k{^`lB(>g!&mD}DW#(r5enaiwSY`nO6K`}zr`C;0kFrN{bu zt*F81~FN>A|h3rdgm^@~d9`1+4ZZ~MUHKcMs`UvE%)gRlRj z^g3VvS?Sfj-l+5)zJ5vR8-4w<(#w7Qiqe<*dQj;~U%#sK*+$dZ+Uwi+Z0!_Jov#Jx z_y3-`{Tr5x-Jov=eGBLg(5pZ%1Kk9A5$I~r7l57%dKTyq z=;@%RfIb5B!Jzj8Js$KPphtrKbaQ6?{u}iBpx*)gI_Q@`zX19<&`*MX1oUq}-wpb9 z(6@l@0KE$IGSE$+7lEz@eF5mXpl5*&fu0U}3g{z19}Idw(Bnbx0eU3pPm@sppx+1m z4(QiGzXbXP(9eN>67(aWe*^k%(6@uW1#}1KRiKxFZUVgsbT#M;K+gp|3v>wdbkI{k z9|8Jc(EEWN4|)&KBSC-q9@IbR_d&k{`gPDRfqnt>bD*CD{RrsafW8~_?VxV~-2r+P z=w+arKraGa4f+Dmb3xAn9RfWa^c2uXfIb-XexS#L-UIYV(4W2w^$+@e(C>hL9rR0} zUjY3a=qEux0{Sj}yb|Qp3YJ>%$v9YaB-oUizDM zkh?uGU!6yq{rP@h%k*1lxbd0}n;Tv+y`C(+aN9eLqr>gf*N{kFwr%_N+IimJGLtlHrc>yr=l`Uh-db^(ox8KHS!n2)BKl z+?TFdhuiu4o5@@0`<4Rs6mENFEnA1%mnD+h)ET4lY#QL#g7p%E~_A)8~3#U+6C5!b$nvU}l_iBRONW!>*#CKg3P*i^^H>Up6PXu2Odr2-WO7fsgqcwWUns(Y&xx=A zBix=5;jgErqnc$!I6WxBg;Z%@KEkW!?zjxEqB|O@42Me@zBk-1!(FWie?2`N?N6r# zl;Q8`GGIEw+2Q3|Q@heGZBOP>=yqi%xw2O=&1hhMnnTtds|tv(EqyCTHM$EazGObR zX?rF)j6c?qMLt=y{iW?iuGs}-(6?$F5!FskGLAdSsj1w;zGR1R+skZUP4;c8@-$Z; z+;!eeUO{}j^0WL&_O^Izj(63A#vASU**T??Z17BSSM|x|qSN_HSeMM3WYo86 zgejSmDR||)qdbx>8NG`tnN4ILZqo^NNS>-_Mo=r?t{g3YlHIAIS#8`=h#l0^xJP9q z{{&qW%p6%}%;6C%+P3V5wx(9de8sXGa>lHBdKb@IzO0q&a?GknNYH3~!zLPF=^&%2 zhmu_O2Fs`ETZ7uLp2pzsDb|;qM&s#IR2p9LP5L&o?b$Qi-b)TnC%x)CRaW7S(9hXd zDc!IMcg+1c=~%d9kN-XLYvfZkrd?4Oy;tK65<&FrSb{bUxGTFG3SPUgEuF}G^w6i$L_rr43p6~(4z zPE_CelII@j*UU64nJLP1NHw#uRx+z71)a>V|KTSyj*~f?r}lI+8=aZVbBFoK{DS9t zQ!}0EWUfCFl37YIa5D4wGoYERD>BK{t8abDwj=yx8edP>OpWralQ|`su9;p+K_~OZ z`+hQa(()s@lEyGAnG<f!ET>{8V|?$t-;@oy-0Okci9voodN;sNW!le2bn68C{PpmFc|2`HZ#X+JO1K!-EogS@$;dg%Kz&cDE4 zX0PQ*?kTEWFZmkHM(GV^?G2=@X^8v|rD-qi+G0sMQ@A=U!@QaQER%3A+3=rjw_3Qr6MB2-*>%YST0?KP zEPK;y97Xcu!7an-qb-zZ4<**p8ptE}yv%6}y-m&d4L;g0X=oj@CiG_e+_!TEc=jaR zzN|mow(fCitzPmGipJRff#w&s4Y$uF16rxPlI-WwZ(G+smk#kZqdz8x$x78)o1DDm z_;eFihi&1hN_Uj;6oJ{=9wNtm$+!OIZ~d4?%j8>Z&D%20o7$GW*48xG7uw2o+8!Dl z^FX{UG(=z8=MIf|;AyqICK&p#je1`wMH{AtUTYZH9@@Gk)E;{6xX@4omD1Mj@hwx8 z{IDUHB%R!BIfQh0S}3(dgW+4o6VU67kDF3$q1RS~wvO0xf4cIyS_-LJ2HTo8LbXug zy{Ee4@*x|LE={KwMykkY374^?R&7fMNu4Bzr~CVmZ2bq=a3xF?_r z=(K#mQ3sFnaM&IiP?f;NdRTBR#HXZd;bop6q!#v}u?T9Rk4lMZfxXfqS=Yng=^PGL z=h^je75mlous4MT^^i#TTmMaiSu$aw$gBtZ$^oTwIdxVz?@wP@pzTL~&h}@iIIO{j zsyRiasfNLDdmiOT*C^;h&eILM(D$J&BbcOXpl#VFE0%rYHRcun>0e`>ocl>{0rks6 z2eyptrB5$y$8Ou2K5U=$A@47hx-Hx`K$nHa+#F9E^6AU+tufk}PHD@zsvem`|AoqJ zzlCAAeU-9MCssERSTU5dGCpSIu{1bPhl*<}eMWjJJv~aSCER`s?<41_5AlT=p4>ZT zwS+sy-#Woxp@h^JxGKW7yj0}HieA?*QCnyqD%>O96tDDsg8ok9PG537eSa#Cl1Tn^ z6CaFDBeW|XF5gT}RXuFvdjqsSY2&l3*YDzQYTLau?wN)m%Z|P`GN;29KE#6n)p2hp zC=KjE@k1wQe8?5l$7AC*PSA=+Cd;V@gqJ_db&@f;wk_MbV%b)& zX_Tt#Eql^HI_60ljz4J+eX`xEQmXr8c*U}$Z@Cw>fn=C$d5GrrkYTOoO4SJ4=JF8= z#$5L;x?V!=!yV)J**vP;k>8@lWc!F=;V!DSZ}P%2XW)eG37Vz2<vkGk-Xn-^Tp5Y<@rUmDxPbd|@^pc?9t}+5GFwkI&|Z zGCwGrAIE%jHlM|uFKI$KR4{)nn_tSDp8^B>70mC;=C?4vIh+5I_?D}|$rB7O2DpLY zT!8N~ECu*qhKB*nJCfkn03OURr_&zHv-(mg^(DIEli8OlzLoAvv*~+aU%HX@+q`vT zRvG2cQ8#bQ=6f@LBAauRoA1iz$1uMkn_t7cF`M7a{QPWw5A##9c`x(Bv$=N^@p0LF zFXo?&$jbL1=5J^7sm!0x=3(X!XY=!z-gtGqd^6 zm`~2;J=8^-L2h1hK z%me0CfpQM$OFy8a z2KA*F^MJneAoGB}^epp$zVtHlfWDMu9?+Nm!#tobjh;+ApfByuJfJTXF%RfVCovD` zOLLe9^riXC1Nu@k^MJl|J@bIRbQ|-4zH~qHfW8!G9?+Nm#5|xcz0EwJFMY&3pfBZ4 zAs*0|_F*2-mkwth(3ehN9?+M{h-dYsYKGXCE@y~+>4yxlFWtou`_f|!u`j*I@N@c7 z;JWNP2c-Mb$@D$2FNOA}oCDTn_tH^=)@4sH4_KFRltJsV1oMD(*$2!6)@3865)W9H zeT{j*x~!0Sz`E>M<^k)nGnogh%PwRdur7--4_KF7!#rSJb~E#Ub=f`41J-4|%mdbC zzh@q>E_;o6z`E=o%mdbC-Z8`j)@6G!4_KES#5`bKHkEn6x-85*U|n_|^MG~PLgoSM zva6T}tjju?2dv9}!8~AH_Av8+b=i960qe3s<^glb-X+90W}hP;%sgN&Ifi+_Tr!h+ zz+Ccu<^glbBIW^e$<@pQ=8_wk2h1gRG7p$b9$_9Zm-I0Ym`h$|9x#_|VIDA-e9Amv zE*Ue8c)(mTfqB4Oay0XRxg^9qU@rMC^MJXemU+Njas~5%xuk=6z+Cck<^glbYUTlR z$urCY=8~6)XU!#lXNYsjc7`~Yj60Sf&LxL3#JS`IhB%kZX81XCN#MF{)IRCCZ z(mLh=ed*841NzcC%mez;$IJuz(yqr759mwZWFF9$jv$`Zmri1ced)Ulu`exTh<#}} zL+nepGQ__0YlffGmjc&iCw@KMmyV|If$OqAkE5Ie)@9exQG?cH|HC|BUB*!ct;?Qd z9#~0_4_KFtoK8GoUG{b60qe3unFp-Pj$#|#z2dv9}$vj|P_89Ykb=e=72dv9pXCAOF`zP~&by>~{!~@o4dovGM zmmSPJU|n_$^MG~POy&XWvhOnwSeGqg9_+AR>#{qU2dv8;VIDA-3^CuB zy)GMeBJqH^WE}H=x#SS$0dq+S^MJYJbmjqb$@$C!=8`(*0dq+U^MJYJCguTi$z99? z=8`qc1Ll%`<^glbUzi8XC0m&X%q5>O5132xN{I)|B?mGOm`f%z5130%Wgak>lrs;Q zOD<*}Fqd4(JYX*Q0rP;lB*r{oE_sl6)?CuZ5a*KD7~)*AjUmn@yUZYnbICUu;#^Y1 z5a$woA70-~PtkqK(}&Ysq3=wNc#&@$kDt{>_kGp)&AxKd<2i)FVv4 z;+@*qG!*BDCff7qTfhJCPLg(;+4h_{#1&-CRX|7dP3~aN{D{z8<%Ax0KC^A}ne^sO zTi^CS(+wD=bSQOm`$@93pRrOoEaY(X6DF&vD$Iif@{CnHz4b?`qC$iAlk|(J?9>5P zJX=C{`e$5VJ(eNm7^ZTh0&41^a_pvd7|Sk8RTRhOQyd-q^j1@hN{)6>C3mvHRK)AX zlZh1fVig#hhkCf=R>bpk>7|S2UfNZc9v!zYIi2>BI z4wq5iSM$ihrYoKeLw(b;ZAGdl^61qzH%V2Updn{aJ-F6BD?x2BNp(9!yQgNhrMToC zrGPWPLW1{B*o(yfnT%I+l(g4+NgEPSuh1VCBJE_D{E2^?2X6 z*haV6Cul%S{!;Hl1;ekL`D3Astlzt4=SJ2E@r;pGyzTDvR$$r>J;lS#MBP8uo$qT; zsH9TubGNpY71*;K)k~h*Pfdz_$>$$aPp4((K-@{^dwv}MS??Z`zoe1R_1d`^Hge~&amK)^04_T7ALVqPFz+9SM5#8 zcM)b6o9T%)8rHhfm`bBBIZ1h@2T_Ng*w#{r?e`b5Ne_%P$!a9^m0Yh?4m>d~QeF}Ba`k!Yq;G(3HqZ5*lD#+kKy)1Db~OPrqJ9zh^gR8)GzN4`d6qvYzn4@Nw3eXn|E1>_SH_#> zlYKYqBf5t17@@XJ=cgFk*j0=YevIDCp-to4$je$vP`P?|DVx)jtsW^g?h$Z^TKE9dGH^~qn0nLV~xB(MNE^`$lrF;=t3Uv zq#j1)tXlq-Q^S5iauM`OA#d213z8@7kt=1l*VItPk3=3SF6n{u@3OD$G*9U$dh02k zkvIL455)V1W#0kr)Zz5ls4|;EiKpkq4qbTProyzL%C&-^jG{{@icUIO#%y`^6SRHB zvr#ou&bTn$+x?#UYzy_&n!ujQlp1k_i{^Sto4Q#G)de-FzT}=`NVl)DO%||8$LLj5 zx?F8NWJ)orcjP>_mOZZ;t-jNyzU1M1(D$}bYuZyDrW_eU}HT z$7WN4)OTO_x7Bx34QxJ_o^+*7s3*`n=mLk9eaYGSyYkGxIckpjL;k)!6r*!AoM+qII<$Qp4<9r#xEww?N(4yC*Pe(Jy*?lc|vI@xzjFPTa69M7-s+C6a0%4;~5 zE7JX2mERTW<>x^z*7%eDa@ds3F;sMRM^}Y(cq+5^D?gP0kso=!u-i|CcRH11^XDSq^VpfSXyv* z@XH|Toc=A|e|sq5??DmP@rl#4P-4tYG#54fng=awsW>uu8<+eJ-ybNVNoGeYu(zpq z?`XTcKj4=HuHe>uj{l24XZz>*KjB^O3gb^+O07vP8uQc#pFvXj+|1pOv8+m_@;Iz@ z5pO>vt<}QeWxg(>w?}yU{Pgx_*5{HAERBxw>y}^yYL7z7&-R#~*6N6dkMg&xh}7t7 zMLbN6t||kS(N@*#_!0NMXp^5w zV6Ge;S%1Lqo>ShHU+?faWw%=fL@_w+C3JE4{=UVVL^eMOOU(Y>DpK{O49%AW* zm$s(2+tdq^+xzLI#4Sr`bf-XS;|HwTa&~xKvS3|up~C0~49qBYg@++^!8ezPaBB3`7A z)S73V=u*qz*B|K$Q9r$t$f<6XYx8`uw4V|k7JmGhe;1zr!>9jU82*^9V-6^G3B9dH zn-3jO=c6>7@FeImrYqgFo#Nu6pi2qVe7Nb1?6IQWDg~i8?QsijQv2leQ%mKt*gA|} zLF%s>b6q9Z9DUt&$qaQ=J|U*Y$PH2#3r)FYIpqFq-#wMcDcT`lL?VYA1C`4dc3=u- zFr#3&1%|0~s1&lVIjeQS1)LOZruVOYW7=XbuLOCS|7LP;ZlEic#XbH3C4HKAzq(vU z@1o`K`*r%vE<_EL)(!2m;@X=!MR=30quDK19VMPVz4 zc6#i8n${vanj1FmXnT8^o}=4yxjh_8HJ=*BnR6u*;}3nV^D|!YDA||%gsyDu=!o~R zt#K08UU+e;N<>{(7e}?!0LW3s;HHjTCOcVCrBCwgF;Kr3No~gcUZgT7ua*PrT^w~q zRb4@)R;L%!dvl#oV>rf2LvQ)Uy{fjXACEGN%|X7v$bD~p=sl1A<+Ln&&l|Inf1aL7 zjkfe9&*z=_G)6bISuAsCKN*Ctd0&rnWY~R%>}g zXZO=-#N^NA)Z%pElW%o$Q1vSsHIJYj`t^Ynyzn7yeomJ8WHKj1ni!nFl0}C(oc6QZ zK*l&v1;M*hVrqU#NFbxsvG`?O3eEJc%NVMT!_$F^?Ri3Wry)-H@dT}h`HMK!%;?gu z%2K=KCQUzGmKa9e)2j6^Vq^N5xl>37zK{<*jpo@O^EIY}$ajk4IgK&D+jpq$EjskM z9D0ednP_(9Q-a0`3fs}ydlu7T((Vf@wnpqhizdzrp*O$6RzN{o)3mTc!r{9x*$pys~LNibsr`#QG%j=|1 zURL-&NVbgngMEek|LgppDo|;DPX2U8@HzQUhy33)=kFuchQ8!v?!#Xof9iI2{?>$L z>YgT{UayIMgpW#)fB0S{5a0Zfnha<%;`>KAG}fe>!{!p&))#us*wTbKW=)(dsF#FN zD-u`Jk13GX)YVJ&p*3N=eHJaas3CQfji4^v)0VqAr7rN$q_;hux$nBfsDoSRcW`z! z4!#*)5sDAX_OQlypkH=C7keJ;#SZ`%!?Rs9q+JY07vm51yu_HyC`M$vC`!8+fiCvV z+D(_vg_u+w=3X^_7E51wMKBKbtxjwzmDBLHX%QrV`pDo{$ zgX9M8uxs`Xg|fr0_70)=ZdsOMx0|}Caorjk%eGwH7uv{esV_9hA6v?l4KLE#=B69S z5YZuOT-4iXDf;YN|NHUNIXs_)h7N9_y?Ern{-u7Su!lT!>;A%_#JJyVrn7jy zFr?0t__$UX=?&fafG%D*(6W*1EL*-;Y zs@0xhL0-OZykzwoa-%yAxEUVgW?b40^c`}eI}f-S5#;6t-G6$hHADX)H~aFi-b*z* zM8l;Qo-hC&M+SMkBJI)cQ#`w_OH4E#y%bkgmPh&ljO=nhH0{yuaoXdzeUBbJ8J6vl zT3)utS2!JRr7Plgf7Bj}(;mIg0zBphdF0y&;?eG~+GC03(Yrb$#(lV*>>A*4%T#ff z*`0fKBg`dvqN*V3Xj|W0Do?ot&DW}VM*^iKa){IzIo>tXd&-=?>llt2atXuRQ2} zpS3A_InRAk{nQdIP5P22-9|Goea=_+W$Z;)_-ATvwifjEHB*0WJ-i@uZN@7}F5dQx zJIR5R*Twm?kfWs&U&-JVnz~Bdc&z>{tkW8X(+Wea4QW$;c-3F&ER#+;FZ>DpC@3A4 z5_mIN98+PE0biKrwNv)f1S+1u^QQC|X;!yvOXach0MB*DU9D2dNUg^&|AKZk!FJYK z`gA_y&t6L(%{Xf4*WdQp!HTV=el_vwi#*tuz22r; zplb=Lee>B(Q$iNh|DoFAR$(t{yML}L&N|1n>cDSbf28hbul@a&lwF_0?K#i#Wqu$? z*Vu;?OTaNr8BpExMZSQVxGbN$C;L+jFeOE;hFexu88i2Kg3`50|>s`u$s(|d6(c8tIM!UI(>+;3fV zw<2D^K0lbK5 z_`Zxf>UlB$AdFl%lkEwAxW2{a`q2>d+M$!>Vu&-6B(b7@X4MutxnSaA< zM^|88#P$Yd{dsrmcDUU?y;Kv$W0a>gKACGhylkd{vM;%qW7k(7XmnHyeEl18wCz&0 zjW2ttLjRd6QIjU!5s~s$W&1f9(>*2WN`1*z`X1PJWN!P(j<$c{tDf_$Bc4h>+qI)3 zs$AOih|rE#Jr`Jx@Tw=&+r^gYRXfUp3b%7d+XJ$cm`f@Auq0Gk0coH;ek-@At=#k7j3XIrrSt?z!id+0SkyT9_@73hBs@ z?54d`m*DRSj)*g&j@!%Ik(!Wy(!O0(9G-3Vk)lpqT5|}u=0#LFK*s%f3ZJ`GVb|{4 z{8Vt!1({gb#J&^74XfnXbYpBe8Zix<#%e@51}Q$=3nZ@1S`qI5C8_v}wiH@ZRTY09 z;D&-IMSiSUI>FG$!ZFH8+`4x^t$d`a!fFzd+)A_xeSuVi9SS#HC$;~go`4QPEqJ`! z1Lu0o1nP?YvF#iL5ARv3f`=#llY^5da(y=Kyozx(hRa%VMjb6C6aj^qVxMV1Kd|n= zK%{60d{k6ffoep%cG4}J7-$cgkk0Jg z18}TtkiTJgv??b%TVbqUA7UE-gi#lRlNAx@p7BArN^Tk!I9|vhO_{!UVJ@HHN;sT_ zpW*W?ys}X?x;dkmH+cF*WVK&%wclyLPCT`0(Ij2&)01HRgeeB{?og88+E6ZW$lhz= zUvYboKySsKh=yh6`XFzGmz~#}R$*t?r^OVWaZ8l&d~=WH1vJB4!QSD1rki7{jRuA& z%+h4_f-^Nv1ElS7Y|pz$@eGmzWB->gIt-o#zWe8C9?PKAs+3MhM2{M1!_nWzRg)m~ zaoJFPo7=XQ)d5q)7O^UsGyeNb5e_89t!j_~+EEX7Lyl#255F*?#`2!T;-vHlMaTM^ zaEMAROP$4(o~Vzwz$l+)id-W&cjKXU>3Lk>5bV(i%rO@~mHBBDzZALz^w*vu2qKS- z#PW7rO#aBw(}~R~Wd;P!ZiU{IOzltzp65F4KqB;BOga>qsN^(xjdF#hLU*YEZ6+12 z2V(ps3oR09Ho;30mHp&gq~rIHaCcmTx+pyNH>^`EQ)yd=BR^_XAK|L4sstdcLn3nt z*gXM3l*miqAcGm!RP4hMW>#*~v9`UqY?1@D5q$w;o`W{Y_e({VA( zN`+T`VR{Rk*((V{W~hh?*MZ>Mk8a5*J_MLa|F>aRgl#A(11tzH?Y38)L^63X#FRYm zNQFT_hE`$MGiuUd%P2|?F$V(7rE3R8WYcghuxUns$)XWkn~!**;N(&X+Ysup5t-!# z>oFplEoF73K&f_OJ1$eK{p@e3H+FPO>#-RbHywuzST@I~AD|>pm-S_KN2V86g$=8< zOU6wX`ikST6+qB#*O$2=Rb~q^y$$iQM?o4pTW-4D2Mb%~k~egBs?6t8Wxf!=;)yIY zguRoktrDxnE!#PFJ_KI)@L3~ndXkQBPL;V!Dt!8+$~-K9?D`HivaRj$B*;z=B70;i zd`?T1d3CDHJ5yyonJV)sWO|w3!|h2crk2tZe*4)+_Uj8IDY5L{nJV+iRGG6t+OzJtQUWW>u=pH&SITOO^RUs?2Rub#wnzncV_3 zIJO--2kV9Fv?q4T40L|do+RI1F`sWLxKmAO7uCceRzoEtq-Wrk8^o`_7Zbf_~v z9%DU5w%{g_ga=Y(zLqNU-Bg)tQf0PFMX5bfW%f;#c}A+tGm+_`6b3nr!1y22qnvS{ zw1|sPivb-oFS-{s3?{lhVcO&E&hB{o7POLL%JG(-(H|aeXUVqiBpjTHOi$0&rW|f> zNCj(Rs?12Bp_IdIb}Cq1Qe_^QD)XoS7HJN*H_K+6Bt*O?Rptw+GT%y-xe%FN-lRF) zzQcWS$*i}Wj7XNbDOJt~M4k z#2;Fhs4NCjedBnp6aPb);w&I)jPi`7=_s)gp-Y(BR+MPoN(KPZjS@BUB949`BTBS_ zDQQQEhIT}0aa`(rQKB~qhryRfFiQ08Y$r-IpT&YvqDRQ(h`36CfNwM+Osd*R5hWTZ zO)^3gxA^Hib@T*?1)@a7B18-vZ9$ai5Q6;6qeO+bCX5oj1%J-!GtP|?O)eu}B}#Pk z_&*yZdV=1fu+8#Ci5{~3$b?a%LMIZHavw##?8K8GPnSL>){5nC zI9hQIiv_g;-}q!Q2&ja7I^#~lMrwua_xoa}D|tPQu23!&lEqH9ZbK_TqhRc`g;A$u zT4A8%kDVsSGGeDaZc3;XQ8Z@lImXqBaixw{>_2u(w1WKh$4)P2R}yN)h0GDjO%yvV zOj9e=MjnU+gv(HjjpwwX7*iAnJ&Mu&wuFj-;DoUb%dsNgK~C_O*fj)5EyVUmry6N4 zj}?IiBYTR8ARMYWVLPynGBYtr4Sp+XnGhd=L~ z#d}8o##C@VGT>Z+=M-?x<%~5MKBvlbR^ju34^Ck1&R!+M_=3YudfjxS#1YT}xj)QF zKA*{vd@MXz8O3|rg|~BX0o$=oyWF}S zi~wEJ?%Se(W)+BEO+KsL5)i+*^&X0eW?<1(#79(AS9V+1Yis6qh8A2^NaMg=|1n18 zWEpG;;qj!8@5Jd0_aSE7F7YA$tGa6PhtveTK4P4y(9B@1&3Neo1&t1 zY#)y>x9UtTpvA3`(jn|uSNGHay5KcMB~v$1#kuom*fs*R0m;y4nD{7;OaRJsPQb-r zm~J!_ReN6WbHM##|%EwYK)aO7jA?x|YE){RhO z2fOCs-kL{AO~A!K8ZD{QHCHJj5Kndk|DT>4?um0xT(EVQfveRLCX1k3xw>?tUXiUa zR%Fp74rag|_k7~P*wK+?eLIq4r{B^S7y~6h#;qq+w89EU+VR{7!u=Ud{{XCJ$Oe~- zEu6ux2X!$P;QzVSG2z~PMi9K_z%iAB4qSiQ&@jH1t4lzVKsSQS)HU#atlflc4(PB5 z)754yBsL#`#zx&QZNy7!F~{nQ1dqLfJu>$!tru$Gs<-CIkPg007&oJ1;C@L3Byyr( zBID}z8FWzAcJPY}=tv&iaRdav;ShT&Y$2$@#Ru(fwv$5FTmz_%>!3}KEor|<2& z$ur*47I^6KcD51mBx?(y{x~ZqeuC-kluBL4+j;GGg7SGg?QAIMW;LvB0@Pi5MUiP% z(#%JQ8`kDsd&m#9PNXJAMuP<dXw_*)g$caS0J5DlJZ zMS?6HaeYFTayNtb#tSgor3R?b0xC2EuV&20%$(qu2rhce{}(_gkvApqzyld5q<_5r z#apr$T5d3j&T&Fi2E^j9brtjJb|G?xd)7lf6m_BgV=yGY1J}9-v?Kfokd=b9`~D0tX)%Up+Ye z3_(xju?Z>S*6SEiTx_YQVF0ZIBOzSgn}XFSiLAJV!?h4oYMQ*hHV3cW=W|X$q3kzL zZeuFm7H>5yz8u?9?Xu-8>sB2luV9aSW0-6bE>B=GSRzOD8|}ISnTpGvZsZ4arR6l=b>1t=BhYy`4$rP`FOk=PZolvb zYxs5h85Z{F_V;vlk>cw1=SWGc+tb9tY@u%R3hh6v+Xs1AVYmX5ZGR3M@Ja_oWRN#U zCz?^-@yGikqcKHoaqf4Z7|@H4iW>ogg5g_oS|mgRPcb%_by1>dBJ51XfEjcw2I3;2 z$Xx5Gi`uE`Ft`ukk{@XV&v)_J<7OY(bf_JK(UXSDP{s|w=o<)6V?`C#z6_?*I&Fji znw-prYH7}9H_+~bKss$%{aOlp{Kaq@)wfyr56f!D%L#J}W%UOH8vn4Yeu>I1EB*>uUC6j+LRo!DBBE`` z>V^wkS^ee$kVA{y3O=_Xt20q1Agj-?qLS5_S3*{wQC3OIsvQK7Ar)fkF~#1ITqYH9 zYZ3j52;44@m%1yg)XZ=SaD%fZQh%ug24J{-F$y}1Zj8cSCh)~5o?szg zjAF{StmwojJ|s5LUTBd`)appXeyUZ8QDh?>WWfEN-kJ|dO;q;8DAp+=G)g6JjG{eQ zhz7)rTI+xX;Uv4Ga>*C}{YH~KEix3zy3d~n73*^pWE<35$Af8%75tY(6qjUxGpxEwB zNoU9~>ft&)s4i0%!@DlK2iNTKnnjf2;w74btK7KTAuh36}A3w9GX6@T}_VD9r zFF(G1+~&uQk`cF>&bRr|5k0W^agCQBuQ=5@=xVQ{nvWmbxct}&=Gm8fuN==GquwJU;sSfMwSA`Te_YQ4b;skezHG%X8x%dTc4S<5OeXV~eoW*N(JJ?|w!X z{w%%sOWlLs$aWnikGz1{hp5V~JZbvr)fpo)=&!kz7cS~~3m1rI;shS`kx~(38M#&~ z$~u0GEhfS6*bjalY;jxj(r)WLUr9%t917VM(t=0R2#-d46mbjAcPl?HfhbL6;T#;( z$gqkLZj0nY&%HWLpmtQzj*$89bRhYHUKpt8t`gybT#o(CFu`1`ckb1_{XG8&n@?bZ zul5CTcnKqgMmBE2Wx^}MMiQFk?N|vgPGkctctyO~jl&Kah+9=TK53JF_)FdIEv1PZ zE$rZr6`@UDjbjVRfV0(i86b;8(4`u5sTwWgH*R$R8u0t7(AE?nM2xEOUV(QNtCp`; z(GmS^5Y_|+MF&qFnDZ*W#Z?EZh|zjmoNxPa!Mxvp!AADQJiSLBQuZC`U$xRu3%Iqs zcWC6T(!vIPSa<_4!L6N5=i2xb0|$KnX}~NS8GIXIz#P5|ihP5Xmko-v;Aa6_#+Ovs z^0KsAuDkIOv{A1-zWUxv@coJ*{IJ)63kFzHLXc=Ptv zdAMQkyA7?LJgcV-!(*fRlBr@YdXy2qRkMopHRch|s9Jf!?2Q9qSKoZOu$J6QyDb9>zGv9so@M<(=2$!}t zWUgyjMBF$yrE6{~71RHpF*jMj=l_Dau`M%{E~v8ZVcce|6R({SUgV7uu%oJ$VFbC8XY? zeneF_#8C;7YOTMtm;Fgdl@Imwu#?0PggDfi0RVer3^}a0d%UQ&_gb`jPZwikZrDv? zL~H`*m;^3#tcQod3lMHo_R&M&ebAVJytX4A=}JZ4_Wr)7r0=Qz(rMB64u7pJpzre} z227wCA?SUYOI&ZmMm|gm{RxK_NXeVPAd^Uw#5U;tnwtzO+>?3w6|X6Lb@f zASP}rt(%zWHN1W~KND5#-%*DQco7i6f2&rg)iZ4GM?7I_DKlTqZ(M$X9kQBgvu#5d2 zVj?Nb2JH((rfAyfUMIcRXPLs=sHm7CV**U3Fi(cw6{@5uooTl5McQqw{ljg{OS_Fl zNlI!lwUF)8%oNT`gRgXYK2q#t(|Fm8@;2k8Ek!xj*$(uBr^1p@n{YVviW<(eR*R0*;vggmeuH7`f$QbTjuVAYNBiq(v17saGK-N7BU^x?RKr6tlo}f+K0KY?h z*uV|*wuHD*A&^&rL63GF%?NJI4sN*1JRRJCrr=f&-0BYpc{OeVvb2VCbBzrb`faeZs*RiOa&xW{L`vTr1bWdApZGslCS#|Sq z&h%Q|4I-bc-PM6{EOSR?S<_CyqH)1-B8qCy9gxg8(G%Psa3)#m_E4X*Ll0!!eh#9h zzG2?T9!{p@$zB-rDQ-pNHIBm6EBPAm3Tpxr%N7*ibBdn6hkA2v2sGS07JyVPXQFID8NKuk-}La~VhmusWpAoEYSXqz~SSmxsqoP|M))pW&i# z37VA+ED~u}wRAc)7jymsE_TtHb>0AQap5rz7je1|>#@+Z^tl)U$_5t?mmWA=++SXO zT-=9=f1HbhSl!3P(;<$O950_ti%)4cTn~EyfOYWBdSt!cbIankGA9`g^DU82y}Z&$-P0obRU&#`_61s0^7$VO z5^2zLy3|M@pX65}dIshsT=Y@lJ}udwqNZWkoS8YaqKV&^6TSF};6bBJ{4EQ$EYH;8tt*5UE4DX0GaOtVra69Gdo6{zity}&%pK(iW>&g z2CWH^Dp#)xUx1)moUXNxtX|6K+mgj}GDZYMcVsk9LIN$ck(xhcUVIV_w7o!c*H+?# z6yQ!H4z%bmA%TTF2y;glVVV=Q#~q^L2a5N4xfl(Ubh6Dd}O-s7tbWu zldH*e1cG>JlWBYMP?KpL!e>D;Z9+iO!1ljHrb6Z0B_|Vis!ov^^Q@r^|3#(^!H?;H z$!6;E;gT7*#`Hy@n0k%z7T$7}*GA(m^a)$51&}VI4nwc)2WP~t2FZy4N(Ja+Z2#)k z)Rl1^Sx|IZyNInRgL5K!V)Yi2S1t|6;1~!6X|bP}lAjU_zWfxxPMe`0^HK}V(A`)w zAoskp24X}9SeoGnp%HaT*jG?DXuM;pdUl?ffIBwMd zN;(X!U~7t@CFqGY9D)HEO2|-JiNG3+z1p9pLkkTwL?6k;9)X3aNwQiX!;I;_tpn}` zqikIlud1k7h^ySTM*-G5SSZ6AEcvR6u*lGJTiUhCh&CtXk#^Fmgy`{RpH9R40{Gy5 zYkWT#0egn-W1SgLFL6;ZzY&4-mUd@Jx>r z`*05Qh(LE|OW?-S_i1OEf)Np3*TGB(K4ywA#Hyj`u}AF3z8ui@C|}?d#50(TSmFJ=r)s< z2`Kj!?~JB|x=?x&^Wi_2ZO3(2uYeQ(r$;Ay>9E zLZSnAJW(h`j^J`#foD@dgG!#rMtW!R{|UnIOYoLWv!4tCB)%zBT5O#syfD`X!zNJB zcq|E&^v;-ruonetBpcLMs**`<>^I0a#sCkJsypUBvZemgL{v?{CE|mjU=N$IGg|1O z$F1#XR$Fo4UZN*lYAWG3w7u*09=lINoIXxldrK#iABCl?bRCQ4@fuv|+D1^7czdF7 z{Ep043z24I*`}G+;KRN6*tx>?AVmXxO+nH2nxYR0np;BAf1xInEU^?MJ6*&6cn;HC z!gh5p?}LNyftZZ$GM>n84DX5eApqvpd&MCY^yay^(8eaY^)gztF@n2c)nXTKd~YnV zDm?lfun=IOJ61Mp&#qGsk7w5gV}A0Ax-I7EqZb&df{MRhDW_A?*9e_?tiv{OlEGB~ zkW%P?=^Wlkht;HmQ{B@e&jgg#IKVAu2J8Vr`7?M%_bqNEUz^nju=tf^uFdYUKjz}& z_u)juKjQ?L^Sb$cWkc^5&cO{F8P+Zg?rT>guH6j%NiSmZCBk*Vp2&O?GtNKUlPv3l zy@@m(^|&<^y)b3dCalQ*LUo7n4gFhN7kWk5FNQkOS*t#GA&|SHRxsl85=xlbNe=us zxN{q}Q&_9_O2VC4`=#i0+!_ibJ(TxQMaf7Cq6u^RGwha}xlbsgVhFTX8k6ql>ZT2&@?Whce1+ z|Lq{qErjrI9|XS<2s&>s2WoiweE81^EF3M*ADe%nri25VRfoHE_e-FmDID-sL`xNZ zI8eBk5dO{&(xFl(j_wadryvOWkv=bbAaD`1z_tvk>e;3xFOP~^nW zj|k#E3FjEnf^OqJGAZ;M-VfmZ$?!Cx+qmZ?h5p7D0qFHtr3u}}{XYfCDD(My0qA>f zDemVag??-h_s(02`|ps*#9SR1#Qh%^rb!u_?v(e$(C0S>C^HmCGqy-(j!g=E+PeYh z&t8xwbQ||C_DqKRNkQBn!G%s+gnL<1=v{-je={si=r->ACWYSgj+ZiJ>LcZkjZ?P7 zzRuvwvHBf~zr)bftv}GJ?a)MRDW2OS8Ra?!Dfcg+nil2gJ<$#g^g>r#>S)2OIaEmN z*WG~*b~55PLj@!XD`ZVw=oMj0mbR2Dtt`M86lo;5BkA;(Ey$Hkjn3>a0QD&s>I(2W zA=Fn2UnRj;#;B(_&fyu_g-{3kiJmd;VLugaQrGnFzj4OgQEHXuaHnToyarPL_7 z%1Ru;b{Mqo2Fz%<9#`=sIG-mS7KJlo$Vi3 zt;}H^5PSNL@(gfs>jm{(%jd`VjETJK#h=;~CQD@Jf~tEf%9!_O36M*Di2`j1p{e!o zOS@p^F=SUlSGU#%cK;>e6@9l_1Q)z=qh)3#Hlm~@GXkYB36yBy7|I{Pj=l= zG(OS66Omi1L_xl~{x!#WTQnZt-i4HtFVDivGNyY(<3#&=$nGh5lrcp^&{?#z3*;CA zQ4((Fns&WptcSHplz@zX%g#`9xMC4Z|}+nvO~fr@I7 z1irt{vp<+bF^Y|@NB^tU+_j`ui_xe}f<+_3S2a0hZ&C@RE**b-QhVOWqvqstAj=hb zMsKsW!&h8HtyWs+iBM;q-)=9Y%tPMk%P^pGcCpgx!qG&d!4FT%#o91{JXBL7$}VSE zoVCYlwQ663-C{r=W-`_%hK7O8U~H0jAKKm^mo?(bjCt05XAro2&KjF!xLiC1bCst3 zb(*~Fs>fL(GY{D7p

}yoZ-r*3_MlhTAPXX9@n-oH%5oAl4=)CWsu76XVZzII&oS zDQiiF&563D4ks#wOQ4YKMfgLUcrPg@PL@-D>2sp*4h|;)v53YhvOb+VAWOfre(Gg6pUi*$xi)ttZq#s`kkPvPy9&5z5#zy0La24bRr}{zoYM8=Ec` zT;+=lBuaut8tg{qZ)X#!x7)~es*xP0ku0~7B|<>@Q09*PqNY;}9bW;=wT}OU;zrH_ zH|Jw-&I@kN9OPIpKssRvh9~mB|A+E7wMDpx?s~|Wj{J@2WRv#UGaUX+?To}|*6SN> z{=HD|@b4xeyV8uL^7qk}%HLwyNl8n-h4MFLTO0qKT>O9H;1kVS|GSO|d~Sp-CuE#L?SSty@G+8&G&UoKw7glBmV`L{v5d8hilPkB#F`ojicln~kU2_F%PHsKR|hK28An5&&4plvt%?#5$ccgpw-roN0)w zA%D2!$5gSr>)iZ>7cxIo1y{E;9E(XgRda*Nsf9O%+`OyYI`>Hq2OHfH!DJ>4wZ32Y zj=yQB=;Mv@tT4dq#p+cs!RwjowSf5HHKZz{`*Euuo|Qv6C!4t#D0O?{G@dK8%i5;J zR`g89pOm7%FHX1!79m~7nM>Godf2e%Mv~7Nt$2WKIe$kh1ci^ACbh{_F zdDF?!xOEv5cQe$zs3Vo}D`PU?$i|TA-z#rH6Rpg@Gc18k?k1$Y_O5;bc zfM4T_200o(pV274#*cRMm!8M`L>ixUzU0^%e~VkEO6vGEzHVz>9+Ew&ora3%Qh9bX z=LYp^E6hLCtF0$zsEVQ+e)wiZswfhsHQ%KslO8R z)jr=CR5fyjxH*?1#~Q*xFrjDn*K_?6kvSgn1{;OzPaloeV_6$k<43suwyR~MsPQ5? zKCatapi^?)Qz$vtVcXl{dVd5Ffrp>#FwNljmT>*j4EB;!@DERPxL&;#dztmx_cqs` zo9}SFSR?`w0dRe?c#f30Fl4|{}o zOyaP?n;(j|pf^8U%1~{}S=@2#TO{75okH=~b;-JT=zgkd(>|zjGi&4f3enL0A{xuB z1M&3`b{w;RK5hG*g00v$&lTi3bQPEfuYYSyGLe3 zs$fry3b3$%fRK;OafII{7a!mU2BbhWLQRM&M+YPFYNxV>9RkB z{KMwWt+d6_N=X-Cs9{1`ZToOp<3{*b%xKC1W;L1^HQ25vuSZGVjjQ4z-iVYD4^?4n zTSil%jey8&l_u+Gxd}gR-NL}5eJRZjun(bXyvx&79{&-q>TDP*ZZe>TKm7MX@lNGmUyP!m?P6JXBI5afPhB;pf!7L}pdrkv* ziU7)LyMSg&j_`GfGm(_2&PZJ+??N^jj}Cs?Ccm7fUT8fpaxXn@4Lw~p`ssq437F6k znsBKnjV&kI^pa_9Fz7>q%_Xob>%rE|sNlb^qL2#|rg7pmn(F$kjHY3DY6Ph=@JkBw zw^@E;7z9A3ml12Dh^pl+=QfQevC<&J6HCebb2@vVD-{kwrB=oObwvQWfcd=dM+kFp*E4=w zL*vUvk1tGYcUR?*DxoUfFpQKvy`r^H9$DSm3zgk1gWVkmij7TXck|I4>?ra9QQ6%p zvAg5^DWP$+yUWl6lrQt<0vCHEfekBDc6Y4b?w%>e0^FG%LY`rFX^i6`?$F3+x{ga= z!9F2QkB>y%bV`z3+Frt3@a69tU@vK(#cyrU)V&SE3#y9oML)&(R?+xQ96NfV7~hE+ zLL%dPqYQP5r`q^pZ5y2yif3i;rC+Enr|d3|@fB^NGKFdr8{b`c54sen661S+bTGb# z>z5rGUnU2P?2QMOa>lF+~~QDPi0ALPx8~ka%d4 zSll^Nfue63Hm5rWMIBJI7zbIBL90Qyk4^<>K zz!kcoeBF?Y-MXO!2G}mXR!m3S+D){IYdwyD%6ECi4_F|Dyaw0?Fhv9SgfivG8u{Lu?*y=}tsbK|F ze1zcappgWIqbki+CKlC2Sfh%sWdf^1ynH;~M6|i3J6g%is3f-5iLp|bBj$`>4P7&U zJgr~~U8r$VMeD*{9Z9o!(Q+1oY({Er?_jyL{_lcI!g{Amy|{JCK$O9R2qPC;@q<@4 zyW!*VXR+AAXeGO#QHx-?9cBhM>4`&R(=8#KuV@x+G&Sl)K(AH$QZ|cV;el8#^l(qb zPuB@y9;`%6g7Y)8K|*K#@!gM`TjS*uQ39zMO&5B)!(`p$`GN-ar_1P5K7~24O7&A- zE#<_w;7Ax1c+gsve*asI$ZwUzvRQ;#FlutVd=egL8rSX$#-iC;0ueJRYa-loT|S0s ziL*+Pl`~zJkXu-=f-xM47zyC%&r*0Yp>!6@X5@^oqLw6vHdaAXKb35@dwp3;W={De zU>Gm2AOQSpx;jbyGF6{HhGq=mE9N^GR|U}-q%r46b0Z6pq)KmFPRM|(O4oJ#F_POV zEusi9?2try4)?3i8TT$W*d#SX{lt*T$K9?wg0YIZGi7T*ENk+i zDs&OcD(cH8>`!an?7xX6%lh>vdvI`eU(w60p`gOba&r%?to&3Cm7mxU{LsqcCxMlf zGUc`WftBTtwz4XtPG#_irtg0K%3nj4q>S*lT9uX`1%{8TIN8X7H5M?E=2}^^GIwp1 z*RxJpIn%S_<)!!$JG(7JH7c*Ih>2FRR3bymYHaxt{Gw|k_#>8(fVAm&%C=xE5*e-Cy7%bY01#s$jBrOt@K65IM8&f zP@!xV!NSv6qjZKHhoPq-%DvCQ*B51^| zSH)E;uaYvA>Zg2)loLbyDe^I%F(F#1(qU-vih%)tF)-k7Ar0+BJcuROMHyPkg*LQ& z6hnI((=a|K$huw1l&ccchDgEKaQrAkTdMG6Lg_4)g`s_18QMh9MxzAOUj0-Os5Z1Q zpol?%0PwHrnk3kaQT6#_%x?rMC`S|lE5XzWTF^?V!hP%so+{iN?ud^>!4R=Y6e8;V zG1Wcs9JD+p<%aKLpCF>rsbGj!l;~12{a7>h7XYs?S7Y1!6z|Qi=wzKcyC8;Tb zokh0T+5N?^I(D`f0+G~yEQuVV?Cjx93GD2>-v#U}Jn$CY&4KA&i=4~$AF$1=Gj6no z&z>taq;#%SQZbHiutMiKbKrr?lFb;IjYEE8*A1uCMrPGf!6VaZ<)>1-(nyTMA6 zxrw}lda{O$YuB+4&Mr=~5-dEoF*_n|WW0P8a*2Lao?s1Nb6EkzwP65yYn@sQUt29j zEtEhHYIT#DQWq826f6-c^pt%e*jtM^)4jaosBsXsbsjBKE_cJ zVPFIUqAkX|KT?9*%q<9hW2ES_cxWT(+H`0XCpn$yIS#`^Ac}CS1h(<2jVC{0qg^!g znO?U2w0c2NqyODSY<8(`wt>wOQ%05+@S!JXy7O2f=hb=m?p&6X``_$D|-gujD_eYMhj;{qAODz-#iO0&;1!5An_Aa7IW2%M{cc zN`a&1?XQ281$u#?jh**!ApeYoDg09w=2*wV*rTAfFtXz;ZheJ?)iiC)wEu5o#4i0W zZOjOGorc!fqn=@7s<^@mg>h{RQ_{9ES}GFQm`|~`k=n*Mb0l{pPN2<+Ms0hXha%R% zw8DZk=RAlthvI!yKjPLCOy(sU-Oa9DgRV98wabjQt8%%bxT_@V1Kzxlz`nLntU?}w zH(sJ7@gEAHy&j5hsrmF$)HI)6v9|H&%x8KO|8w^9FqxSt`?(3+G3@7e@+$W8Zj|!d z&#~)<5#5C9fo6s7LKWn zrfNJq`3tzQc8Yi}(MsYDwCG*%@Bs%w&MgHi85L!REMYaJ(L0M^RAZNOP1x)m^E|!7 z7Fsr2GDUT^r}R+wM|Fl|;c%?tgo^yoGP*U+wf#STNt5GBn!51;$4Y$PO2b7H?l+BJ zU~H7GwGY@70cJ$nmDU;d>prQOE6R)Y(!{D~_(pxazELAD6cp!(L%et?$86&IjqMy+ zrgJ2oK%j|+NXgPb_vo=8SdXnA;{V_?xo9Bf>GWC#AQE(XD#XI1pyTV9H+TFumBlmE zCsCG5{@2Q~$BMs5S(5h7P?ib*BW0;u=^LL5=$rGYkDiZ*pcE0Ezyc;*2hCME#ldf>M(7w5-{`y)}N0B>Z0 z+TtG}FANMFJ290xQnfH!DLS);WHyDAS&h%l9yv|i1?A7AmY$)($rpO*g&zvH~ zceC_DVEZr!4D8yFcX3u03LJe3P)!`CGKnQ*GpPg&tB_OyWIU77BR=;Dq#;D`rd%)a zDb_YAukAdiqSC`CsKN=IOvrfB7@ry_K16jM^M+~;O!UocvVz)Tem`Z7By;c9kZjYW zJB+kPg!K71`6PdXw!L4cM2oB^A2o|jKAtai9X|fb3S9UnzimGD5t=gvx3Gy}H~C0B z`$DzrK%QEVq87o|4qOLv|)AIZY0bCRK&^ zqyj0664z&|-wd>1kw{l7CjnXfZs5rv5`PZ~cmE+AS%mYKnD}F>B-6GIM}E|(zW;CF zAn*u;b?WhoGt5BA-nv7SD2nK|upfplQC6;f$~Mq?0u}7DQ(newDmT?(hbxFE_HRa!7o|Q@Q}GCmRtFLQEpClerUiRmvE_${ zQj~Bsi4hZvgDSk%KxF1+1r*LJ#faktHgW-q%s)sK)Ns~qQ6!Vfigv^-Ji)%&n++v7 zZZ!@dme~HymSOi1_zy>WiSSYlBOf#MTGc8q!EJ=YOn~^Znz!cjQj^92NR`y-ntkk= ztR%ux)!x7R zQnb}%7&TSs7q{La))7iY$Z|OMZ*c@L+YvE|TiePAX(js_g@JIT?@rvco5 zC;A2rAU{O|W_xRH;ynmZbgu@SW!DU9Kzl<27QV>Jq9jQ)!01wP4cPg^zeEG3Tv3tjxOKj8FK#sfk}E|hRp97K1S7upR^@)EWQ^`5qA5B=ld9vRbUmoUWdK91fo^}rKybH_9 z3W8MKT3%sf)U`L@gjn5w?5#MPi3G8^Quy<4kc!2T8+Wi<{+{B6lu^9-S(QOb6HO+J zqIpCn%erQ9B2KyPe8MjeYkrgeit%)7;=oxWWoI@{@2(MqyO= zqc)2i>jsWl;8-KqqW}&x!_rI(0)hELhlu`=*mqxTZjIzucwH_6$aesU2ag?j8%Ta# zJ8m5-ub@RI6fbnr^uARfFO8N=iH<+&| zW!%}X?pku&pq{C(2a2w}k4nZzZ086JXLc-2MtmQ!eOd6(pNDoN88YPQ<^)(D59y3t zEzi3k(yy=jH3I{Fv#;+Kf0WHq&tM_mLwHQh+M!RJ3yRAcK?$SDM9l8x(AuSg{S`$_ zIia4OuPEwa)blmDu9yV?j}~KI3CE${+pyuR`MYCW9BqF~$R4c$GjM@4&P%9nyVKYf zZ*%?zND%LY2e#a^;AP93ZF8YFTX^|?Wb{U;3~e5j5YIC7t$wauhION_F~|iSNyB~mSS2xpWHw>U z;q1x!Cv1dEZfo{c?F8ni;&x_;UF*5u#Bk6s&+rZEj?G-5^^X8%Qx|ZVGr$7$aJ}Bf zIH)(5?bc)SN@zWPkA4^!+_78=q95PvD!hU`BCfNS`&_?gf|>e5Z+k7HsXwq{;n>Lq z_#R0nIwQi}aGt8wquStL706_m`|SX!aN{Y_j)LcXYwjWdCqT- z{&dh)?camQREKNo)-CvL=Z&9GcWS~lNAKNj@z1*)^Z?#yzVmLl_M+~qvCkd;P0h)B z?f*o(Zwv3jTYb3Zy7D_d{q&HU%#=fy|=n3JOc%#{$ z3=Z{Ww@>Xs=1c*}Gn)FvLodk#E~e8ZVuP!rMK6UfUJ{=BC02Z~u}_3@B|6y}dZ}#m zOYQIYur)NLZ1j|4@8C>#GGQLJM*`Mtj{CgT0-B8^vO_566!CP=dO@hGNCU*iJ(&la zB~jYWy&zYi^H_z9^6m+cyGW2T?QUDxy>X@nsga_$ zEwfcYYRthR@@?Th6vY(on_S!#z>Z#k2ce|hn}(g;-Yo0lKF{7QLC@}7=+Ow*y(5`u z)kGy2$W$uv)=;SbHwbu%PwrLZPWxdmOTP7~H+KwBC&9npS8`wR=9cQ*#VYr4Z!THJ zx>F_B?%)OaM!|fjYYV+3_6or!QJnlMHsK?`*Ux%`QZT;QUz! z`10*8J*)Fu8oc#Ob^QrCf1NMi?$%{0-^PEBApV{aUM$p&1v9uiU-sFOG><6)h%H*d zgMQlO`3y>CKQGt?gh^?mY^azEOV7gw)QJYv2?o?_(}oIs1?rDRZER0<@atuy=cfe~ z44j#zp*~{Q=AeQND$>+g%n0Kd?>;tJHNvdHI_omY8gy9iOra06Uej5BSG8Ig`%-hV zD365c=Lk%L{d@z=hcPxL<`bwnld}l&=@+B&;Ret?M*8jwsA*?%VFlrDaSp@riF{(; zu~%83RvEP$e{tN?N!jFw);(96zbaJjM~roYI6+0*zY|MZ%1>uJQTYTRHVEhrZ4i+htOhh zF(BuK9XS#qB!u@Fh|6ZoR2VO`w$r5?^Llw#7UhJQN9SF$dn(f-`Gnwve2?;#we@^& zqpWSba(rbk(P(ZcaN*KDC%RuT&A_2tr@v#AwawRmd}VE`@wideHcC-n*^e~bk-Dr7 zKlPv`(3IPnqXC8~caQVFO?z@0t%9FI-PITf^?KOn^EbCzb+b7!^2HSj=s6LR8o+IC z6=)PDz{18uEoeETX)h@j8`75+2F{syCm(b{BXMNYiNh44W&b-Gut)h}R@mFEu+gdT zm|Fq6ecE9w^gNWkgFBtY*E#{(Zpx<}foVVi{Lghb8%dilU%(XNx&=Y9JHbp2ZvX{2 zOGatp%Or(w7d9WsZw*;xqpkh#SR4lL+gU|n562h*;DG3h1LP(b%OGH0v~d5 zFHYn6e2K(1o_c^y$Zl^_gT9m{||#thtgU zrb3TCnLKT;pIeQ=a}CY`fw*?OC4KGPTQ@a|SZf&^mj#k|w6~X(T4)VXeN&ohYu___ zh@@1pjIG7C21Qif^=95k0T#EeQF#KJT8?C)RT0w-ZM3!NXr}utLU&(TkVIf?Z#`T=vf3i# zV`#Uz(ISQ{wMAGe2C#vxzB30FVfxGj7NHj`LW6%U70YVPu}=%Fl_z|%@(gwW6G9dH zhpO>etU}hA$b$U2<|)e>D2;{8g9Uoh&)}Y~L2FzQAxNYIKrzE!-dgX6xM2p-4;jHU z9sr#TT194EjoDCS8m}ucA!B4JlPnw>{sjylJBuY4tH>!|jduh&4w|B39!Jgs@L1N1 zPunq%Jjr0p<4#G7TbKU_G~5-&Cz3Vsxvm-3gD{qntg(FTjPWaybt@n5#lRoQ8p+4) z;3-G4uI6L33m-4#V|G_QUckrlz4&-GAKUH2$02+ivo9Y9@^RySd_0bix4^53WF5uF zU*Mudvik6GWKTXG$j9ab__!Y*uQ`a1UHJIT!FWZ*6FQI&i0otw?ZNL-bJW(<^)(!J-J-;3;DxUZC>Tq zb2}xSxbXht6Iq7v$7uN9zsaJN^2(+0Sf@v^wy)ug6ZoO30W%1EP%LX8+m7X(y@|*z z##7@)K0&TmT6;j`BUxLaJ7~I!xL=IZR7O)vr`uS?t>Fs8QWop4irGDW8O54zcE@W0 zm5(y!&8ar}r7XOaTey}0+XJ|nD6K4e)syHD_!vOYp1_B1;1N1wYUZoV_BaN!-SFKL z=)D`hL!=OUdfj)KaUjr$rS9NNMC~iVY(!R|5R5Fux$t?#2cdl=7UCFaM*kkg`{5ON zdXXjR$hRT;(C(O}J( z$h~B-ybrg+TDNW1pY70|3~nT$Cy5YI#&*fpGPc~>G?fHpVu71zsl;e#l`?{18axf9 zBCCCdbv6sogNYp13!QFQSlBJI!pjVg7boqXg_@doI|HEAZknH2j)&y4bh-%|V(EL! zYfj&D#^1vch5f%@_y2EZ|Jxh=-%ROeSHmEYw(pz%?eyPGv{a(of0}2z|DdSppi0+n zBbn8Pt^O$MBSn_AGd98~xlAEj2yjPo(M3oUfMItZ^w#try`Gp9firBzs;$SNHo+DE zQu(z49FRGXdm!7h?RX(4?i{Xw1Q5Y)5aT&t(&B{$EaTA=yFTm5RxaBw1I{uECtC00 zl3Fb9fTuVtN&FNW*s0NQctg!ig?MTvC9pTKq#KyF8~Dn*6&Ur$Yq7lY%U#_6+iuKnBwAFJpAf^Dc+(>Q3ygVAUzq z>q@qI1I9R`X(XDJG`JZ}C*q}1t@x^P^Q4Dkbq~j@9^RLwq%@XQrF%I173m?WqBTO` z|D;e|$;%2pd)J7by#Wx^3Q?CgAV?5S_#ozqi!vyY*H$_LX0Nx12ncKL?A$&mF|oYo z#-QI)%DaEhTn&J{Eu`f^vDtQ5XgOFFuz-2zB!)JiNUbc6fQg=HT80MMFf|dAi(Kl< zl^DWBzj1@35~%7I(M4Y97|Yu%#FV}qg7Fx!g=_NEJM6)^vqhX&+4# zImYt_%_6|=bhW^im6&NjVNmRvYIXJUjev;-)IpK&21V9b>mi?mB6~|kbpDwsn_Fip zre{4=Mro8`{sI~vQUFE9p$M?VfYP(Wz6>PgjHidW_HO*qWAbd00yCjf>o7FdG(3>J zCzA&Ku3h)Xt72S?VaQJibM>4C=-7(hdhb|PsI7U9R1jg^h@r(= z1Aw@4bp-BHA27@vqX(R&WnlrhA`Wjr9MrX@m~OKD(|PxFBvcA~CiDH-OfEoRr#N}x zDcOxBV|}19gD2}PkF~6E357t{-l0`!De1L*j_|urHkf=C?!;xD%%T<7!^z^Owpu%c^f&b$dPWiu2w@IJVHNyNeySYM{rI%)Am=3&DdHWk% z^=<10Zf*7@){=z>y1+94+-f3%W$Q{s_Xk|?hqS*h0q+CCnc6=Er;Y;JFC~BD?b)$D z<>)&^z-s~if$5@6huq&?+Rf&3&;o45K(MWk*@hM9gN%R`kk+4;)>B)75r!3bgykJk z$!AyZ%{E%i_gDdpnsI9Ys`#wH)2tFJO2Z2D^jLwuhNde_3^PD9tF+vX5j5eQBsBzP z>C;%6bhA~!Y^RT8dJVyQn>&Lqhkd{w^zbki(aOFU$Jb3m(7sI6SPa3A7THEn6*L4F z3di%h0E%M>?)nFddkn#$7YhUt_pc>eDaKc5$!@hPA$tq~md|~LfI}^Gv6~=Gt-Sl6 z)X%sz>RD8_4MEsT1=|oDBx?*P&Wc64;^3Ecf3jw7A|)hf)s4_hQ}7B*!NvEnDc0RZ z*L{M;v?+M51Y{q{J zh+zgJ#n?)#?kaw<0?<4Gh=Yi+CjfysUM>R1@K>_AaWOJ213!_*OKT!3deO^7p5ipRzYwY5%PA9%}#xgF~x<-4oW@)NC8D2lK> zPp70+K;z>}sEGsNZ0E*DNFC3dD)$+4PW2}!^C~#zr_94}1r%ipi+A!+2A9NR@dTb| zI6hAkhX^{vi6UeO;^ZSuh%?kB4$EocJjlS}T$?z~jbHOR)=_fGb6GN`emwL!khr!A zbca4{>c)ox^l5&|Lm!C?iZ!CgvIo1XgYcd7w4H9oZ5I>?!4ichdaA< zCVsKJ5~oBi%0K74>Ej_9_zc8b6;5&MP&BMzh0DIrZF+(3fxh83SE6cyeB8R57~y$# zKB!DtUW}7J3JIwgceLBVN7sZRvM;w>Z}#Oy=gq-Q#=@r<233R*l?~BZQ}2D*YNh)= zgzx*h?=n`F;5{*Ie!b3Yzh|(0sozh`v@k;8A5Sx4w7-j+FZk{4<_rFvZ2W=Sc^E+q z+OEAEgh)!IlWqEzYWm)Qb0ulfSMG|9<=uO&*}wVDn@3jETzt4`wGfrGUOTRx@O0K- z{&GJ1IEi}QVeCPy_nh#IHx>_;5 z+aGgD#)o1awuBC6?V3J%Q?FvX{qJZS}+nNu%J_$Z#L2%mS!@6IE4G0v+{)!Kep5)=fo-~WDU3#$D;lt~Q6*zpD=kno^kC|@s zVUtu4KD>yfV}}nX!X|4zyp3@~@nMf22%UUb=vMoT?9=*ivw|(uJM*8?j_{!l(9+U} zBLKi8xj@<)kjz8@Sptxn4_jlXuzu!yTXyL)@iFr{UTRaGd^pN^ONS2~k5YWdJJG|3 z2WS>uKIDAw@Zo^9%+ce+yDlF(H!$7iLy1%nKJ1Oqvcreju*sSa*TL{8K0Ggl$%kXy zYG?Lv`Ov&vU<>u$y;q)vXoZv0+s=e2{mXweC+aJ(lVh>trF~SrGoI` zVQjE)_;5IEvgSh`43FYN;diz^On0ljOZI7f7@=Sb^-idec7$j(fR>g%><<7Y$pzAH z_jnTpsUefup{=oIDB{oHd*uG4HzE9hqt9L_2D45+6nu+d}v%M zu!VYW-Yw5Uv|g2I^5Jm+2=L)XKr#~r$n`stZKHT(;!-xBEAF#uR?_ECJ{vp$CyY#tK5I#h)^UvYKez3`! z4;R7kC_bDiTqYl$b*sHe_Gx_>s$dHr`oyFiA=(r`OG_Vk4&EfWK>B8qH&H+q0i@=` zH!w-oM|^KfAKq*hK3p-(Qe2*=vdcL;pSIp6N z=@*v|>lZWK=0nk1M<3c_XPCo>$6%8+AGX5yt@zL=g~^9K-D-WXi_GRjy@D;&dnqdI z2+<1eOOp@x06>5b{{SR2Q9!;21T`Q2fuX`0j3(OTL!a-34`a_W`7qUaONS2^9jf?n zjrgw)AHJhmbop@k8ix<#v3tVd!zPyxSJyM$=EHkZLGo0{S_NCE_sB$PM~Ie-kv1(pi~)cE zA5I4(Gf_a!0)mwFjz$x0@?oEK!iU$+Hu>yR@Clhx2*OhQo(hQbF|Lsyz%o{0-J!^Wj$*9>s@o!e#Pdf?MqoY=5=& zp|651eCT|qv?D~D2xw{XVZ*y#k_)6o6TFE6@-TqZd{_jNWKH9HTl(eE3NGSBDR0(JZ=r_~1*259=hxp!tyJ@?q&aLZ4dYw;uMDqYq#0X7J$- z*ksLz$1#2@K5Qq{Cm%LTJHo!sR3mMdsugUZ-lTGAM~Iezkv1(pTn7NA=nJId0Le@g zkS_y4&4=SKR9FY1i8lGrd9Co_i!)37FlZ6eZM*ccR1kumx2wU2Utp6pA3_)a6dxWI>XQ$n+-j3}I!yDSn}RLW z>wq9L(uHU@W2{Jv4{LC8-6Xj{npx&e6p;IJ_)+VUGhvdfXZYThK1^C8eE9V=oAR7b z_dMNxONS3LdMZA=CH||!hZAWQT|UfN>G0t*ga{ly?CtVlK^@a=KJ44*=);Hk1|P14 zP1by9!uYND&`qdMK71$b2>UuvjWi#s6l|g1?c<~!AzCw_rNxH}0U*GKLjcK46p)Vs zq~^mR7%HqiAUJLEp~Gt7!}ddL%99VrJ8$Xmp?43(hocYk=)-K9MVAjptZ?{nW&?Ay zKJ;+;&>ySzE*~D13PRAo^C*zL{;(Q0S@Ypu3;>D`(}eou!)0!@+i{e_=0m=MEqqvC zD(wi-MqsQ+ix0~edPy#jUI3&3AM!Z-D1CSVCdsPgdt3T&`zql>_ft$hoaely!-wa) zDLzaS|JBil!)X>>KD_#w!-sbfB5?R{u*-+n-(tG04|$(E`Y@lTz-&HT0Gq7&a0CVb z#fRgB`sBk3X-C+%p6t{5P@!N8^{yTx?Fb(l0WB>)oC*LY$pzA0fMg~L$QVFsKJ0~| z!s-OUX_F7@zZ5zAG+?Z_;BDM9({O)X3^!t{+~L0IN>AaXnpA8^5K95 zOt<+ElL|u6qj1#E;lnc6WX*@qF#sq&d?3^(AI@^CU5!&{HXpJTY@yz&(bA3(Z79Zy zwD=I8?jfnN9n`AV3I6;&azEDT>XXc;hd9AK17|jbolVlzKRdei2v&7 z!+tc2E*~EM*x|#Q2oX4Z=;!j`>3K}I`H=OAqYqPeF!*o^Y_jG<83q8whx3K{Y zj<63tl*5No1zV_h{_WC^@Sz^i(&EFh0AP|_AngE1W}<)`4Un1-J7B1=Hu1eJyR>Sh z@ZpBA$%m($w{-Zh{XU8hdmQZ1hsS6ZT|VsG;P9c(66R=qIL76}?sJ)L^I^195Q6sH z-r&PR*ksLz?(m}&AJz)>$%hl&YUl6h@}Z?xU<>t@-YU;RwD8z8`S2eAFi9?u?gAt; zQ9%9-1T`P-f=RMU&_tVjIDdukA#$S0hc}$Jbodb2OYxyn{8vXGcA{By`EbuNhYv3y zMBwn@c$W|N&tbaFho7Z_@ZqT(gAd2RCTl)?kZ<#0lu)01nC(_uO7;o7xOKgPEz}!y zi?ky|s|B>Q^x_K7%Hr9`QDa3Ed5OQ@WcrwA3k*6(&0m9 zSH*`;2YB@1Zkk1x4_kfY@L``1n4|R}?DApT*-W?jaE(+DKJ2!g!H4Ov$(j!(7>JcV zv|mo>7`B8Jgb&+nWANcw*ksLzxfqBQANE*k>%)F- zHGaF#=0k&mE!2CxSlSVyb-OK1K0F8j0X|#_NM@pd{0InYK3s{R!YV=&ZStXigYaSP zF*fBnkK657`z;+lT(P_2Ly7pW4j+D@S#}Cv39j!{r!=6(3#`>Qf&cbE~~h_Gx_>qF@Uj4j3uz2+^tlEiHY>0RWTa0_n>e zy@>*HFhFWPdq^x^eo!iUVGZOW4mhdOWR@Zk%5CY>huTk&5VK3q$)=<;FB z`wkyEAXMY^Ff;Z6Vu@ZnrQG7|;lTR>3r;am(ARtQbB$%hdTDPt?CeZ1M? zH4*9>V%|#6GpKSfF_WUiQ`K(LX0+v=HkNeU$#K1d%lkBsO!n?Mch2K_FQ!!6af7Ej z2g3vbPjhE!0e0?UXM3uzZ{5uqgdDQ<-h|r&r1I=7P7I5ue{oda{pP_jN#K2g5yyo` zB4VGczQ}B?(+Dr|e z)6aVC66jxfEzZH=JF`G*3HCnWTuL$eylTd0f1@1dRYHTD)A}t7pmfM&A6CqP4o4{b zOGL?FyOvw0(&$U#*KXpGPGY{TCd;jT)$kyoK7R{fqgi_q9nS_=&l!Cw`fnCh)8vsD z0jvu!M*C#TKHD1>k3?o`j_dk?((q|eM-hou7;;kwjjv67RXmd8)<+VpgYd>eE5M=} zZ4j!j1;AKnB`hvJe<(KMIOQI%L@59jq4*a~5laEko@z9bk0tIP=0sgCe-=#!PrTS) ztPx;^G-~o)fWfsO0|3g_>|d{zn8#SJ68b3tsMzP z5vCh41ihS-$HiGz2Zdc-kYL>$?RIWX9tHy^U*KufWH@vMf%9(Fdg=r5UTHnUM6sW| zWu9hLx^pD?>0BwM*>))+M;g1kgbKdf#9RrqzfdD|==M`$S&fvekKq0W*bLlL938w~ zwY;^m|E66vO)%_>=W8+TQ9NjcTOd2l>SiKZBz@(wYT!B5KwuxU(oH{nmNwz5^Cdm^ z5&b|jTXu$jM~IXO&0`k?Q(!Gb>n`#XYL4Q9V^AnEq`(*y)p>&J!Sl)JXazdzIpfb8 zPvRl%RH;LEXK`0>Bs691BJOgC;lwLsae)1m3w&I99u$2CB(^T0Y(#mSR}`fmwsrG3 z?gXP=N3&kOTW`KK9Mp0SFZKiB^#N+>63+A}uO^B!`wIHg)i590F**2E*v`w|gt<7= zMzD%l^WKKIwKE~(7UQNP?92-#Q+01XH{0^YWA)`7^iEpbh-4sNjzg_*JVw`Klw9P) z3EJ2?D0XS>oKp19I)S!>2P#7q&cSl)Vh)UvVKp|McfKMTGa02|bJ!-2OAE2W46`%Y zGh&?IRAj5U?&=8yq3s{W9OlB2n@t?3liywwIPqUg8gz22ZH;Qy&qTLu!Sy)x>z??P z5jU21PXF{JG?w>Nfm_;;PnzPPrYXkV^wp+=qwdz>8NnfQ!lYn3pbk`_q}3n-2tg+n zv>83cdX;qK<#Evxk-k?+EV)b$`75n&oY%ND8_yM}YZ$*!(=nQev)K^tTbN?KD^S%WB=3D=kU(%si8d0dji zg~>90a0%nRr?g?tdSR$;fKOR(4q|e`o>PgzJnG-5%?o2rFhGrTc96wG>)Xl|Ntmdd zcbUh}wQr-k8N=nx^u;36uE&qr2JfYc4XYUNCZb^YTVbLU~6 zTS1({W%CPBxdM)D@pj>|rUJSvS6qO}-P#IzDdy!+4+8tOG5jG-aov-R%gjqqd`Dm6 zGe``Ve_FhE4Ld!kJHFuCm^CQ2Py2!WJ}cgCAnr%yMNzH8Q1#nE5lqeSB}(*3LBWMl zNl<&A71qLo1*h;;$SW{#zQdNH<sLc%7(YXmbw zRiVh-fe{(>epj>lDsib+T4$=YNW8|aGf_W5OxY8*NkC?(bBf89I?tCq9 zyCG3gMR^aed}(fHwyCw!_95O<9QCxxVn(-YI1-)A6&SwRElYUnIB~p4$x>696*n8A zMN1`q)DX=8Q(Cz?f=EN;xDJ2Zn(n0Od{w8wuG4u( z%1EdIMuC5GBlVfJne}t6tupKAITNrQWtG0EqU~7NlPAQ7pz3qRAlK@TE|j%ok3uvuYqGA^M^zi>RC`=kTLYz_s&Yc9 z8=tqmBW?p>A$__3V2{~L9pgK34G5-$b2pTxsWB!*S=KMZ{ldCM{J2gcZwdJ^%Ax(d z*#k5`o^;Z1^Nx*aY^cMJ@$6fA{CJ2(HA$|)vzH&Qdil{j)8@yXl7Txh&bRsT5@KXF zKW_H&V}?^LM^`%=)qE6x#pTBgSV&*)l3X7@Ry+KNqI7^CmtE-R2Rv@Ceo`?Z?}u~! zO(JnnD3}Nipo~}HGGwk?%8j7M@pJ4ReKq4{>qW5`IExJFU>FZdz|E%F^{b`6FNyIX z*goF%Q!Br`*AeY^K>HE^k+*I61}&1WGx9T0Wuxm_iw^*s>%y(I2!7P#u^zt-RBSv~ z=)lVwSw9a|H_?tD5!Z!xKx2%S=!RZniD*$ZJ`RrV!$NkpeTObkH~&1{woP)^xEME3 zi?BgI5Rc!kcP*JQ`k)uQK2nDEASJ3G+PK6fG(}UQT2Vp`lfZc}nL%neDW^$_OOYBz zl@vv46h&%*6e&{&#PELzt&8bCKx&323q_EKTZ!5WMJ5~Ie^f-7%ulBKsL~PE#5Xd< zvL^kV*B?`CIU9Af-``W(l=9l*?jmc2E%5(t>jiI7A$G#Eyl{(4Etlh%0+w1%Ys#|z z4qbtUu9|UU7Dy1woBE2e;xgeytas=Ym#a~mhBlVfS1TM=Ts}Wn)n+d%UqWGxz#cP% z;IX`o2c!AeVY38_xHSx|=})10yX_gUWv%5zf>SnetBWvT|9D=2EI!|4YY^U}NxuBq zpn0nN1rUl<`4w%zKcS6$KYVhrFEqFTq6^h3s!PO85O)3ZpnNQE`%WMw=_~5s8C8Fw zJ))V74hA55Fsyh%rvk=4WE3lx)piqkRU$ErM=ezH5c2Q~hQ-wT2)_3wNswTSMkhBN z@3WqD=YXj@+li`nHftYzhHjLQp?aE~eSxjDw;)9S%e8zqzf{x&dLOrziFsj|xIJ30@z6=BPl|OSkO;~{PJ3a4G{slB3BsE6R z6Wv;MF25S5xV4JyT4l9`;8(5g{8)D0%MZ^rJmO>ZWnHB??*%=RU2Vvq?%k(3C7(h` z>u$;OIK>{G*g+?;b4Msf*fz-@bGpmVCl4fCK#lgNq73`*a`*MrK=+m0bE>#i^3jnOHLTom)uBj&~ zfMId#@2D)!o;3H-cF4|e9lQ>bAPL#XE*rfrqvQir09IxTemb3n#S(W#*tYC}E)@x> zoG$I0s7rZU(4`%9mkzYMbh<#K11nv42Wav8Ic}#q*_~3~!|`{jz%xA&Qpc^61t=Ko zS;;#IsZe2Ca@gk)s67R2tOC&|2lNe#Sh2jHry93V{`f5=m+LRc+xaOw`6D|Uo$CEXh&kV zKhSi>LybCDny+6$fTSr}j$6MIo4{AJz*^7{?;BOuhp2zeNz92z4wlfqFVpQ6EFe_CWsLfm2goBA{aY} zC5S7F5=9Zkf}+=g9hD#!q=c0$>uOXYps3+q3wFGU1{4U0Y-|`Sv0RCLVo)Q3#De+0 z-_JQSXJ&Uc*@e&N_xt|w^(EPvQ=a}jr=L+ppj!5&$aEe1Qh2WPem|Ga2->j;3J)8t)z)5 zl?aIlJ(48TN$=yF4regHMa)`%Pr~@Y)7OzgOHoKi?CuD`){b_=8Si8T9w);m4$FQH_nTJ-v!BE5v-s?Ec;o6-fBsez%*6M4@$FoWx?o=RuNs9_0bf;c zP+-vwH{)qha7*n{fxZQlpw((P$EN2f(1Qi%!OL`5!d2mG2Cv}D@bC}7{PFN`6Mito z*s%>3!io9glrUFcKOZ=1AXd;;bMX6EogTsK=m(!a_yQmKaYf6FUqm^|GfiSkV!h$F z|GUKc_2&Oy#A>&gj)zi)w7T{xPV)H+Ji`|fd)2yZV@vrFeOV}`+QK!#KGngMO*`0b zFVk;8Cy|+-FopgF`&AoT9ye99td1SdnkP~O&@vaG%hdoZ8JAVAq95Y9B`&{fDc^_7 z9UTJEK9DUTZjlS)cfYjECBNR`0I^qgZ7yGM0gC5RM;PM>><@K=i&zLOb)W{JQCe#J z7RvJR(MYVLu4g$oktaA&M<}1J5V8v9UUhXe_zevCQuh?8%MK;##H=enVt+5Lk9@NY z1qJfi0(jdayY;8Qr0wC*%TIgQJV@chtYIxR8V(fD*`@$9w}BU|#VI}3-;lg>g+VkGNV4cIN1i>pJ4bEOR~a$u0eOwn-N!Z*NMQgwu!*{Zm|gmE zn6YI|Uh*9~RKqLK$}T8+P>L*0?dw6;3seJl0Ij$Ba}?*-R}@RZgwTi`Pzzp0AZ{9T z4>7KHXyuarXkd#p;zY5|>Le_Aw^qM9%so1^8yQz?w)`l z&M(|e^O02DEArsA)}BLI82h|rcwHxQm|SDsB~;ROId>Jaj)OiL@(2q9p5?5GZcdHW zQEH162dh3QYS4!qj}bNDK7*aNZT{w|6Fu`cPRpqJu22MKx@(|5Ud_!IMbni|=D!B3 zDBAXL6+~3VBtsb7Th_bGgNO6|k>``%} z7H^k;$70oo&QyzrNU|o-oT)6zvln?2jL3s2$97`sk+Ul9SnlMxKHnCzKhXw`V})1> zMHO$1!>h5qc)2BAReb=I`QdiKj)x`IM!}1@-Jt;3&gR&us3vC3O#)wka#=L^zr|bM zB)C)NZLc`q68s3U6mNldHI4FA|%)27_{Ln`WT=PSOfiY7h z1h=q-`Jp~cS@lYM=#2+YOLt7gwAhmF=p z@JIEXVpjb?_>ml8=!L3Ua$YDR^;)P>HU^8#{z+PhtcWoW{zen1Bo&o31Z+mCq>0`7-C_U=WTkE4%jk@}59te2zBV4YA%*W8X2B zVkTyd;$_CF4?YV}%e);RcN?$T8Uf(vX?o0etB?juM4;oyLdh#6sT4Nqi6Fxo}mo)Qo+Fu2WY#p;ru3Z z2SkD1_$De+9uI;AT6=;uuQEYC1g3kKPGlBsJWp)KTBH<8wA53fCX@9vHYsokn)I_9 zZ-m}aA`2`#&NPM(inr!*AaY^LJ(uqDToHOLh1+`1WsVAB@e%rMm0Saj(CI6+75}c1 z6M8NtLf0T#VG@j?Ic{M~N9a0)DB1~l!MBNc#k+~n?3pKaTwYN~rQ=d)*PP?6xt3+n z4tYB+T;_%h>NFSN#Ob)~hzM7uy|pu8DMq#RlIJ?7<02fzb4pQBRn6K69IrOw+nfk zZ4?aJ8M6FCl{DUwHm-eA#+4t3i!m%8o?}Tn;9AP)l%asFB*9!tW=Cz@JP!tFi>~>t~NAT?nKJOUF?)o0k8pG z4%YJSo%{L-+iLA0Wn9y#;@$xty2OQOEw6~Kvd?d2Q`;6IuZ)Frfx8K~VNJpcuW4z> zlHQujkmHAUSeS&_3e9LXv`xjVzt9Z0ZMTK5pVMb$s)BK;E!MZVQ7+8x1q|ABl>2-j z5g;K9zkayKOYBn#`LG7)K(>j60!0;{N@}7-0B9eN4I?W)kJX4f&Y#Eugz$Z_1hF z!e4N&{@1tRIH}sHKkg`~qGWY`!d`pRhJnBwk)(HbQmPhuCfiShTWxh$^R)#FompTk zbg;MTA@U00dM)&b+x;vwi-kQF`VJ?RJr?>3Qv5A+@L{%vIvxp!%%fAg9Z?-QaVzyz z4heilKaFraV|2deey+4pIy&IHj`C{E9i9|FK1HVPY53ZEAF^lLyWxX%JpB$*L+i4f zcomk>1cDTfa!_ibK4fFMKwdecS_2@kM=bPW&)yf-U$WfdSz$;Xop%5f_bdqrD6q{t zLB4Kp+99bo4Pm?HBlsH+@pzL+Ou_;d#T}W%>BIEgAK*2@s^>ld43;GcInwULtO$yD zV+1Xx31V$j4Vs!2I1xaT+k!~Fm*Az-h}7H2tK7^GNRV?J@oZaS)>q$=a0kF6EdhY^ zl_hC5E+(g5K0Ntn#O0HK0k- z1JdzDO4d^y@MjSwDIfR#npqM&e2q}^c9hsJJ5+Fj_?6Csn5hfCfjf*+>uU5?#%wob zjx?Pa9j5{6d!Ufqh!vYWg-3q*p0D5e%l88P&R^WFFo3V#oi2%9E3(6inv6E7dRW4m z6@`c+)~_-~76Up1Bd4Xwh-;-9Uu|` z)R=Xow`#t;!W_KOK8Q2tiTx3|amo|zU*jEAo@oC(Qv9R+$o_;GA6@gn?lwmIHUOC1 z!!2@qw>R2PkBjygD#X*He2`Y<8|{0LJv-XFjFD`Z5R{~MlY`1`k56bLyjBg17B^Ad zD%ACQN`V~=T8!m8CXMBnB#Gru!GCfZf~qdyZ%Lp@`Ng0>WAT5>;^LzpM!hY=#<(1&ZfwFI<8B(`J{n`8km8F`S%VH% z6Lq~T{JL;xEh3z>7eKC^F>O854honAEHz+LJF-+D9^wTWFWw{;b-mPbT39!~prsM} zznY5kaUf$$sXEv85FH?zHR(3{9M#=nKE;2$cC56C_XTh$*JTWVkp{r42>=+N zJS&^=@A3T;oDPrkKbOipL%z%wEX8LhRhF9aM%O?&jB#@IsJh#|vje7b>D!%GD?pto~3fiur^>8$)1O0D$WGPLZ2s<(2?dT!a=t)me zxg%Z&05=MPe!Q$DiFgB~R`Q4kYA;&pWy(*CiZadSx$mS|AtMe$l0{58RSCn&R+hz1 zH&!pjh7f(Ch_+bP)TXr@D+X$s)3dE-pZz@TSt2V;aqxJA?-i$Jl_$)&^qD<}cPgsO z6|wZWrvsx0b0=n5-}c1J`-mPS3bb;D1+*9R@`OBf^%(Jhi{d)C6*!bZt#G<4IK>nR z03Zv4T4CH7EN$9BY)d)9O1Wa|3+opqmaNY6-eP52r7I>E5SYYdx*z;rHt_E)&$Mki z26yr+zkL>0Ml^T~e>zgUu2R705Z{%uCEL!e!8e5R1P%U$iG3dpo(Gw^%)Dg{w)-E@ zV7As^uRLh*&b=KCVx=)=T?4fy^6jWE$*!BtxZTRdgRKv3Q#U{!KDnYTPmf{@1*a?B zf@d!wUVBZt&t^hgMGDk5jJ~jhl}%Yjhz$GrcG!0-S0;BcyCTb265FeIgO^^_I-Z0M z4Af@NagOVcYQzrE&u~N}nsv@Cs?T)1k}cW`@5JjBkg*EocH`~om-&t>1_EP>mgngwYSvC4poF)nbA2A z@y44C1!mUxXhTMH2_~wE-PuE|Pxpz-8v&~!AGknq%!)R#2gTkJC_yK7o%LNC3MEjB zGgSeL(YF@kk(%PQtkE!th*@v1JxDK&nh?bmr+&mU*}YKWpC0)414y zS>j>h7&8FaE(44+wTP&2Cw8dBP1kroU$rhq^ zgnIzaBQ#If@d#MG$+cIJy4g(*z#~fFk`$mG!X4e{0h>7i=7pu z{Si)NeG z>vlR?Pw9$i{ljh&vDnK5jTmio^F-@JE09Rxjy+d9BQ-nr90B?nd-AAnnxk**sSwPb z*s~Z4wdTUD?AY@cTX_|G7N8l4GnNFKjTdCmt{!IMvp0C`2f6X`gt}tZt(c_{?G>S? z%Wx}^{(%1?mA!M6D3s}F_gHmdgSUt4P?{Jewbpj|J0)A@l9|hv^YCi@j)^{F%Qtnw zbq{f?p&wo7*z!4)sIg_++oekYQoOT_Ig%XBE&ePo1I#uB!#UWI^tkh;kE1~Zkz$A8 zV9C!p4ND!saUT5;$3OtJd@4w%@WQ*>t{@d-i4uzDPJZ3s*YcXbOb{lP*7+~lcreE< zczOz+#PZSHEuR|b(cC^h+&wd4Te*8Gw{`Afs||il{c_yCjD|9i+GN}f5j=_Iqq#SE zxO>WZGrD`%%tNH9yLaHiDo`cYUFSsZ>Rw5cyGsO*A9sI#Vq_Q1?dQYYFV}CY?tX?R zwZ`4KuNnMWH*M18Zl>Vz<8HEtyXTxYqq{EK%w6XcxO;R}0(bi^O;dMIAO`zcax}NO z)10=%rr=v zem6?6w#?nYMDE6+7m-#}`7tLMcWoVh*diS6yczCpx^`Q2ccWl!nLB)0!)cMU?q#x?&f8;9#!7K**?3y)!aRe1}!b!9V~eKqDni5AL?$P z^JchPcJ;P$_X_$kt;Ni)iQKJSoF;c81&<$h;g5~%qPed)Z-%?|S8XeI|LxQ|cNgMx zWt{FBUrdv`V!`9b-Odg_)ZH=8o8c~Vo4IT5*gAJlElc2T*L1m?BY6C{i+*IFM{`#= zZ-%>GS8l8BdZxhL=2s1V?RSU0kf!dI>`W>8ahL7zL){H_-VAqvE4G!pA%eB#n0Z_x zcW3@5P3}J1DH(Tne`sVE&3(;zGu&NFwmp9G3U*2_ta(E%H0#~ zTaPMxCvx}db7^unSn&AyT~~)6>Ta0xX1IIj(rxALt#++*ci9pnU2U0P;BZe`t@%F% zj~{pQ-Z#*rxo{_>?jFxd7F8a6&p?mnzU#ah?heH)p$=w?} zB;&4!!w+?Ln)7D38}-j^4ZJE2fUNX|vmU-z@X>!-lHW_ydY7F#f?g!4B;qJzZ zww1eL!P+u+pDZ@`HFu>?rpaBWq}=s#_@VAbId6u$d6-k&Hp`sTruC@OE0Mb=pGcFt zg9MLXRC)AWBfDtsI_J%B_sZC9)c)aqQS3q_ckuzO{+yXP4M_}*W2NTx;xu> zGu-|6f^FsQvy9fcd-;U~?tXeaP3~?GJbv6gvDQG3=6>e98Sa|T-&XFnHg9cp^qQH- zT~4~(l?xs}?%w*3;f|J3QZY3^3Y zT2?^08Kq8dQT$xW#BER6zo7?%Iu>ix6-?M{It#V+2Vzzr8e30-AZIg!Bem4%decK! zhA&+wq)6AszZ|-HldfG`pbJKzuGvi72UGq7rPArL@p!^7Wk z&+P>yOMjGc&Tq_#6Wy`uqqY#xp$?8JSzBVP% z6e-`&L;2%>x+(AMqWr&`Q=_~b5Qc{nDSuGc2j%}kc()#;jJAvNE4R31{^K8R%3teY zWZo-9%0B}HKgz$}q&NrVO$goA*ObwAQT{x%XsqQ>59P%!$}iWLJ^R3XtfglX%KI3~ zk0s@Owwv-TkfovgCWd0i&U?Ekf9_W$v(_lT3=sTeeyy$#na@CjVqHraZI{fC@ld`3 zR&OZ(WFKQKn>VIL`7`tzA3I;H>x1$)5m&6ml+kukUIHx|nP+(@kGLowlp^K7(rc2WKYv}h6`Al6OGM|rtXw9UIwoB%tUm>HslrL~m-YG@O zU#H*rQ2x%(igQr@6~c=34rR1mls^D18p`+fP(IQ{`AChqHJR_6gz_$i@_bU>WxFZ= z60$Uu|5Ku_E%PiF<@0_@&00>Q$NR|qY+WBRzXk!(I-4@uE}8fCQ2vBOU7PZk_cC_A z{>RiPpF_X#q5NT8AC$j{fM`8T8EqHkS3`?N=08j9vnjvaMfrXyQvP51jSuDDZcvqF+ZBOqGWQAXP(^W!{}uawwlQ$EE-`IaA2qx?DgjSuB7 z>-wPlZG;u;Wy)x~C=Wr4M&|82lppM({FoFe-%P*pp?qt-;vAIkO3Jqq({@q*7PM$6 zFOsNh%lzv-jkT0$%&pn^pd^$JF_e!+K(vNzH|3o@l;0~+*QUJOMfn?6YSuE19`7Ub zu&xi8KZJm2g(;)$lKEM%0weQJB=*^q4|P$Vog(Ei`i&3e?|$!C%Qpxs*1MF^c2WKy zv}h>r;i3HZJ&d)C(wJMbmQG11&oz`EK+1EsoAR$AOGEi35_N5vKjotQf$vhYmXY*$ zADN%4>%&^cBOqGmQbyY)^FAKRpOUC+Q$EH;`Iq0OM)^GYjSuAubbV0%5(1*NfHK-H z%CChMjm&?M*k@Co?V`MQij=RX-}q4e{WpqpQ2rOfiuFBZv|W@hh87LwM|vn<+0EGb z)f#hacD`Q{%KI70k0<5*wwv-lAxlH~WQn@A%x`c}{=(O(S<995cpsVHpzA~Cr3i@D z4U|#5%fhc<{`jx9 zdf=r9l=$L_9_Sjx|^US|@|v=bF=>VV!# zi9IZNp(%NwE*ViORwcXI)w70~l5JFCM0BpoUBKuS$sNFjc4e=VS;$a)k1$ZK1f*3W z!rx5O3RPv#=DBpR_T9^g5*eZ-^2Z4-iDVt_k%)DWEs>`KjzrFO_*`caPp}i+5_wKy z8YS|cDY>UE>5)j5T|MhaQ?gN2cT1#593XdpE?+B&T*;b7B2$F{ABkK>i5M$yvm0N< zX_aw`*p{+Tm;~1iarj+tC%RcH^MZS!3o7c*<2)zkj1#VHk&-h!k_WW5sTbvH1kU%I zA6QTN`O2$G1~=m?n5e3PT7)pW$yJ6bAslOdA0HI6^P{+eOPpAU&%~(@7pkwwA$bXn zm*^p7hAXmFO3eEEi>-1MV>C2Ee5~9hi(9KuUuVFAK9HjLZkY}XF>57Kg3+QyXlB}v zglpZ^>+j~%@p~(Oi^9JQ3s(;h*Dr;y;oE0e6N*{S_sj%Gt0@q{hooCS7xmc$T`jLF zF5Sdqsv;R&Yov-5=s0+ydR5fMtOhCR2>B%{qgjF#FiD}PJ2L%)`BBBIts0TeX~=-| zO}sh;mweCoEITytPmgH3^X_jG0(t5TuQ{5yCq5IFR4Bxp6}EsP*KR{j?F{7J7Uw4{ zVg|#?eWT?PSncvc*5^4H63(tyXsdL%`ZX+or|Q>xP|5%vL3#gL;R9He7r;F<;E%yT z{Y7YFWrGSOpfoU&=}$m^PP!8-yB*Rdqv58+^bDq7Xwq#x&;E34vuj;X+a&bwO;>oQ z9(3z zed1B`OzakQgRRoli%O{j9HhjhfehX_JL$gt?+$5vFR7E0sDsbLS3&iiA!^O9S zmWMG@tmH>kcHTD5#C43?58;>=$(@GzeP(n^ea z81EIqXs2PvIsK#0aBdi4EJX*SN^%*8-?e%kj9m`uJ!Y+2XCR#{QIAXDF>3|Wae~w+ z^u&hajM-MO%mXOnvI|AdjxHcK6Noa9yU^fSH#091D2+QBtIo2va<|`}Twap<5WV+c z?+=)9=Z~YgOa7C`!Y~cbt%(qCp2zO=zK-S6Lgaou+o>g$<%%f#<|10D-nN5=YdI7l zn)nqO^jZ@!B=Ul@xZYdePvSCy4?k!A*Ub+tq8kCqwK;O4H)eg?ovlZ1M@25Ocx8h6 z0-fyXkN~((EtIp5tubA53~MTd{QV_$;Xcpqi|ZzZYtp?Unk2aXLqmwi^$V}oP`K_% z4Ob_H>zjL8!gZn_u8_gCe`>fEutqd@M2omS{n&@EJq)g;jBu^X@Nk9e)w^5b>l!~? z&+y6%CBsuv!}SJhM04|7#MQkivD^3&b5g_g5o<(q z_i7Q>E`GR*46dKp?{3}ZFITuq?`Vmyf4%P`!!L2_UGp_PHC$U+BbvJ@(h{yC{BRW; zT)U@+>u!Z>Y>T+we9wok4hGkg93HeT!~GPlw`aA)*ZF?99^^F~Djpu28m=X*5zQUY zBCd@!K71W)aJ`RycnW+KDO`_)TjJ|>KU}Zle7olB($sK$$r{nzoECBI>4)oVgX<6W z^IO+fvBGt0X-j-Pi`lY-KERJS*{=DzGc{Zt6fSFKOSq2r!!^y|`bTQG9%PMZ?inrO z`gpAmU%3X?OXz2%Aj5+duBzKx;_C`OTuRejKP51p4aN-S=*JZRB*+ZE5Y~X~GWk#vy>0u}Ogo z+X478f^Tj6szy*$D&=uI+$x9_AKk@Np%>s}4bU}~#=yzp&>5{wK{@YeO_g!s+RMS! z%^z3i7H|n1&n8m7%&C!YQ|K+7IL0-X9k+XvZcQVR z0d1aF8Zvf8HpY1|>pb+Bu>R7nl4IS5DZyBvNuJI|UDRhG(dG$=TG=mUWH0Az{EcwG zP*riyxH5UF%+VJB946!J8!Qd@ykIklQkZvr3q%eKG|AVJip!*iM}nMdsl|}E#yv?Q zUw=^-y`4=F@oqd`=f!WMC`zy5JR+~q^WLa?3rZVGvIHIJci&UF0(^O;TnHMfK|@s{ z4b`Y!WlKkq0upfNEkCg#(*U^pHp_|BIQE0NI6<2{uYnGkDFF?aiQr>0F)xHhm(>YE;TOx5k{?+t z)GJ_m685ibVXIO~BOI%_eSQ;9F9SMhE9=?>GZmK+g-@kunDR47NXriG#~C=o{ydykvP@zotl}kpnQ?CP@ zDbp~&ZUF0&{HQ9Hd$P&DU#6%66^I~HgVCszQ%?Mr%BjM#5pr{fnmU(C4yRx>BSOiY z48-~n(CMq>xq?ymM0r*e;PpuLDwNo=V^eC zSmN+)PK-E8MJD>Z9>2rHv5j3&RtJJ!V8_~}8t>Cq z)3p=MQvFYP{0lNCCs6>#__{dK|FXx&BT3EUadGUnd;Dz@vvp{4ygOBoZ;KeP?H*rA zEt!ya;QbwspMxdc1dl)4!b&>8aVcuqjQ+75GsdbRzex2h=a(H+mq;}=u`T)f90Ewan{@j2V$ zzb{vG!uvOXBe*8^)poP>Jr^B6P$SV!^Qj3yyOWT68Yb;&$msV3D-2Vf5EZ z0*iJ)!dwpT1_o*-4p@Or5E)kg6-wlCZ?8nyYjE}iadqV*9M>|!-pc{Fim-*E3j$$h z6i%ez+4dZPeaS~DYa4DtKf6jrl0c=mnOB8y+x*0x06;Pu_$kp^-1}XDd%w}HvlA&F z%S0OlON)Tr$mB|FS5RLDva(X4ItmrQ?!FIy zP{U!aP=74stIrybL{(SLz9wfNa;$yX2$rlKD`DOlm8&zeWB-S>K0s`aSG+@w!q=qV zfjye_*1v46KRCnT`6PP0s5(yTI*JEc)Viloa;@`H@K&^5!F_LuT1RLG1?gyg;HzLr zw7#XMqxBiDk;|;mQ{O{d&PV}0kTuE^nwGbROR`Hc6L#+&2NIe+ zqLNWIk&$e@x4?ns%t73;r~e#;kQ%e9RJLQsq$ZBSJfvapU0l~N3=Gzhta+$K;hRzU z+lq3@y<2i+&<{&-2JVt9XaS^Ta$QF8B7R8Ck9y*$02Ehl%kxSenMjBCMpXBM?v!MB zZJcn}3XXNGoHFj}o6ub}h{zkN!WT85P=2b#o&qB2TIPl><@Xf3h)A)E{g5I8I<82h zJzodDHsKIEe~{=`?`$jJ&Nf|g6L$70W5xzHnI#~7`U@N|z#LES(y<-SD3h~)1CWI% z?42%9cQqh6W>pFv5-6|tYP6h4kR*KA^;4F6OfqDzj1;^^2nSbDT;~ww^oK~BUG*7N z#rtEflFb>CV^(jG0ga?eyXVW;zy+S1Z$$SbYi#W}Yr>)TZuUIH3VOZ_sEuVN+qc09 z7Hpd^pH_aGH2dszxB@_p=0tXmHPCk(rOjQ1t)3pA8jF$(A<7DO^R2%9%VrM>77^s| zFjbiBqOhb~q-2NCjky>y39GskoT8zlNTf_7gtR8GA`|%)6xz&xb5MlwI;#|8+Ga8p zvQUqP>qMkbS#;D2jQsFR^fIgSU!tcGL6QwetU;rWCrLu1UFjK-T=O=9u7ugeZfh{cyr6+rkP7p5GMHkKgN z%!oXqOBM^vMwyI;eUUBrU}2HKY_a2Y)||K4`o^qf_-zi%E}1+#Z{o*xNnF3{1m87M zkZq74HXR(bYft)MHT7q~#i5nEpw&Br(Lgj9QOrezRnwb#4BF3rX%zASF&e~YaEca{ z<{;(H_>{n%*t9)kEjU2#UEW-qPH>d{QsA!am#Xm-&3>sdT-~QJI9Idy;+teKP^a>$ zmNE*h{_6KFtHOb&V}ZFMoGaPaaQbXEOOcF$fv0aA?w<#0iK}Y$SGN!prr_|;z8Pkn z_4nIv1Etx!b%0v(=wILu;R3u6xfX`u@*;=tbrORnTO9ppk zM-*9E@`C!K{KZ?rDXNr9x>!Ob6H2PE*}3j73}czmfK~|I86}Cz zHR9rx!9kLD{Wr0|d@3Rqr~s=O4TUxVVyp-!@Wyr4512Kiv3}Pczu3rLUWE|6E5c24 zwb5#a!2ISwMakrfyopOSt&vglA(0Y6wL>iM2vO8q_~XIyh{iHQW0~s0l0D<4WW`76 z;-|5=Y{hiBnGLf*3Zaei$=gi>$RU7|sveLTLXw1^DYy~Uw@zJ*$YR!X*+LMD6g^^# zUs|j+*6!l2!f|upk&?-e{aFn=56SHgSD>W<|MS|}K84{xy>-5lWuU0|mT+LsLI zO3&g7N33$NdDQWb%wc|CoFF8frOEp%J@g%A~~*Pphs!PsQ94 z#N6qS*tBFZ_fu@&MGQqgAgY*KAu)G)d`e(CW9|pw0Od=(xuC^vMG(SDRLq?gA9Ghp ztblf23LwuFa~X(Zfl`sqwcOBZX8&xSWVWF0##55yGVT)Q>aYIXf^f;WEwckKB?%Js zFdS5szzaSl@K!MJmX=H|oiZ_^tNR7sX3S3n!{RhS9e8quXqw2 zDNyAfcxSDq9$BD50`Kfd(QH7CGaLq9CMN{mlcjoM;QjVF23}Ng1>S{B@Cm%=sEH&N zs=&L@3A}L7Mbt(taECbAyF>zaxFc_{Lts&J;Es~XcN9)s zV)GXnwTRO;D)_dK1x@SVBH z4!-Vj!}dkrfu&?AA^Pqn47sE4cjQ1v-(9ETIWGF%$@~_g@0&19Z}jEbus*FB3@;u_ z2MVjz%y4uB-q7O>;>X>v=pL^WRZ9i%8NTTbuF7ytkz>+NPWD9f`JRMTK7FQAPm3!s zToYr(`2=S##mVAZM5P&TQp;yDpU)Zxq#o5n*RnDZpsar~jnNfqr3f2@F%!>b}v2*w$%vbzTBtc!8yU9x(sq+ZNg-V77M zq*D^`59ngY;5!7s7%3+UC`>lP_NaM)L~^}`;ZNpBH<_CB*Kx63v+z=~j9}6IunhEI zU!_me17RM*L{t_tbFwH+}DzdU)(j{c=KNyLQMIxF4bn}1Z<^{AiNSL~eWizs8RM1QOp-ofJ)K59l z_Nggp%FGVk0SaSsVu`diT$QALiK@>Z*GPx1hY9KkT2&!*31!UD(aP`|B&pIJLxc>t zs&sXSjp3YT!H6QHe4xBsAF8iIIiz`rgc9nAWiF=6F>zW0p1EEc3(dw~0t>v5#Qp;l=|$iw@1768$B4kGQtA3K>&n9#!L@JskjGD!MR zNHHic)6ayJG>cuJgTUe(j73yJq&!GsSN?!6@6}{a$Eq>RY%Y_`z_Ny~5WzrE`-FVV z`JTE9=Yv-+?M&52v&Lts>EUQrr%rr|S-U)*u%RQ%y8Ow6)`5N8N*XH8#Pbj|qOAOs zkCvb42>dY0;>Rb-N|_L*hAD2TsH3dPz$y$g_`|3*o4@kc#hjE8{i5k&Y57rL_{fTL zT{(!x0!GqIlyz4|Uoaf1VVx3z);<=RiZ_X~9U-uYyf#;(0cI(`Kx<>3Pbi3l{Ecw=m5=>sBcfQY99Tkb=>%_)&rO$4+z#G3u$ySQdfyVS1ZC zw8;vZ`Y9(+9cZH<5sd-?P(D{DsXs;4=Z|Z2BUHgTBABWYN}U-CMk!VJFuiaUQiU6X z9o~el5N{Mjl0HyguAfo=1xP?e50#9x#OjW;ct_)azofao9DkCKeH&{c(&ERl2-Q1Q zI*n@8#;nWPXO4OGn#YwWy_-SlCekXP)M;SFVja$oTXVX&f+HnV=pw? zOhBCFj~!<*2u~i05NDAsarXNTo;ce+!;Z6$wo`HTu?0SHHuF)RI2(VmP>on89Hkau z?wTkIFg?-Hwzv^G^x1@5Zozr%!L7~9^QZv4+yq}!1$dVrxf8{Up)yw`(96OE<$7!9 z(-3UrMwC5OIShbw`78Sj2RJSJ8a@!_e7t%eC!7Z=*94x+Y&Z?6 zi;#;ct1)xcGgf3fkXOz^lu5I<-r9&e<4Xh2O`ZH)hOA_v3a(#+!^q|cdApgerqC?H z@TK@M2n3V3&Z5sv2-s5p44aV6f(Gh{%9;)IAd>43`Y>DD6UnHL3nI9qS4|)fBAAJr0 z>w;J|;tZ&>iMS17f^tnque56A35}`xhgw-3!HH8;1vd}@7Cf+zW?{T`OD0!k6rTig zP%>uS+a44T3{*}S03v9#sD~wM=!Dz)IJIKdEzd>B93K8ktG4SYA{ft}@zTILfDpAd z%%m`B3k$V=@|D`^1a&mX1r?MAp^@S`;sjF3ir~^B4uOP1Ts6WK4@1Ni%0Ft6OgTD> zpi3V{^^(;iygN-`=6Q}Mgt>(q3ztCl5!sfl@)^N!8>CuH{bZ2z1en3~xA>UVYIKUz z7NSjDiq@)Jt%6V#xBFq*hOz83gqNXL1KBOElAm&!69`8+7(wTHA%5H{#oYLs&^jdM z#bnS!6Kv?J#xt=QviXil&60^WkVOZ|%fwG(q0jLqHI9kMv#YNy*fDO)fM7Z=*@~V{ zxF(_iHdlq;56>uXMCE3wR5zk=MAwE9=^+D@$UbZ;(scBk~l6smVyK6oJ+Sy}4TL?ylz?q}pu_@~bq; zOsR_sM5V~-E8CvYN@PE$0jpZToLPh9aA*U{`c-MlEbgd?=_6$#@^_F-INZ=*y(!`q zL?KxOl9RwgbJP-ww7%qJ`Z17q8I0Al46$;)dm;=5UjT!LIm4+&eI5(^CF(si68OvL z7S;~Mj{02oqp1kFH}>*H0-x*sW_2Zjzw)L{{%a~K7b6S=>fFAteRf*7U3Pk$W2bgc zR@*7JBfwJc!h%vNmWrtJ|11?2_Wz}&cD+A!OV!%-vD6ilI?DyEFisNfH!@KQ)HmeT5Qp6(fmDzn04w1b|zeAskFfgDr$AQ zk9{AU+>^cthG}-$c-^A|(+wEJ1j4rggIdM^FXD8Z%C(ezWa;XY*mj{L4DMnUNBsuB z*K$0=IxgONxr&pH9GGiVViC8ZJ9ujtIba(Iv48Bv?l57?!`3{TH(SzGsDl9nWU1tG z-DJuI-GL$|**=X`Nr;GtH(js{e&D7aeRAzS8%msbC&usYmN2n*X`uz(QT2OaBw~Y& z_j+v2Epx#9!OL-6ZXrVSa?k|^W7d08)bS0~=cmx6wTDU8DiN$%QHYY(0Sl!=UCXLt zZq*%nC89skzjs9sTx*~@_7Xt2U#VdbrNo-Y-zBE0r7a9Sifietqu@cR%xl&|aB#ib ze+YZ=xNFaM=cUW?{4}eyA@VK~yIBfKz_}RDXgqqfL&n{{2qDC*;#+LpyA5wT>U#9X znw6XY!he}AsuJ}H3^9v0&|;9(m_4V8{Z)H)dQS&NTjoy8vWhXcWYtAQ?v2V4uxt2k zuhk45r8Jih2A~{0@1VzHFWyW=y$)xt35LH|kq64H3m@ZkiK~Z)e;OYC-ue>Y8}_E? zSuXqq(~d#+dw5tRunKyC0`j4N!DHOsZ(CM0_kuv4xPppS>Q*;!IW8h}3&%AzUYeaa zAVCg0T`3Vf>u+eqtewH6*E5thqq%$dWBX&4!FEx)*dBzO{jq&;f-i4(xUg-)4HX`1 zuqBg>w}X;mi~3{R$A#_obg`|3!};?z)F0cTu#sf9bg_+0iY?P0+wm@JPhzW8T9W)0 z0o0$jSBCiN?L*AR($46GN2iPJ#-!Ma{jpu@!nPK(zG?B+At|b?w&5T(~@HA z>W{6^g>4~@sY!QEK7rU^%{briHwM&XE;E(M$ zEYI2AeSW&w<{`-XOR~ApSCXYJY>haSn3mr9CdIbIAKRWTY}3=lwhTempSK(Qu{~X4 zB)MC<*iKD~t)D-(V_n!Dt4>prUn0o*^Y;C5zIv;fZg?AzF18zzVq4&k?IIVpH)Cn? zmX#FSx&GKTO*6cmmoBzB2(tc?%=O21y9?V-IRBWI2lPpb?cHO2_14XWZECvMUO|xc z=Pm4y?a8S|lDnphttctBA^zBoc42!2M;_CX>PfJ8!fU^&P5OhOD_k@9tO)r-zCAa zpTTlYI#`zBP_g3W1%^e%%M9!y@#SR&%4l9TA?&8i%UKSVB7@~IOr85;Ion{lGaW3y zVEI<@@;$?#;-$Ji36@_`M)Q)N4wi_6WtzeA!w*TYL=Bcz2<9nEY(ED}cY~!P);D}5 z*4tn?FC8o^u+FL^wwS?HNv!{mNwBO$87;Bj5KdF(utVzxyxW#jUb(}#Ckhe_BL2v`XvdL zJ_gJA>0nujrB)@eml-sb#A-Jt!SWi)Xo)o;D5uQJxek`o43Un5 z36{PF%h+_Vytbn)u_f4|rFog&lmyG`D5E9z2Sa$Oyo_0sHC zW%KeQHpOXP*8GtK%kLsxHCU<{!c&!4Uk6K1gJq|!NwD-Y zST0Hj%j?)vr+ohv?7hJ#^Sb7;OFSbd7 z~J)9(4p~Tfo|-~-u|kZFXrys|#LudWp$dpWyx7%v^BbJJ@ zs@HdcKxLnIXc7g$#9vL~cqehEI;Z5hOpN3{a&aE&$|_VnQ-GPkGv5Rv5{>7bgpd)6 zA(6Ti|DDO6J!AWsE3q}0rKDF~Sa}QD2~vBt%L;nA@+IFTY6*!eH zTjxNU7Lo->6+XS4z@D1gPaDzEueb0xO-@V_Y@8haZWA-TS^ zF%N+Y$et!}SBxBPd)Fo~s&7~I$Z+fpZW*>>hen})%6&OvhXvOA9RIngSZ{SF6=J6& z3b1#)j1=iz<)jzlMq56-t|9DLCiR%g9d*-8sTcO;xSg1&+6Bh(4^Cg67 zJ1};5t|CAc!W|r$Q`wL~;HqgqIxhP|>|}9e?;V$|xwmWo?WO?0H%X)J0AC-M-8@BP zXVX72`Xbw-`3=&2d=nvWZ`gV9jlZ`dGI_!S#I9IU8Ct9J_r zo8i~23*>ht%H*Jo+)ySPX%7E{XYh7F8fD%vB!~;32|PNwAQ&wtJg16uoQ_2KU^vuX zWyp`(baoEDZqqD)rY$45negu0p0~k)oa4}xCPc_x$J=IUM zR;}{k*XW%z-&-}H)|w*Maqz>F4^w{kO&~1ibA8wT&R&ZM?Z6ex;qB3Zs-^#=r>gYb zo|PI^h+6Fjp8@Qd&uwiUf#08yF=ANwlVRZ+>DZ{POwp{yKUGgCn)Qo3#jGyR02;qe z8qT_J449CUFEMN5GlU$dAYE%OlV_pvc(9FkK z4_xIi^Am!w^{spk+F|A|1~a3XkG43>+_TKZ%(aG@o1c~%hMCJi1DQF4zdo9o@`tUN zv*ame-Sm{hOh*?pqXlw6G;`Rc#G^m?ATu-h>%+|JV!CTkVwOC`tf!xJm>GJm(M&`jD`qac#4z(2SWwJl8fH3@ znUm2)beY*jh+{6z4EoK{Ow%haW~LZs>Yj{a<{i*LW|s2ThnY4GGt0z?@dffH9A>7| z$+gcc7s!g4`!6=k?BXzU*cFau9zdgM-6mfvcFe4t!O57}HJcq~`ns8!X_)B}&rF79 z=0{}sF>{izK+QCY-qDjc%q%}W{tc4v1zBy@*&;0C*fMC}!S4jMJexNM^cvnd$Fkrk!DC zb)}1$1%{cYACF^Z9%vvlxAWJBnLZ9PVKL&E_0(eyGuNDz=lIMlfvlLh^g_eTr(i)b zlVO-yhZfyB3AX0a%!P>IF3lXZ(b3G7mtD*(GR&-hERLDCK?9jt!e1X|ZV(oznODV# zF>CUu!^{(B8fKOWWW~(9v4)vWV4=PSQ*Z2ZDB7#outrhd^@RjgaV#pj6Q$XGi-BIv zEsRB+kAoBNgVW6qPKkljEfLPvN4==U#A+_^CJH@+44fK7w>Wwh`@t#ogYzq6zT&Gi z5zf_qa0>n4JZ0b%Cc@dz4^GqhK79Stz-dCDi{tCRk9ezyd=~k^>2BaGN`zDH2WOlg zoDbNHDEW*_gj3`PC(jQ~#K6f*gp=h5r*@2&S<(9t1E&_TGZ;7j@FKILmo$2|-!Es! zS=}5^x~aL@HG6fYy%&8v1|E|z4sv(DYjNwMb61>9Lbrd7!r&#O`i8#ILHkipQ-8M# zB{Jb#GS~7CMl%OQP&{t2fS7BNbC~=zdieCqNZa9&e3K_tGJthhc+K$0B@SYZZ8@<; zN6keidwBR4=V;_plbg+v;Rs^(g>w+R@GocM;fm zUm{P&SAhx+X%1#IkLDHuigP?=^j=Jp3!5u6itR zH2_~R$e#WVrV4O4{4TjsA$tbT1R?bI5sKLeTu_uJv=3#3j|D1`pV4q)&?ACMO+oQW z3KHfR&C1u+rb_7KP;qkug&?zPexkh*#JU^gDP~PzOb?o8>lmf+VVl&jwOB3>N{ih+Oiyug@il5+?;6Z3+~RpBx1Jsu;~PFrDnjLTgG<;p4m zY{gwCx!iRL%R4j)@)_8);2`hjK|YDZosTO1?z(ijAaBiG^F8ib;Bv{uLJi!@_B4{Z zNSoPQ$&^I{KaX`6y_!Yc9_vOjLNdJ`ds@AC>`4BA#nV_s`_7LKdOfzsK!``@9rO_K z5R`cANae8)ST2u!jME=pk3Dq{flwiuR?iX(nt{oNd<-FbJQnxexjnX4dF*q*rQGM4 zVR=G(`FW^md#tPNpa^V_ErR`U{YCt4g06TK#|&g9Yp@0yUS|y@G`G(_3!j}HBr5vs z0A05V#S(mWKd_$QvwMO`cVZQ#a4I=hJ%CFu^6}ZhW03FXv!3-F0GfXXMVou@ksy!@ zGjdjxD|uqs7jZF7t=DuT+S%wb>34CSZ_K;6nObR3i$W}avB?)tcoFZuYeLc7=Z=V{ zKx*91)?HCBmJrL>G^lsMI13XeZi>z{<%Qz0ro3>p6w4D*9&E7%=UgS}~3jwI$kbr(reI%~8tk{{h)iC{Nr{q59I=I+yk3w}>G2Bo zL8-w$Pr>e!8tmN^?5DC*qJ*FHGwY3U%k5*ZWTMU=A1SS@#A&RI55gPz3cfcM==d;| zMO>@F@$rBsbhkM_#tx(ts<4@YpxDP#pIFr!ClH=$85Vnz_Ar)zxcG^7N^PD{dA%eL zy>YHN#;g$n)@E~GW->?Ni|06+Wd-s)_n5g?@fkx=-_T|6@-TfwXJt~(6l-d4ut^}X zI8&^X&tr198?GR;GA8U}r+z4@I5|)9rCU56DVk9C3N7M0PEc#zyecTzpv9~jmTy5% zZzA8tLmY=^_~+Uu@F8h@;ep>7%D2BW)Do^+g)X2=O8F#ze3~!jdf?kUYyBC?$6I4j zi*VD*1y1)Sqd0*b+ajX>z1%}u#Jj&YSBuRht`<@fbrsE>(l<|gXO3-i`{SAsk8a`w z^HO|&;>y$g`xDXJ_jXEv{{G!b`cB$19OxJd!Hw{J*QC(fCenTd)=JZ&{khYU(SA%K z?YpN-`)Ns`&paSOGS6bAI4#|a`*F??{vO`r*lFf4Fx7^b>zcQ|^(Z&<{?eePbj|+WRGi-Yb#zS&eDZ{_e@i zB=cZaf@F?Jm-g$t&|N!LS1{07J(17(D0IZ%gr{Pv!<;Tvk#N1$4`uW@gNx8yV7fzn zTG45(6QI6zk^{9{GN|iNMnmnG8q{I~^-@^3FRjxI)Rz#zQ=qknf%+os&KGK519fa_ zP~RBlNT5wJs2`z>mcUM_LA}919RWM@rFDvd`XT~#3KH1cKz-=vBvAVpsOP5!H5POv zu;Hg9P(MH!ErIr_LA}mEJt`U0$p-3w5Rg-lKz9SR^v5K$_BK$@^M#5@$6LPX;vT~} zW3q7ZhwimCef%Plae39%r>q&AHLxHfV?Xp+r-V8BstxCqO#Uzfi$7}f{lk08=KBjU zeEwz$N6VNRxCe-qb7v;|pRdo64UTda;wgNyPfeA6gd%zzx7Sdrg7c?enZ$NX)LZda z%+16WI}QM+X5XjL<_p^F&@043)W;~)UEQcpa-lA8P(N+3EI83dy}~5kp%Np357jvH zKyg9Rx5N~>%&ED|B%Y2$Ze5>BzBh~Avf3I`qJY&jTNbHYH9_9=0-C#F?92c->c)z0K$`oRhpLtCS2!$ozt<+^6Y07%RlbpmY- z^Do6U>Qn2rk-#^@!i_Yt_13)&Vhmuvn`z=$kC`W-st!a`Xp9MW*ttiTYTBol$b(B2 zG3(@As2hkUlCfNYj9FWTNH@bhlQa&L&&B*q{GIF8jo*=s*Q{&h7xUjg&gT3399~<iqP+lSnBFg zi-5q!#m9*6RPlKx(_0$FBgk)wUjZ@&h1~oCQp~!7kQKi}&_-DOp?D>I_nfA^*J1!{pwi7I zH(Erq!kqsGurEb;{DRu#>WtzeL0yc=e@L(%6$9MLV6@ZMwT$gz6J_^^&ZN}7$77=t zc6-oBs+S)nhJ#g61+s>LJYz8D>##?UA0IdX(BT?bn*#J##Ll9luyqzM0U`=Hd3iSg!nR!bLXLiFj`~ z!&sECa3K=4Fn>cNXD%)}^uRe5MT){30E(c6fxbx6?pww9kGSYwSf5XzWT|BJfcTpc z`BkI#Y}v5)9!o!N&9Iq{X8p{WatLYY(WESt!?~rBW&Ft~9uka(vYCMVv!vlEmsf16 zmt~|*N3C-d^?e!Yo8prSp{o_L>?bfCbv-vo@N`pn_=9cl2a`fmxgkJU3Rg5R6&BIq za|h9Ff@l;{0~Oj4Zux+Y5RwnHg4Cx`-D>+4nZ|C~2L2+}luLFrR45FI@(&eI<&qLr z-;-3Hb$|ebXVIIY@=0lJk85rtD&=!8u~e8>vx_)X)gIuFUROor{eKq1#%dY%P_K%D znDyZR5t&VP;5fdLDYX4R37V;Venu6u6|oPB)nCHpMbJRwE`$dLC9Gef;tDvuS~RNi(Gh8naB>a}+Y>Zyt~!TZ*G zA{LwRzYtNZk#$O62mO#-UnK&{M_)G!KtFx$KAEWE8Gpns5An|WQHZg1bc=embyRSq z$iXIc0fUX!(P>gLAUf)xirG54S&C^<<69iI^l%c@RzS?Ukwk>!%%=`&sGrFgrcLO9 zKj44*`QOwLdH|Y$2Y;6=NS0Q*Sn28$n#}G~$Wx$#&rfcU=PEv5bcB#EBsbOgpuZ3p zXuVQmywr5KxDc=P_-FQ+I>BL<1dm#x=z+Lsf}UW_M@9T!YRa7kQ6TOAD&bA-I9h?Q~V6(y;)*wi{HvDQd00S;4x;?ixVzCX;L zsZ)tXGu4cKQ36xX##OYL+8q@ePBgq!Q2NW_Ac*|0B80t6Nm1^--ja@%Z;`&4$m$Hl z@SvxQlw}o=TpjQd&flq(GkyM>ADmcTRnm0agd^}L`!0@AN}7(E&=r5O?|K?sDn=@&#tO}%bmdU+dL&IpH1PO5_}9^;>a|FGVCDSi62K*pFym| zLq>hnQ@gvTwyHT)Y8ErANdv}sMOFn5R6uqAUvI!WmIbq4Vz-k-4p>#ZzXz(J2{%8H zCeQEzQ|FXES6tB(%wq>%pV6+v@Ce;%HELN6JxM^|Ktvd<@BriS)F!7Py;Mr0XvyTJ zjN*2}c|$uH1~ok6S{Gywz@k9H%cOk>FJ|K&-w}wYmLDc`tiWZEsR~A-s!7Qm`mxjg zcE+*!pl(L_C7|%9I?!*KMN8K0YbYN`1O`Ah9L$`o6F7~F*Ut|npP>Slh{(_KenKGH z8I?6aDmy;aSNX_Pi7$LES;i6>#m52aPn@I#)Z3*hy3Fo|{Jo=y8POq{d*@oRAYy$5 zsrBd=AV!9I6BVl8C?Pv4uaR;gAhK9U)Xw>4F1q9rY26442MU4;g4jXWbRZV1Ho-=) zI}t=eiZyAYB}YQLG?b6dBq%mjjAlaUSJEh}zQkh%%yyu6RnW(3^79cJVRn1i>_>Cg zzVGn+mJsQP^Sna9aFD`|bDe&L(0u4mfwhwkbwif)y6rk`6^S-Y zn+_6+?FjfSUNMevPf%pfm<=t|&%z%Qo~kIzO4e1Qj(4DOC)e-~TGT*ST0|$k*&EGO z!*GS7#3t-qFJZ$Ct_y+78qQYIGop*z>!I9rUUMc4BKOW;doXsvqZu8nSRvQIR0==t z6vkBn+P^E1Zm#9fiKC21J8-e?QEh zvG=D$d_@9gJ5E`>FhyYpDcnhePv#ag93w(u4hXDLpTY3);9Wi%VMnfOkk!Dm>Qb;e zc|m@x$}c`fa}VF>2-bS=`vfZX5Mf00l_AQAo7w>@XL29`PsX)EfYRI7=y!QBs&-4$ zdObagfi@39BbS{JSX}Yc*$-jgbApe0fO#|@;<9b;_dvJi;p4~dnSf~<77E2CQW66OvHYtAbTw`YQ6@oNPQSHze3J>s|El{0`oCP z=%D@uxdQ|9v*&}^;-?e^F{`jMBqD*H(h}%vHARsCv?eLLWOMJ3mS>0S(VpOb7F&?c zG)|tN$Da9!+Bd(;S|AKjVOqcpe>Rlr9Q_>4{oAxvzuLlJD*5)NMIKiBZb$2k-te(MC^|G>3<-Mh0~6Tg^%8$MCDr=n+`yZ zz7Q&VhMq_l!`uq#2wTzILk%nW39P(ir(_*zsGeris7Vl3?r=(WHzl_?O#k?fBZ*b` zT#&SGq*v;eX@ME0N5JSE?VUUxElEf42i?Z3A0ZErUcu+@uN6P3;&bmlct&7xCSI~< z+z&z3a~08Pos@gsYTA>|XpQ1>KL^l;gX0ooOmub8MT-AnqU-2|&@?hGQHYzBPaPrT z$E=6ZeY0jAB*d0_TN54A5s`}d{%}g4`yz3L!0Cg-zYGhbK<>G3Q(HW+b2gu%hmV#7 ze7TT=U97)K6)^L|)y@$BVQ#Muq8w0#dx5SY&x}GfJhbx^4nP9nXx`Vv;Q)*L+XA>K znnL+lrugmfdM2sMwEmWCwYl*xV6w3uMaZOG?_NK!x0);VT%6Lof6J``&`;U|SBd5Z z8l)YA*hR)l-15;RXNB3PO=(XC&f7{xxM~Isi7nTjjucT^p_G{aIo&a4Rlmb@ZXYZR zMs_moQS*CHTXH<8`TlQ0<&8gVGnIQvz#wigm=w3OTIe4HA11XATe0g2%7=0qX`!enRLbOZ@n>$y2>e|M;7t_5Olf{7@tmv3; z*<1?EjVPat4qdv)lwQ?ZX>faM=T;#OG!V!8L&WmtwHazD5|ivr!D%an7_r+RRwl!% z*bk|}hj;xfGMe>x3bpS^TDv@j+GixKU6MlW-ILb7E`{2)UnS!^l0xnKlh*E;LhbVs zY8TjZ5crH{qLaWAV%D8ac0|F+QGP=(dQxU2x3OCu?3?o!YX&#h(Dt1M5#G3~ZX`X{ znHP@$?Sa!n%IPPuwk~*iqs5hFd_Xw3^xZ8Zzkc)q-WpRK-0}l$XJu2n;L6{R<9c$R znqX!l+?9x(59H261L$W}^f{Ry*$F?58JJpX*k7LP2@}=X)iXZP z=qfI&qIyQ9>R14=d)e!)@#jd}RYmR0%|qWH3$s0yT=cFC4hmFEI8vSxkr&rC?1ikk zYXUC=+^Cl|t7q+oP~`@Y9Xb|0Q!_#p%rUDUQ0dOa@e*xaognCZAGD6%2+SF$Qt}_3 zT*_?#GQ=qj%!rp;GyrkNtb-fT0L20fiW&8f<4^YTq8U(d8E7t5YY0oFe}fg@lF4(M zi`o6JQU!`jgRzw$8U*50*?yqJyF~hY7x1Y0xTFU}b`}MJg}pMp{_KE3{WB8lU+1d7 zAL>hOnd}RcSxsB`P44W_aN_5HL7$#fmUNY>DlAUqE!ytRx>#c6^?1p1?uXQ;gA_~-5zw{zh>6`5jQtV!>2A0V& zr^;=Q+(a6KFp)}-v?$RusNhA~Qag(uj6xDDT}k)iv#4`5O9?rI_g0uN31Py5=MGd6 z=S8|0YTO8htcxg=1j(gH)h)-+J3Umb#Zf;ORln|)5>;>OVxa0v7`pW~g_=NBH#=lQ z3Q$|j+E1K<12cKuT@<`hDH2UBhG_3v19%*Y+7NK=eqf#r&MkV?M-p%y&?Qh^PsDoZ zcD!@~mF^ArJ%v<$G}eLb+QlNq2J+Ozxy6rHgOuoKjtnp)sA^9(GNyrBM9BW`#05ER zGMt-)&+ADsV*Pw_Ep8LGmO+UP?GZ6*88KkQFu(Oy2sIM!5U#aGNL`eOSs@0hq&r`v zcZPwGX$t-chU<-(y1Nd%&vY zVhF@5^S%!#JlNo*1oHC~5s1tXOgJ8;ot#LvtrIXLgcR=tuJ}2Hcki!; zE@s$@h?R-fuqLnt>&Zo1P{DFj{Vi#UvxY7Tu=f+fVrYp#;W~*x z%Y1+?XY&K(-UfL9tf3mxu5v?`9Sv%1hfigq7M#-z{W`R_rH6_lyk69)(K-1 zMCAz}HMF4~D5OPu1fs6hQxR7k@2=A}&^WQ=BGdh0wU7`l&j(eB1S8DFtWU^#G&EGV zWvgY&m7bu-3d#V6Wmz?l62g^O&u6NjtW*HZDk(UgDqDo$R0HnN)Wxi&0$#~xe=n+= z2tm(e-Qdj{%^(mBov4W#B9`h9b*3RoN*JQfQ3Y+H`Z+{J74<@wuziGJP;~u^wG6h+ zURpLVHx>$l7CKLT1qB?DcZ82gT`tZ3`TdQ->;q~xW_K>nL#c+Ij9>5l!0m(`Rw28J z*{e2YkFG)ywcr^kCp;x2F^Q)^kJCAQ2QM45a~>o#R6$?SE)LqI_`B}njd+P=U>*Y9 zDxnKnP}1KAIl+OFCR-A-L&p7M5MnFB(IJsAFJ}{G+NxBN}j&HniJHj%dMb@tOdmP zv>f3?K&Y9M48?l^1gf@5=qXMvE1RlMd#g%UPbOYgA_Jn6ssK>{qJ?%<-L{7n$*O;d zj2Icus9(gHDo<^AsL*|ox3;1?s1O5rXLUJ8B%a+SI#X4NQeV6~Qz~L09Fi zr_gbDGzfZjvO(o%%eVGd3 z(N0N3{V!wyOe=&}B&)s{87g$t->s>l@UuR_M*>NeCTg)O08dsnu92w3A*b6M)b zL4;r*Srw9`Ht2e(B!N}3jJPt2XJOj`6Ed)DXTyqF)SN7jIP9DyDY8Oh;gKB-ga_O> zg}xe|;e8mlp)XR#UX3$*l09Q3zPeSp;3tt)$KN)BqgVc#*3 zw6`WJ1n8wHrTi>Pgu0jvDRmG@VjkE#ho6IFY*pA5G}W-!{wx+L%xmapS3E*htV6d9 z|F{a_;20=bXkJjoJy^`LM(s}W7Go zYr@NdVvUOnIr$2%KZ6Isavncl(RyIv%!$_FFG;9&Q*+x8|<6rQi zFxNv+Nm6d(CSA3F9E|GVuaQaq-~Hfd#<3NR*a`e60J$8yxD3d}1;A3n2;28;`w&of zv5p6MrVnzb<(Z){6DT9a0Fh42dgl+p%w&la#rG<1V%AJT)1AF2W`?4&UakjFA)X&b z$ug?x-``M(j!b9c)$3>zhBX{-+qm}3K7j7>Fa_uwFQAk8ss>d@?*U`)y&J7Xbw9;u zv|Z$h&2Tgs)*B+s@)|7;iwtTs87s_zJYj_}uUKI>*K?lpTvC-!p054^a#17DLcWhN z@1yx%gm(-_mFbmiK-%O=PP~m;SQ>aS&fc<@2VN{`>NnvQ{K>wnGg`@#ro0Kelr;5K zy(zu?i-{I^6o$Ug4<}vZqc8Z4S*J+%1!>XI`D+62qKw>%_pUa&o#4aRZXK=(7u8_j z2z-}LDsxEJAglgi#WTTobAg9L3dqp_*)I;{%R46p*&QGoPL;Zm!WHx}(IiLazEB6di;)d!w%1bLC5O4(i*enPU4TG(ufJy_ zQHRT}QeKuf#k$HB9d?wh({!B2WG`t{1SdQ%fP*FoY4^^yki--0$Vs(?s){>73J9gp zIi`9%nC5qr;{NftjAje>!1AuI=v-|1z@O5w@+XdAZUt;JL+D&1!sc46kmu4Tx;|4JWj~2~CM%_7Xi+akp=tR+Y zugVGELr!SRww9_eif>V8jsZwMmlz9PBr0%VA^(PQXMwd<{DuG3{#ED7(wKgdoPKvt zv7=7}_>pk-A-keQ<*Yoee{`49nVM08jJkAW@dqpKD_*T-cY(irsX?Q#!t7U(52y1W zABGwvHOl|#0ID|C^i;fMLRYE&F*FF?4+U>-#8>1j@vBW!8X@IVqU;L&rMJ+oQQcDT4>H7+Tw>`8eH&OT5cDBy6Up4d2+S2I$54T z7NA>;O%aqCd(yS_%*@;t;I@b9Lb&8fBh`qyVb=4tRFq-QmCyOLR%;B<`O{qrchX5$ zNBDS*JUd)lDTIw#OhH~{ zv)czS*~S}(q0MlGPU)I^IMOTO@S##WtvKH1CiR3IEdNI;U}J8qOj{m#mQ_`tig~pR zU*+dL8_F54$+)Q1L$?)HiI_6 zd`|okZ8K}nwIO7)xS0M(MIElC3)D5i)O9)PDvmtst;@3jFOI%9o0BBAnH0doP9oqD zk-j*eE&+4!u#`){SP+n;4XI1eX8_2*3$cnVJBEoi{9xoZa~)$e8zg^kC_yJSpLt0d zF!}3w(lI53f^k=-tx=teMj<@e^UOK&nb8%+MQ7qiviBF)peG19^i%c#{fuX1K5adg zec5NC@OaG$2XQ>E`y7q8^JLa!#BwO0AMbO>#rfMw?q|Yz z^7oz0k{Y|<)iwMUdNTC4q~~Lw7A&PQi=aY%YaBLI29Fg6OJWvO3MN$XopC0+uvNEh zXQcF)iFLWwe(Ir|eL#=bISiuW4|W9-g~HpI=-c5dq*kL2UvXRaO-MK0YZYvovtSQ) zFWtAE)WdYTzk*AlnDEcTrrt_i8BvkkjbcjgOE{gW6Q)QFS^e(E!rK~XRpygcI6v1a zui`LRI`!y;0GD*Ja5n*yE>@Xl`W=jtf_=9IU|3m()kGH?0L~Kg@8uTr>$V7Nhag$Z zB2i9PKN2uWtUA$>^_EvS(-wvS6u7&!K1}Plds9T(X^Va zb`{K+Go%@r&7fiOXf}a?6>u8OMa&~Qq@0T+W%y@E3I540PGUOO8j#zLxtA~bKK-sX z?ceSY8k2tE5|+afNxLEZN0w8T+`13y1ai#hYZ@AAao&Zt8%_(Jh(?0^j%U0%!?N-j ztTYPaEcZ`v`4gTaV9H-Nk)wvBv~g3y4|`yJxd(`1V5~yGmb)q8TRgB~#!QK(D}I-Z z@MRv@I~L5ERw2&j~ASZWGS2*uMD(86stWw3U{alszoA zjUL!dw$gF~wi8RRs)A2?V9#1?#RhDy!84}oUVm3K{53Q<> z<>L8N#6@sfOnUbfW72N|mt-Q>njFAv+O9pI(h*vzZO zhslMztu>Bem04b$zj3i5sm`stq@lh#eLDxC5%jFG!TllmI2c89p47ikSALe+bJuTa zE;|rPC7h#R)MO(ew7CkVAs^vl84a}gAL(*Nxg8^hIQ zkqP^e>WTeOc=C44*ym>%kE)mv#_yCXWOn=%93TX86B3OA>`-G9P=J*j7S9`WY;lGf9MW>>qeDNEwu&&$`%y$#P9B`Dzl9$soPw_FdksZ^ zy8ys9V5{S>cT%Dh|B>gE)kEGpEwz(7zln^YUco_T^4I_0GM;2*++|~ujITw4k@2eO zR>lWOyumNyZ8FE>puAGRM4TtOX3{U?Dhv6b2l*~LyU2%~Oav2Hu(?=QF2QnR9*^5682zqSUmEJ17oFMR1HWI6N7TTkpyEhVMNYkJ8^Fq@g(Xnj+%?07#K>_oPHA zz7LPhs*JlE`{}o-&42x$$vDr-c)*4v8Ba!nk#XH4R>pl9&It757QeV$|3<(>#t*uQ zei?7BcOhT&Ait7fwCR3)8}q$>yz)~QN3MtCO{uME8Ov&L|ghbQCW4?P**^Q|Z2 zzw2)i(zw2j$oLWfq{#Tpq(muxG>RJ;pQ&~^V5>XV|IcJR(aQLebxAUQ0trUOEvH!- zUua#Hd}FJ-@&uantbGJbWPGE$R_m8>Jx_rN4GvGnPk-Ra_^EF^8Bf#SBBWwo29Rv4a{-VdtGqfi{wFgmfyyOd`1x1WY9Nwwvge z@xE?i_=|_Fj1LurP0RQNy4s$Mn{(+|YJ1Vc@tYuSTE^EY4p+uiA1e+|##O65887;` zC*xQ2w+QKJ9BfUI@q++Jk@3W&L@9nPiW?bE{6*v$knxBgnv$_O$?~WCQ4Ko8C>!xJ z#=R?-YEa1HnU<`9ka>n39IbNwPX*nETM2~E^j9@$J(K>(9WD9V=Z@a}weSv%PB^#Y zcZxfDB@=BhPfTmV8O&0u{#U9w3$TXcp^%ZH{{KI$ISsoX5F@ax$%P6u!J1XPsfsG- zvE~gXHOd-zw63R~TjyiVb#)$VF2nB>)||z}WY+X%DP_%BboKo^wlHhz`d#C!`LjV8 zL=hO#RdJv8w!4}@rmUb0M^}R>I0MY)S2N*hB*^c0M%xl=6fP5gm=2tFvGq<5StX%M z_5B03tLM1=--dOXS+HFm*ozh$C=+Y4i6^wA({J^_jkCw#);&ZKIZz7D=c0 z;62|2`Tbt#)%E~`Y2|z*8m?E`$=3sW|if7 z+5ML5U%2C_<@&4NxO~bJFk#*;F4s@B zVCQ*Yzi&w9`pA_&u8+X|04ZEQgO>)Vu3xIwFklAyaJ)?ki`mtA_oQVGuAst6OS9pl zKd#HdnM>T&BA5N{Fsi=50WKV~EUoeu>HjlK`J^fpQ>H(1fd~SgP>rncPmWF80yBLC z4;i)?fgZkX|jc%mALsIJF!tVrhz~X3b@|oXQq;Nn(!=a(uuf;EpC^!%;gTgtj zWRR=E7>{wj&DtORpz&VpH@tH{gd5SuEtIrkt!!$@2eyXw84gU#ZnCY(F*yY^ai zVpLL4Kk1J2<&mxYT^#wmb|u;(RN$(pJ9;dSe8I7`a8V1>BL>dJ{YNYEiz8cEb_LdA zKbJ*fDS|yIcMMn_`7&6fty|=a0H&Yk1TfVAQ{C|8k*|V)QdKd^`WMpxaYUWG5rh3 zp|%hg+fxg+v-$R`9oVQF<;EzVRz z4JbI2i4w6=mecNarL5gbGNv7}iG;VcsC#!g*l5a-)dOmFy0vLt{e?~GQ_6vk8(?BZ zBEi6Bl<9lQjY@X+NcXKflULp{>-t$mQc6%+^_GD8+42s%v+CG;Ffh(M$ltA4<{|dH z@ovxF%0=KOppSgTmOV^U70;FvxG*x;6j@W!gAo7&wGiy6>kAF$(n<9KXd);PQv|m( z;5G@;`^i0}^e|%z{k@@q+4iulr8>pi$^El8RGjzK&eR(!?1c;e(KPisG|@j7t9`S{ zxmcTJ7;%Dgv0vYmL1_1@Cbd|Tv8yJVKBgSh{;b09l)2afCMM6tX0ntrdV!jlfPXp- z8V5#~CC>`}qlmi1tg)v}WG@5M8SH~Q(hQqq31#V0u;~)oG;{W#1^6bv;~C@cw)2FA zu7e)QHyti!1K!yJCi8@Ka>XHrM1RQUN(*_M2RTjjHf zC{8K0E-6upFGg`A<8{z;$TJ}0S2!-E3@!h8U%KFyH0+1gZWHZ9a^6y>`OeoO%O$ix_~{HcG?Ln?^{YblN91 z(cju#Vuu=O?X}>jzqR2%+1igq=%P4Ff!lczT>De4-BBz;Xj;a{1GCDw9$PFLk#Tz& zg^i5o-R#QvucUzB;hgKqA7RC`kKDw*UgBg;On=R%4hK_1jI;ti#F@enPaU?xLi`zZ zcmr_8Xgmpmohe|nTS1aKn0HvXw;+Wr7?0$&8IkrpGF^r!?3AX3h=S>-So^KxIa^PoxVQkd4e?kKkp84@oAkhTuzx%gX$)vIA% zo%7fU2$#Y-&grawk;=Yuun*&+H1py4G7^fRkE6-3P4MP%aL?n!PwUaVQ-zAy5Rjj- zG}pRgFJ6PKeFT-+ATJpg|La=ZO>Y}I?L%pURB<1F2gZuPV?HRKaK-?}?^8&@VJxVP z9|JO-VHCSUSb@EUcq~CNjtKx9?a= z0Bb>&lpKd9`Y|_0EK0tC^`h(KR7(m~(cB*j@_q zhSuX1oGPs+9$gP_p>Fb-s~(Z;J4n`2b8bA~*JGcHF;4`hif_j20?b%WA|+ z*npgwCAfiAwPhsaUE7Y%8a>2#Mjx-x#lb?AUZG_yv`Nhk3$^wNbqyB!msjWk7UIPi zi}7E`Y5yEo<#KOXw*iz3m~TQ5*vl)ZJ|uZ+&!@pF za3*tbBkGjFtS`j00%B_90x7BOA~kdtgo5ix0c(G#iidf-agNJ%9bU4a>i6NxI@1$Ie1?PW z9Jia|y8tZ&km36wa88`PDDafUB2I=zfbSLHdwGg!j+9f%J%6TBi8m$R2g)~RK=PUS z6SJ4#6G&Y1SdPFV%2c8W^T4)B(~P%}j20HQWk-_bH{7u>8?EJU+^Cyld*VhxKtByw zg=@`QlGkMAX}4P4{zYC)(7AIA=3Tk<45C6nS!IOqP7AkWbE!bk$x^E z$t|{yx1>1hs2m&*Z$aOif2H=ryqkSjTd#;qrD&>LG?IJ2`-z*%^*89j__R{G**yO4 z)ZzCAp2p!pQE&uZ&VT;^j0{;kSu`urm<)69w~PIgl=j&>1$-Y5f7EFX!dG zQQE8tK=k>^qUT8F`HnB)KpL7qgEV{!y9}x1^LO}GN|^)93}v@24=`d79BbncNc2rR zSl;-q@IdkDm{TsepWK!F9!btwb*CkbHpim0zrlj$Q6HK|fySu*VW8G&%kem1Zj$`G zzO4LA?qyRCawxwa`cl9D&|~b3{^KMfJ4KM)W7#`_#Zg7v`XeSKtE4BmndZ7!znZVOTF8yAdM)1O8zhRFpA}KQ(ThKLL>G~TR z^)U?>h!62JG(fD{3m(1{f7g}(jmLm*P0}cwJu?776V#C`M0HbMv=593f8rzdTwD(Z zId$(tgtP ziPkpi0UOr6qBgpI5w8rP9RG&;{2nu;Rx;ANgOgGWe7iS_!=rX;F%JMI&1mKdL_k#57a%Qi8 zn>=Q3#%XmLPwCB1;=WrXRY4xbrchtD-MD^FC8R40f@%6&>S{&y8?uhm+ZBAn)ire^ zlREXKDC_Ukf-sVlD3~kX3qnfESIMOY8`z9qFm=v>tUl1?Wu%Md&1z(zbFROc{HKLq zObolkf6rblZH%}1>S_)J!i=fBt(L2v7;9pYS%ac)^PvN)G@!|R$w#iDOfIS z5VSwTP$v!BsdM7tDB$OVlw8O$Lw%^>pv@To7Nl5nU2sS;j~T;Mw&--7FO#RXT6?wr8Z$Zx>5QrKdA zGk{v1UU(^PEpzTDgX;9dC(hIs-37im*J=tqui~OfNXcKwbZl42U&zl;df_t|8%=6X z3n0v|YmR@Rjgb<6aZUoMH_58PoB z@AeWOmqZ)v-G7`g0A39}8Wh{&JcMAT;%ae&^%$;x$4xxX!*!oq0sE>{d66x9vyZVBy2O#44LO*h~CfHf~en%i+_s{wsW%-_@siZj8^T z`JvD?58~52S>%2uoD1}~uz47-)3{B2I!S0T)AD`3utoU3(H>b`i3&|aE)()Bi|5>s z!s25Yx)E{xbF3{EdfQE$;o;h2g-ML$8|>dhceLz%9@z7hE*Nx3xVh4Tt-8uq@!n2% zGBwgG`=#AAU+g80w27~JiEr4%PrSr^gat0&AHE)Z-)k?Li;Uja`uIMvz-6@Xy@wS; z!r7!*!sd@~5>-5gM*YVd>&AFSww&Ez2Fm)4iy)Z_B*wV>2)mM0WL#rKuJnp5MG@!4 z6|OyEY4_5rz8I`Fz}!~j%-D(~y9C9nAw?fQg@$qtife67lf-z&H=f44;%W?6Wkgb4 z8D|k?_zsF{5)bO~RCjMd;VbhB`zyLV+Nchc+AHcM+6r{>4I32TM?SZ>t4d(FWyvyEq z%S1UE2W7-1Wgo~$yB<73qce^~2jR0s`oQ=8IEmmaL`hxs9S$H!5c{fA>lnDG3*ZJy z2xV~e+riP_21j=cCK`<6F80-8PF(EsKY+t^f;3(e0 z@L`MxFkT0Y+@0Y*0zPomz$?6m=bXzVJclR>D?>95$EA5bkJ0IG@@w%V8S}G)`K}zs zLT|u^T*%NnY(5xAq0yLjG8o1p9XVF|yWj>qk|85}Hj0UH{)N(KQrx{*PWsztCV6mt zY^DSsc?U=c4_m||>q*oaIE{#2fG6>5*DvmjAI@oSQjd5!JV$?=eg6#l>0E+%gxnEd z3>Yvvw|H>$8)tEItdi=x>VobAmIW24F3YX1!dKnZsnu0W2XL#aFx73t)H=1gp-I(U zW2!@=hoahYV-KDfE?plE5FO>A6G+kW{Cp*xKPP)X?{km!O_p_Zc8cBzNsS9O_5%%0VfS6uAR{g%&@Uk z&B&tkM(rWymw=i4KF|B^%^FQ*&c9$Ue2HQ+_-&tb8uF!(&BdOfB=bZ)&dG0S*1gSazBKC&?^~Mn z?**b|^(^}-e*0E{T>Ccp>uO3Vx^M)1P+XHTRQ{ODH{zN2!US&M~ z@`vz&xN2BtSUSA)z)@x*Z$ILTaM34Zp+RsXj?n;~nq4>X`TT83-NjnmCMBGkHP>x^ z4RW3H;XR^NSus5{9Fyzfvts6IGpC>TH{Mu9ui;6L0qti#~EIn&~Be z$GAED7cV~X@uR|tDstr{=nd>7dRl&LL}&hCY8Pq~qZZh=?7n+_|6YQqocU>zk3e$x z_2&=e$c@Jh2S}X>ah;t?@sw!$6VBS#sHr+LUZKB5Ame{WdLZB)2+m5`GQj)ws)`5; zk`e`5S7K9bDS)wbZd!=%f@S07vdTtdYw54$hoIK#_uwKS8be3yQ^L9GVl);h%LOFO zZ_ARrwF-b$098Ipn&s7ET7fm}TnyIJ3G+@r{fsHRbKWTSCcOT9rT+cya{iUYfO!lR zFzkp2CAH){^(7isI}bceD@CW3Gv$Qy0eWbX8#r(goj`TbNSGND21kDy9EDY-&xUS{ zF7SwGtm~!~t`}l4WaX_0<#cdfrLKQu!IO2&vbeYJ+a44%04v`)kcZnmekm@KlstI6t zFHkdW6uBT~VZw&p#9Ikl>A?>EBiMI5*v@|hyUBz70YYgq=1Uq@c(5z}2zG%7`}po* zA=~Z&DqWu#UO=i(oH7Du{CK;}j-VuTI3Q)bgJk^LUom>X4sojB3iT0Qt7o!%(yE{c z{M7EQpE}Ryr~V7YlicF&7(1YipsXAv=NUisbRZQ!wH#`ME|ObLx47aLtV8?U;x|}U z{kC4z=ut(YU-aA1)P%E69iSEHhv;rYM+>Y>sfLc_@8#I(B58?C1eIA2okJ&|WuND@ zBmYFA>o}SwW(mC;2=Xxulsmk3mg0HkPVwumy-RXl(@~Jl>q#y`C0q!7fzf1NLyl!{ z*6;4D>Aia6d7Ci&884G*Lc|DKNlcynzUB#}v0zzNlfGs=W1n1+alIGcr#@bKtnEKP zaD1XgHT>AINvwr+ChHmVm3;I(kT}u8R|&}nD9ME1lldi;;!rl;dyy{=9`G%yCnu3` z8pa6!%0a=`ouMR7G3hq=13lsShk8Rq60 z`?-A#hPmr5R#~jRRR6ZVh<|1Ls?uSumuJMQ++hy2087I8u@KO~AjjbNiLZ~qpwe^% zq5^98%O&)(+@b9fu*J!qA|vODM1(Ktgz65CWzS)2)Y#+64H^-rQ$0q#$Q-UBR`B~H ztkCw0%+XcE_ndY_(vzc~SwWXMtk62BF~I$c zgMC9;)G-eBGl(KYJ7TW}c8B=%^k%NE_lr3CB*GG2Pw!t{bXV%iqPbJu`?CCl54Ik~ zB2#f!V=h)RM#{3q$b2Y$IR+dQkT&j9hUSVdj6hC2W7AM7ip=f0@-kN0i8-Vy%euUK zBeg^dKpWc3LI)u}{7%E~q#l&I>a_U<*Ou!tn3PN)(b(S2u=P&j6?Qw!N&<~V&+lx^ zmA{SVG;a(>ES|Asn5ua^qvyr^g=4(3F+6zT*>#FPc&zphaes1=i+hXwN;tWV;BK9Q zJDRr>HWLAews@-SAZ-8P-I@E=?S)mLav-W}haWTeqow)bP2wouv1oG{qHckxn!a`? z9kMxlpt(MG=Mb1xs#gh{UWqTAuvA&;eT>Zm5PlVehSH({8C%`ehb`x^g)-qgSrRR( zVMLs8dPqnBj<&Zf^;?{kSio1LPKH!zu*9-{BoO|M(6?ZBiB+L@o)Z<4w%m%-{eP%J z(^0@b{gIM=c`twt-_z$pg$gk?rm7J6IRgBw@GFq=62_N-Vc|#~l-AMD zvu;=`TC8}+V3acro{b9vxLXRlY@i+ClOzX^>Yhf~GH8bX;u(i~1s=FZ3KVr@0nKgW z<=$d)e}&C6xxZatE4#qtZuWA&_Hs`&xisje?1x_N{wBBF%T0K>zhI@1+u9f@HDzae zxtk<6cdW^I%F9`zIp>+2QZMIO%{js3Jm}@bHRk}6ljr5!CON_LIK`1~^7A%_a@yqQ zeG_uCChCe>E>KV&13eUn$lWoyB#1dZy`1KnLxPyIpO>@k9X39f1Tm*L%QE~kEb3ve zX<*js8>aAL^A0d9y6_fr9@*vT zJw{fh_qetyy~mB!={<65(tG6X@bxdbinw=GLf!;xhl&zKCjd(?$|%lt1APK0Zr&=C zXN}Td3vYVjP;TIp+qZ{9C*Q?4J5W#9SGn^6WSoqSSoesgckM40svrJHHXiW;^uKZT zwK!bNvT^-`LsZJ>P;`JErQJApMq>YswVjG9tiY>3+-Uk)EE zeU+VCzOU48Ocr<}M{E44#|DRch3nzH{MF5W8r2ahCsTAM%KZu}#SLIPzLa049dU)N z59REOtU-gQV0GOY_C{3*%j#+cs(vJB%%_|?VZI|43@ha>ZSZ_l<^Psf@nGs=@2^mMGT?SIi$)EYV`@D z9}Ek2Gty6wha1$dk>iRg%Mh0q;^Chp1Hz*l8w<~PSZVti7<~qkUPBhp!J%nn&0NEd z)BY_d9>tH&=zlhaxf)h@=3xH9sZXq^qQ2Wx2)TnBUQNWXWDpgDTQ;PfFO!jU+{of_ zN~u!cQdp@K=dlnho*2r#7vqc$-g}2pkq7ZAS@&gvmYw=%p@!(X`_auSm)1Y|khcDp zXYpxhI9js&lj2mDW-r31JPrXLoxNB-C=YV5BRB}lgl(1a@PZ+#?VgI>jMaVcp@sza zJzM!;K3mJDY)?5Di#OWD6U5gF|NB9uIf6Q&O@2QrpaUEef%(4E&6!^elniJ{;uZ+Zu`8uuZ^!|O~IyeDH^ zZblXeDwp=3<+fiwTg#`mpWC1fRLIo08FwVYKrjX^;G4in*p1^$#co{gCa)GO&_oaj zgGdLx3KIe7vdS4MJ)#MaaU)8z?|KaIH27cGIQc*l7@(y1m2TSnUG%RjX z$4=Fm51+6)vkj7TKBPGb>dfvJu+YL`up~M%w5Jv)fiIom_Qg&* zS~-h%NMGD0rhd6kJax2h#!S91?Bc?hu&KJLm0ZRXNzf!syNRzB&U-a=6VBrc9S{vcW zx48g*Z+hY7kWV7A7Wy8lJpsRC*|?xQvO<-w|Jm>bqv-sm$NzXHuFv60OKv+i=^kut zNPX=pz36iwOhh&aUWUiz3i3#e;_ZM-0D;#55?G#uGyMz~Z$~$20g{;29+m;UDBvTb z{xN8N55pI)vo57IH#lP`sAFag@vIbl#%RAP! zLYI?4o5%*YQ*@U}ieXUiN0DPRf9`boUBwd5;WxTF?F%H7?W^ZO)C2h@chZ_7ual0G z>S)VW`i1e95C0(iR$*)r*CqUN3O81N7vM(i=|OH>ioqY03$?$o6*6Q`@K<=Dufh#w z0P(oBgxDfed?{PNZH*@v&Y}!G*iwNlL318HONUTTEB`_wK?QaPsrtY9wMW)9maH$O zpyByKl42+y7$mD3oW_E@DQUS3R4qdxiBDDGM{LLx_^*f&#>21sk&O=`NEceC7UWG0 zOR+;u#AsL4z1ik#$0@^t8hmHaLSeM#kx-RrpB&=Ad)j;C|zGE0`j`-(v9! z!i0lBA*#lDPK5=p9t|APMzOIO~EXEKB5 z(dC1qUpWuxXJuUv_XwoLnMIuaBJMHB%fT4&aS#J^?2aECnLm}LtzcPZ%6^H?)|rJx z$MVmfuuPX?n`u2-8>%}IRB)|~4TdPC!M`siarl3`tb(P;Xob3Jl<NW0PnIzT!d+n3_wRirb+I#$$Yftmn-s_KQe__#ox9tVQ=W@R9AJu;Jf4TOs zzxK>Os{JMIfch`W{a)g8+dkrtYVZAjt{u;jdrHe)RaoA@im}%N{Hw*ka@UnhO!p*W z3U1t)#)am;z2&nput<&RdZ5;ce^6_ozt++Jty)|BL9K25wPyXdYAwM|kKJ*&4EdJB zL;qW~9`FaXcJifg)zZ z$Q32{#zN%2{={wYOjBn*Ig{XCeKVQv)sh9BF{r_e!4t)u;-_dt>uQ+Xzk^)awrX750XkK1b_JZ6={q=!oxXE_hvH3 zad-|tI=6Jl(QSv`X+@$SqTP4UKx$ONo4=#6b~HPrw3rn596 zQLB+(RTis6~3( zxePtABwAe@nUbtKW;^#|m^;HdiA-u&L)YQK%|la4jQ+d~HsH3d;>hgu*YMw>ssg8L zLH$AL_il&QMXT)Pvhi?-lQFqz-VEEQ;u$UR8<&Wk+EA0ldg2+Y`cZqt*^kY{1ua*x zCe51fWsPSRB7knzKfSD21+xBvtbEL}aKnt2E%pHRejNa<0kAys(vk3?UlI_l^3=PK z_YDXR6dvvsUiBIP&>>j3Yf|Af7JdbJh5^uxUq|UZ9FMsuJ9&98OI~u!C1@+y{O?M~5EGa9F_jo3nDekB!w5J28o-K7~lh4h= zyaofuJbK^|X2NMnv(zs#&)kx-FZ+zFA92s4NaiKzLW$x?IB%>thE^Dz>t~!Otj=0e-!f~-FQ;YofUaQh(pTWs>feBAu?B3;K*k%! z+Mh#BikPS_Ep(6wsAA_E%;x-ui6uvBQjfBMGUs@j(&mHR4dAwQM zI7pILXmSV?X!3EAyi$|PAw^9-kje6ZdVFXaYUK!}Icbu!76roNaLHR#2{Pl5AzvZe z;r>z-?Tn&$EHWg2GOByn1|9f`G-$MBl(GhZ3A8r&EX~i?3>FU>Vn(VC#SEW2wJ0qc`wNt@SeCi#(ks=2}l zs1}ZDW;yPf06@kvuUI$cxB||u0zkQua5i#i{P3M{S{IT!V8`!<0-;pVC!8JnDHI|1 zQ~gxRv0kE|(q81gsh|1e0zT*H=V6s?IQ&M`lNl!~k z4;hBnP7dELQ6VW(P=jG;M;6>n==6cT*%icq zZoh}ckrU5I_forqaKIy`iajzprvsoKTbg&s5IRJ$XlFU?J}FM5YkOIw(-kR-SM9-S z>z>Gp$@MypsdWMXWQahyGOyf~O!hYPG`?b!71cL1qj9n=*{rh<#`F(Fjl} z&6XGF+lSB5D}rZ3#{%DP$v1aw%ICHUW-kF(<;-K$y;$w+$6ywtIItJTY2!E#?gSKpn1&2b!=nXGtQHTDw&e>^<{wayNStDjP%L$58E(G5^pY%7{7oqwEv8~dSF-l7nx$@3k05Hb%oNUM< zFgXgG{uA1_e~1XP?=g8nQUoM^15{4TJ8=!S=}Se>TxUFa73ek8IfksUO4w1@=WhPP zy@4sp7As;Z5f>dn)sPK+S@EJHO=@rUj(DkjVkBm2yv^O-fU;yQ^DX#r@*pNBmZ3Dg zkFot}kXU33w~?0DtNXyiSvOXNOhq&s;&)u7=#Mbe{FBAvrSeJc#@kHwe3U){JERJ_ zjhwkct04u=yFvC*p$vZiB~OTUu|6TRsj1pWv)tz2%`A`3PrHFmvr#d<@O9}UwoNU9 zZJJBi#@clM2Z7pG(fS42)XZzsRRY^oo2JQzCvDS+i2PV?XJ{pnJf;EBKf8!h=(5Ay+Ka5QEe%q$nw3K_NOwTF2Gl2C+4kM;b z*K3yBrj3$iMR6zV_nLS+$VN1bYo4=unl;a7@x$sHh@s(H<$Sj~P~-6_?YOXuZO3wf zZK@r=a_^IA#~XhSU_IK`jwdzCZAW`%#k3PbQE%%)9fBRDjKvVWE9=3wp$~DG^7Wc{ zn@2la0uNUL(HXMQDUv(HB}yP#o^TEfQZXf;SXHk=!K^O63S;qhVh?O@ol_lX=Z`c^ z0WH|uBd%Cro8sOZ+&N_^xa)5Ltlvx$;)L$2HOuART4u$b5UWQ$iRso}Of;gbUNjpQU81; zTH`@&7bqRL;^I}n{GQ&?s>0DNF>27E=k0Ucs3F#MKT!}hd>tnU9m>0mhr6?=5cmKs zA~!Hvr8`&$x_r|6DJ9^ya^(hh1+UN}yJ?LT)6d+!>`CA?nx!b6gj1z98AQ8?{Z*2R z?hq6xj{6biwga)H!YSD*Iv>Z^faN)t*|k=HiUod zRLF9Cf=ElkI&Cn3SO9I=#@v9bQsfS;r)%r0*u>Y8VBB7N2wg$3EsuIU7De6 zzbXmF#rY0kY7a(7Ou~6w61NiZ(X+lljS|3p&T{z*>bZ9mJ0b3qb}i?b_n z<_2&IukLFC{yVY8TJIRZ)b?`&*PiG|9TtJ z-%CyZjOkCLroV&q6xVfbFwv^k!Kk$EtfU%?37mY@`)xrC%7;-&iTPBvLBT}Z&w3}N zyPcsE(v4ev3`P;B6PYD$wQt9;-F-J!to7W{_>(ewGp{`*oS$Tbao--uhqId5$y%i7 z+cX6h_5hkuGe3!ET;|PP_A!P>tcF;~Noolvm;s|i#}AUic6V`y3%6c~Pi%cht?&*5 zcZm`wpB!i7ZO-vVi?3IZICpH$&37pS{=>LO%M8q4+#+poQC>t+#k^zwqggJI{dI70 ziEO_J0X=QI)UCAYAaOB5)nJT^^ko?jN)4Sb&uw1y%=(#1C#cUxPJqrkcL<%LyaR%C z&h`x}U6~cL+VSHXO%t~0@&I8SQwR%rguRdu1~x|6XWw{)Jv~0azziQ@QD%9B74L?y z!-IrP5|iua*v0!`)FR`06EXRy_-&RrCwEWs>~gKKcAG3ZL?e?>{y zE_k+5=WEIN9(5bvVm&-douX;`_}qjKZjuJO%sEr36TZ!3R!r}_@~9ease-18Q!!%i zP)J)OZt8<#m*^z@eh7IbCSWHMO-~yQyosWT=+>~pp}N1uO8MI~Tv2|y5D5@nbU&E} z4QvEtk$}+ebo=NA0Q)0IuFp6PYEmHe(NS@s%W%O&KS?!?O0E(ihBBUUztAr2%XAwQ z$v3T;eJffMWfKqZnke?zxJr39l63(`1rL*lYQOZ4eO8XEJWGBJtg1Jxl#>U&fy*~A zSvxb`$I>=QFs?Xr0aJUazfyHVJ|5RN&WPfadglYC_K?)FPc~6@FJIX_mi;VskiE8v zvhR_h#zqfhSw07n#D^YDlzmXkR*_fXBp8B~yk>wnOyL>4BCH7q1rDK`p5!P|vrU`pDJ3!dsDTKB02%A^M8XG0- z8^kDG96R7b}irv-Nabko0jQxw}t2Vq5phWGpUt@dk zZH4fGz&5I}t+a6>_?6cNP!7O2;!^gqX1SDgWtN@y93YOWG_Dg`<8x~+Ys6>Shc&jRVwca2$&I>&;u(8*wB^x)O25iC zE=(Pb2UEfqi_a)t+C^f6IUwNt=U};A+f; zS*P`h1kM3W?Y2~Rc}oIw=vggOcU_$izSapy{D6&MqH<(nkf5_uWSpJ4Z2Q3=k}`_=fg$5vhNV) zMvnpM7k6%X1Z>ju73?v1S zLe775eLCR`euT$63(e%`BW|8>SEB6`szcAz?S;bCkETVC>1O2U~SY81&Q2?tTdxHrpt)aN;N zWE``Wy|OcEUx2oxFN(}4s2`C2$kM_!xp!tQ2w}V$9SU`Zs6OB>wF10gXVx8aF2^p= z8R@bM)EqCZzsC%gvYOi_>Uo;SE@SQ4Sl+Sw7yjiNVa~sT+1mZj!0);a>5K5d7=TqP z8_=z}Gc=#%8+!BeW`xp<&c&RyF3anmRcvdBD7-z$innf*Khbb#9TE+@>y#UTT`mcZ zd<0GIi-z~f-4CF#%smV08?bt$do#{DN#1h20Pwo1dg^YMjp{DA|72Juc= z)VPj}m+sD_c1(Ixk`jQY3b_@Z3C z!c3yNd$!x2pTtL%_Ixk4?#)=_aX@@Yr$>FEO`@P$@L@7Vu2G0o)aEPA6|tebTA?DA zwWs{aY#x0d7*3!B@oru8bS4}2=bRxRa_+ApE0)Dm=FCD|6-6e)MyQP7ePG!|vXI_S zHJ~_=xhJ%Wf=AiR?y!IO>!Ow$d@7)M*DHwh?+1*Y7~vOvMUu%OM>%wMLwj>>1J(Q; z8?#*wjegPPP;-w%t7*fcaDGHi5Q^}vze&Y4VmsT1OyV;EP>57O+cDM1APe%SyVUC- zl@!eJ6p~t*A7Eg-ToGG_m%A=C_h*u?W#=JR_EY(fhdfLWVCv1FBpDwc5uH^ZyD0NGEkp?pVdpJipjyoC~OJmc~0fPG1@;$*x2tbg&qAH z7RaO*v8M@>UQZV>2tQ(|EU6)Zt1<*=3@OrvFNWGW&y&jmo9ylwc3Mkq3Fl|j5!hL# z`^T{&ms=gpUKt&-BDM8$Q0FH0i@2O8!a1Wh7ynF&%NW`GWs$8wm2rUcd#E`9ss$#8 zFiQ1ar1}RfvmuG{q_^tqJu!=UMA^B*mn1T;$-2HOjK>(iPhh5+tK1A-0mGf z+|C!{zLlJGJ$;KFtM9}3c;xaBEZTtzqy%^I=|He?DaPa7os?!L?-$vT+g8e=CzGH$ zy&Nu<*-r9kM(TYJ+a}fVH0tnn143t!FLd}`YDuM1>&+RausG7hGD`IMv=oiBT0z-1 zfXlsK9bn0{)mri^I3>H~jkd_v+Rj(2I5fMjwO!-2-qJ*^MjGf+=i*dLV^UBEI|iK$ zFu$~LQXP}|ZRg8mUhYZ4xES7uZ}!uT=(DbGarVGBC^+QinB48SPzj$y1`(JJ;AN7* z3ngxD&AyFSbuMSuz$I9U?>_W)U_x+9E?#+Ob=x&zdRqdmgtt z>fbO>op%d0%|P|tE!21eHFUR7=NPE5yM^jzpz?PMwJS~ASh-h|chf^c8w}LbyM=ni zK$YzlYKnoH+9*^s_Xq8e3Fm47#9ebg=;-sD6tL^m$+~ue!FwsLQ}Wp&qia6AKZe+3 z5AVyn$Gcp>u>-hKdX3H90b`ZhQjXWv9ic`lGn1M>VQ;Ant_5tC45ED|BL(}oJsNo% zh2CR{D1UcYzUbU;w13gkj{J~g5xB;ZyU=irB^|AlA<*uldIk4WVz?)4R@|h@EVXV5 zW_&SyDn^fwW)en?W;476?PkW5@bx%k#|E?{xpv>=KzPM2Uc6WE9miNfznti!G%_20 zv98wHBTVDNGn?Bf?)H4PUkNdF{nga<7_y>r!)EQfG-W}kh(Ilk2>^~Y+ne0i5o1*D z>hx&)i$~j0Lfe}_mxU(BIM66Cp5$;J+!04%;?vSPo$W$cTb#Kuw^@^Zvd!9P5)Bra z1c+$wWrm9};mjHar};$)qyanR_$QS90L6>yDMWHNdI5|nMjTw|X45i8qFAGEbsXb0 zuj3Dv^*3@|1*~^52q`=76Ho?5C0bK%jC4YOUovN!GQuxIRB0^Wby6be9Y7GW~d_^Ti#g%K~td zk2-i0X^Z1T(Bn_n-j{IZKjnXQ%%kuyQmDgh;bm|_Z@viMlb7uPfx#PH=yy(l%T)$b zRKknYlZ}I%$sCc%86WN&Fo&N+-_w4iP$T7rgQLV>;3syrV5@pbfI~q?S%7BBe)bK7 zui=d0-E4A|2b8UqcHbK53kv7?DdXFE@$mJ~1s4By1WJmPDUPhl&s&8XZRM@ty7mAX zkI6EDmSD%0*cd*MAXeunZaz1cTp#kAhdII||oK7y9Knhlp!|4RY_@;n1>@tY=HTpv{z{|Ty&_o&*B zRHda-r8?CaItAgT@-Ck7R%?+aayh4@aR85GR?ACFpo|Hp8f!F?$Cq9RqddI1D~C>e z#)oG5l6QH@272gF$u6iGL2T_ex!6idC~abpCn_Ngk%$PW;_qT3H)Ms&jY>S<*-haP zOicAQrP_rlqga5@zMytdtyZyIUQmdV;mgD;_Xt)ND1@_{{15j7=6QbRYrq-TM5QwI@ zB5HGoNimXn754%Ogb~QQQ$!#<7u<^~)+uhkMIde9Y&8~TGo#Q1SsCQ(T}B}%pOZ2Q z!Gz^iz>=oiN^O=Uw^OLHo*;IFTt6CS4PIkL?KV64sYrq{uir-I)m>o<(N9SXf1_#t5To zU5=@Q69bo$#=^k(Zk1;mBg$^zk2hk~6J6FXROf_K21WAw2s(0&2ftJ124(?qdkZ1F zTo$-FUx;T6`O)(Daoj|KWuK9#rRFGT!oueuOlI9y&p%TPsD{8V&tmi7VSkCL z^PPpSQk$`T9TssUuDN#06rGM))L@SN_W6*W57m z8j5G({`(Wq#{u>8Abgr;^^`2%EH7tR-8sha>P4b4(DlXH{#8yRz8wRDiC_)x|3#va z*AD1|vxyCKucjtm#z5T}&jfRQvEPZ&Nl#8+k{ZcJ!@!J$(+#-HmAPk8S&=N0pG7Ad z6MGx=g2&kl@`@YM3#D6|1#T1{_A^JFx6tSko#TxHXL4ofLe9UP4Ivr~xrmuhFHY92ah0s#txQ&+$K>bZ zckN`7ZQ52r5s1)E{hpFFLQ5kjW8rPbsnAXbBkP8^l4&R9wcacc;|&>Rq3Z(F;!i9g z8K;sA?MxR8)tmqGuQ>Y7leF`m zbI}goYY;OBAS2~wo$DZm40H{;$_#6#?N71kjxakw9CbSqxq_XPz8ojCWQPei+j0Gx zM}?;eF#9H6d3X0z%8+?J#}Lz9E@3^U*UdeZWT-y$h~Rf}Jl2E32cyXOiVebI~@l_cZh4f#o04Pw#vhCWz>=^b|p5& zau0146?QDeztTlBT2MCN{IuB$NZb~nFK(tj@854h4c8th(w1ob# zY5(AOxs1@t4F%1*8qO}zWlaKN2d?+E31n0z@r1X{)cEMHxm=jqift^g_f+ zL$#0MAJ>yLs&HP0-}^H<@#HCu^w_<<;qOTp0OEo7Y+n4_;tYZ57#yvk)b2LfzES7= zB#a`H1!8SBu*mr+;+)JHCNE=$Yuq}ur)LOVYG-a(=0RgZwQq4X+yu5R!1V{t zJ4jd_S)qy654fK}P7^j;fxSg5qKv>l{W0s{K)FDE;en;*A>8fvc7ER5Hn0|6z=~Lh zD$^qf{sGgBs^Z8yAZNUiv!6@E4(!TM(vDJkA6J0%SU8GbVEAVEsOBj*Xv)0k-JG#4 zk0fk6p4)-?0QezyXGbHBQ-b9Uf@VeU=DZD6IaU~444#)Iv3dq>sP7G{^ZA&ydFG%+ zEW9r(j;xJE)-G`lEsngKh~Tt1m^Vm+H^7UvMZ~S0BUuq{x5>|YCzNwCTDPT_FdNrk zq7pzo^*u>rSYuvHW|}%L&y%ZG6y&XTehP7atF{YUYhu|eg>*3^xW|>Xq!*qXXi;Z* z`ZKjfLO{42RKx6y!eC*#_BS^}u$CX)n<(w9`@4I~*(r$#d$7EOT1~7f)epC`VF~9K zj86rTYK~*l;Fe* zOu&x-vU-1vwE}}(#vF(_;hYi1A%jQ-(n@UFv640m6FTf8%WWTv%;H~z zVJB>g=A;)L3^{9Vdf`5lxxB`SHR%0;oWJ84ztvifoQ_wOWKAGEdjk_Ck)Kg7 zvFj+K);N|?o%sAxl#QLa-ZJV`o48sag;Aeh=`sq_b4mHAt6O%q2X+z8Q-CPrSEtGn$AP}l!hmuajIgX$;&B%fF@rt#S>7)aU!6!!&N|+ zoa_o{27ZYqr@`ldmGoAk(hCtr4b@^u_PLfA0dQ*!DbXq3cv!I{$8!Lx^3Mvc&B48_0qg?L{0MhlhV*HN7W2 z3~D+r+7-3>_r6Tw0Ruj7RU@gZoYt7%U>uVrt>7tU!akAIyjnJAI<&&`+cVWjE`#Gd_T3yH&f>>nF?qH0xO&?N9SIM zf0Gzeu#kzN-2HUm!7D#&*yM!s5<-%2Pmzf`85q(?fxOW`7WpA_0GW^p6Dr1?N#pR% zUs(y6q4H-fb|YZ?D6( zl$tV9lS8-HPfeBa-TsBphOf+Er2>Ryd|GW4>mAH@aAWcTAR8tlBjM##N{;KmOE@A_ zTyzcj0q-IGwNm~pE}4u*KnYp}2$sfu0v5Q3SmntOcoiqX^4Xss8!CrMKBMJ%!R29=kf3gl>Imt9dGwIwK+I@C7 z=Z3ngt$DMmck%I{M|<+u==-SveE?9`!KSN2^WHCXZW*FVkD=5$JkP)#UY_be9kb)$)x#BL^l6QdAiR-J*xd|h3)jl zXs&mf@8|Zh9m^w|Sb_^Uq1sF>v4irv;X}%iJ<~Bg^NlRG6oL{GjHH4?xP@5NhN4F{ zscPQ^oFrAy?7x<1IN6^ep>xBJ@}6X>g6u~SceUUoK)zrcHtYlTml@|P^VtVjV3pQ_ z)N7zy`pVqj#NX1G=a4mS&Byz(9HCh1*~T)0_-h_$YyR;QvCBF|`R*v8R?1w1GPdSz zP))75fm&i@Bn>}G8jdq*=YwngAa?BsPp}^pL~!VeL!;ID;S5mrv#(}F2o($8aFDts zOEEA*;C9!Njr!Of^}6zhZSpzCP&R+G6e!#8ODZ5XpB`~i)scD)4EWDoOw8@93&uwu zixy&>g#q{hTT=umT1Fgx_+Uq|JMHZn8TP{qdF@zER>SJ>To;mL;mS9fy6Y6(soH>8 zfdC~#2>fXRnIn{m5ai^~LRby|G`i7_INh$JvIa_d+}?^9;6N-%G={2=qB=9WO@o`8 z#sHCd2D6UO)cE?-2GcX)!w|~ki6#OI&n|dAdM5!KC!kv=>}C;q{w&4nC>7@8m69n!;U zc;p!AOpX_3h}IWJcEWz_^!A)B25iXLgh2@7TQ~LPru3i!E?K}VScwn0JBeIg<-7vd zTB3g*0@p?(Ku|-5kU4eTiGb<{OUU?4HhvCqX>9}a*d=|C=C;G1`m8kCznZLQJHc+k zhaTbd_-G-F$H(^)Kr!MGMT7Cz&m=C86o^|G%4vmPgu^q9vUjhx5BoyA=w_sm%riMB ziI>VJeXDqzJ7jVt99?hc?Yt8rW3-pE>Mj=6G&eHSkS9 z$^3<6P6(?g>V;xFq|1T37MNSt*-JiUK#oDy+9YPh(dP|4|L#V5HUwS!;l6#aIoznA%{$sCb_Fkx~|RfGYD-Xop^!U$O5iX_Wo4h2K>6^k;3 zN0?O~Mm8fHS&%m`l-mcKsfb19z?NJsRblp^uFdc}u>y>e-loX(!roBC+9UA~NPmTD z@(LaH_>fnCWggb%E07M&NH}dGYyZ5M_W)RiF<&pnDC_fgaES3RLX@ zU1flNqQJDe_6qcd2UL#!!fDuQ4`|5#Lesi8EKP`X3eYSMC`*A>dqCg+szCR8KyPLU zrVG64;I9g%t304X6w|XFro9c&01s%oVruVUDm2w~^nj)+P`!s~sbK+Qa)t#DC{T?D zbh5#OMGP0{CIx!e1A5Q^J?8-pQJ_~mpm7GM&;vSJfu?&v@8V)_*psUbJ?RQi>;W7h zSaMG{0K4`TCf@4-e60Xo48ZRSaE}KtR;mb2|AW?I0(3BCQm=X6qHd6(} z&^Ma{=5T$zAg?Txi)XCD&#+o3`dtP*7CvDgp>*s@S8>#m94(z7ydQIE8{k~1-*%z8 z996I$WyUfeH$h~8&xG^ItN1N3B={Iu5<_gIoW^1iR(u81&YcK5Cn6>I4AqSQ7H%>q zH<*Utp)+Ec1m6zqK0Yb?7?WLf2pfx+5TSEwms>3lztjHEP#WKNFNl=TtpHA}H0=e1 z{URmmnm_0!xBedc!i@>L?I1B*p2^G!yh$c#HhmX3H>39QWENDraX#pEPNvNa&Y0Y@ zr!un(oE*M)q#V7aeF~gqO@*9z#h-<|1#2n38K4~e$Mc?h)@)J%d;egJ+g zso#?~lfb~mLj9KFFe40tyP*FcV8w`2U0+yrS0}9`N=JXUm^t|N1!0Xvxy|{44-p1L zXj^IS18u2+>7VEMRT&LW6@?38 zSPd@?>4)coGuTnOpDBE;SNK!heTjx*3Y%SHI#A~CyWjwr77Q7!JJWos9q`~#DB*Mm zkkR5Oy0(*pAySYgYjWpk-q(It1v5od^n;zFf6KsL_SZ~PhixYkpe^Xbfko*Ks32(9 zx9TfBvbK&2U z%sZD0XTYu2vjtN98my`ff~q+maA+`d?29{*0_jaguXB}#dSd(qzjaV}psQErFt<$j zqgJ#e!tGO~SU4dm31=}ro%3$^J$V;^Xo6qKbSt7UzYAD*0Wuyf9pYA0V-mf3xBSPPDl{hqk!9Ru?NG z)&*SofqMxw6|+#4ASqZ#R3R*4Vsv~~zZ!D)cGCAFTMFu%=lshBDWcs#9kWni{!kDL z>$PDmuDPL?OyVB?tIg-?0}jIpy@9lDftdK99bC7cesR0v(K z8Rd(I@AnFJk%BnOO)69$@1m89vNv4s!TrL*E;_t_w{M_PGn7PEwmU9GZg8d*LyKiU zvYmBU2DJq)U)(|%K~9|mq;)5y!hh1CargrWZx6M&8kBIZA~ouZyovtn%x04VW}>O- zCe)(KFNe@rRUk6vTq2u((6`^Embf#{N$5kbif-*ztYl2ik`LouM2U zrd*i2Y$rNo>tHJ)SL2hi+bgY?As;8^>?Fr%@&tr9SlD_wHyheVeQl;h_E8`k)v z^YQR7W3>iBh_eh!ruFMDBqdbX*H9 zT7v`=gjx@}(!@|MpC}=!MW{;}{Rlkp+Dd#WL|Qr@ zB*Ws4;OE23^%v%xfPW@UET|uzvk(56bZbHVpq$|a^@DRxs2k(rb8W`i#D{SgoYac2 z8A~cUh8bu3GB`VDi!zvj10-$iIIAjb|K(MOkKB(UCm(+YyC*1lC zw`N9*Hj4`IU#dXIcCHGnDp)9q=|ypnn-G3}q^y;*|M60C*f@z!k!gVUN3N6mygvWfo%}Za z2Kj=m`!>0bD-f{j1-aF-pL)ZB3J-6JT?@&nncoaWwg9R}&$S6yQc(hu{KYl4)HA82 zZVQ$It5IZBQlju_P%zOltannn%ehWT=`IV?lG0sX)*^=FAKYA~4wE6oJ`4N*n0xm) ztEc^cd{Ucn$&AZpj$0w*TJCoy+H4fLM7f;`xf5o{VKSM7EzCv(lEQrM0)O0QiMxt)b92Txqv8Dd#f;s4Eh*_;0HJ-vhvBm-TQ&-Cc#z1GB zfUR{2&@2xG=)E7w@11`EpDsX$dM878OQ?6U#PrT5@rD(8=VB?zdEFo)dZ#?P-uc5D zuJ=tCL3pj`R`W-6hHwAn;J2JFaIpzK+DyO8#Q*8nAF1$R0w~Zs?-Y2jcTVst@2Wub zKk1!4-6E1#q7d6VfAQ=5a2^>_k3HynvZKFSH;{61zoq(HyzX83?VRm3eH3}%sMGaP zVS!XySlY)`DIJWVVrH7gqe zFaB*M!<-zoLaHg1a$*o;|6(Lf;Y6=w+{0j^WukC`Mt8@N(M*zyds*cS^r5SlB?gBG zUlAbuHxLHDvM&MNr?%`2`$r6X1#t4dqA`?(F4;Ef=}&4Jf`=m5d;KXDVR;bLAoAmmGAZd&GH!o_wVL*IN@~|diDfnuKhEbaeG<821~y0v zrO82ZbD1Vfe924&Nyz+;?jbo7KPeBD;4$aTSr_kq{=l6SqmWE|Q@@Sw7(TU)6|(Io zZLE+hy`pV=iZx^rlTKiJ!s*qM9s8qP;n_av7rB98vUs2Ur!jR2IL+$AefE2SeYQ*WmEm{msiw!x zJVrbze(I}%iNwZdLXWmb;%2JT?DS?&pM?>OB7QuBZVv02?krEz{M=w&taO#g?GrIw!CotWSD}BlgAtvrYurd0ojD{zcER# zqLL+q2hZj846Z07InRfhuxNl423hp@_5<1??k$%E6s!W25-C@{2h{z?Rsb%? zB^z-q8`Eoa)blKQNEZD7fJX2ZH<9M=1>PD9p`+5v~D<4cJ)+rU9K zQ#+41XzCXk2kPa~_OtG-{^5#SPZM>Dm0Sl~?jJC?@pNC^8NGrt6QAeTKU?7JVD-vN zrd<3}diSjgY%m>cykBi6g=9?!`#|>HG$L3Cm_N~}Fz0pol{!l_P^ceP%kOIbZjs-v zSA3w4A`hT%=wp%TGcW0*RnDGb6X&`Q0P3yA#DP=0OQ}HLMlUdf&(w>eWgP83@m?1$ z5~upM-7Ii#%s_2Ut%LVzFnoB=!Pwri4F0(Z5~XUnprES>zQw;-RKVh=cVzKrc`24} z@nYpPZ1JCGJ7y=IQo!Qh&vJ0%5n@JX@wfc?mx#x7VDX6xv=)EBuePs3ti@ORzVIgt zfxXWD+;$qgOSj6mcvt-`7XRrN={@RaInUEaYw`E>(OUdp`e-eFC`L8tYMAkdrvddg zxJNC1EiIm|WspeM(=6Jdit#p!8mOqGb`uP&X<1VTv!9@&rfT051M*+4uFe8QUB6jU zGe-*T>MFfpXlU3B^xCg@YnE@r{u1hKuWd$6?3?WG+i1}s5krJ@>oC(?*6lH;~x53 zY`mHLc6REfk3EgqerOjD5b;6q3w;zd;c>A(T9YR+kU+KNrtVBYy)En2WKv$V!Ia|e7ZV}DA0xZ zb{}4^@L^O^A&1BcJm?Uw`jv+$&^pA?zS)mZh;@iveTI8k2-J4rQnsoNvDHt$Lu{*CVTHOqjwv5IWhF+fCWZ4j=NXpr&m zhY%^41v+RB7drVCM9Qtsrbf!G@+L;gt=fuoFdJrcd==0P+qWR7M%X?zLPSGd&YR6R zuEGw=ueEKsmI_-ODHLJ9Um4PX6ZXSMxfS-+NVygEsYtmMb~71ooV$$!nqm81B;^rd zM}~j}+2WUj6j?4kjvsr3q0cn{Gq|1xZsa8Qf(II{@n$w8BC^Ez|yuT8P=qxeolIwj^ zRD^LTCnY%UAaj6vd30Mer@Y`I_IJqw5q-e(4*t2U#?*>xT}0p6um7sThtcGPBKkLW zHOI}2zw?RTqCgwbYo@toFH?w(=x6v1o?;liEBNYm-^0v#O64f1<{dix>8W*)yM^z9A0muA3x`w{+?{0&C8 z6R!8rJIt#~CF6d?q}Z~1w}{~mT0AQeuwHCx5{gXsDxM$H#f&44^^?oAE{bG=)1kgt zQv&H~e=#EISKds4P^?_q2^Gn7=vZ3}?vGsJYxTe1idIFFU&wE#$;J9;wXr}S)f4eO zG#L!FQ$GWcrZG38b9j$pL4XUK+5zO&Ae|TUML8?v!GWy&S~6s@frBHFPFZ6G&nipo znCX7L?=G7hBg*P2{;6AxDf?;r_0;!80yhQe>(~8qEsD+wJgDg3eBXXjfl)<&VvC{Z z_b}szp|W(D)HlAOtK_#+^cDJO75!&@6p2uAkUka}r|hSX)(kHovZILxHnB56Vuna2 zu_Y!OE#2`?BtZZ8btw8PkxwIq)ujApxX^JvEmCfIo)js!%#Vwd+kSXiq}&F#MF`x1 zoI3$DGv1tu*c=gOmoO2{W;P8MI?jJt5t7{v{GUb2t)7n;PE3PjfOA< zWg{IfbZlG`DK9rxJ}Xjg6?=4~+$whWNV#SEE)HqNJ=Oz`VS5`+Ue=>Xq2Ue3*n09b zFE(hKgJYXHZ7nbL-opdA&2^>REDgPk+lZ$8qt!hBpGRWw_uyrv8OQz#QSqkk_i)zG z5$#bSIy_A=g{#oG2?ZN+xCsUS1_|?!E;g*VS(mEC*B)@c15r}7Q}A!DwgUh1fAAu{ z$~ueNx$e~Xa{80`LX7$9zz8ZOC%6b@h~V`+^lFiCOnGaRdINxkohi_+nZtiMK`U;x z!}-5VVM#4tY0uS;0!DAyQLQZ%V)ZOBYB-2jkYsAFkP@8Qm9SbbkD1!3EX{PUdD4vy zJM@!q*Cc?9!sAs>IQZsA3%pI?iWWb^ufOsrf%jEDl%0%V>p0Ov>kkrmM$zIu{QA?h z{wRejTKtEnUHcOhK3?I97Qf!FUlD*KuuOYflq=|XJikQ@BGvFXSRV(G7#@$&$G+zA zKz&r^@h*WripW6zlRi#0dfh-Dt(tGp!K~DfT7d-3JHA#&`eGE~9g~U8+i`~z^>K`k ze`IH*WL)=keonzow);k&O#Chs`K?7_FGsbRa?gjHFNmKU+P{w6dp|9f3i-6N@D}#u2I?-UJ`^Hn8QJ*=YfKwGe?%)rW3tY6BQE$q` zKl9-?DSQyMovBxLGJ>s6_oTu{2|S}{@hAQIM=E^0!WAw4s_#@i0&wW}&kNa3t)Szv zqvhK3Xr@U*kt#Q};1Iy>2z?MQ5@w zS34er%3(w}RM}E`OhtENY}`sTHH!n%YvHbBl)gK=v5_M z)n8{`0mJv}$ngK-YZ`vE=_SKM#PIRQoMEROR>1Hjvgs~a#ma{vzWjC?C(_$`))48NW}N-IEaUluZai#}Sz zf1r=n@Nej&HT+?S^-yD9WB6wP^)?)p2t|lhpz^=aN=_c82gxxjQuh5aNpPm%48>E?A~$&L5!I@q=2z^c*Hrw zOm&7*HHIiE6JPDa?^U?yw~(=4Q}`&YuW0et{Q5%`K3?I97C+OE0tW}+u;2A>gp9rG z=OJTnrH|4IkT=xFQqsob>dyq(8vAQ~w8s8KAFZ)Z(xIcTshb7V+wLYc_Aw~L0T|f2 zsA6mH2ehKrteL~aqbS^A(fM&PvLq>F;&JSzYhZs%~&sg>q3El`&HFNkc z^Na?xugeB+n!;e7aY{#dM$=m%XV^`q5!M-|f;RGutsi#Ao`w6Wz^kYvWAlvoLk|9Q zA!qs4hu@}fQCg;6^lk!#hWr;5K8Q-q*gWG!zy1J)k5agz#V_|G!yXDBuW&_+Z{qX6 zQ2-8I5BO)uSynfPoaJkMlvaTJi9YrvZ9Fd2N9!zEeYDQlkAScYaXuh>yzfs|$ra~S3bA^vmn7%vTub&7hYosf5VCZY=E(O#({024BStv}K03En7 zu4LRS7^P(@{&CYkmvB4)0>Kq}krX`M5-GR5UlA#{jGP`Rx6&LDDYs(n94Vj5UX6A) zj+9%uuhl`V)X4qi$Iyzdsjo)J%a?0D5DLllY^2=Eb$6uPHZ&$uZsi&oDYtT+7%8{> z&(NT5)wK)I4F87}cZ$1jkW%++EQf~R58!5N^KNcys{NElaxBUO8}z7`Ifa@_>mO+5hrdaw=+iG9tfh^LD}R9d6VhYJ zdaC)d$|M5uwlMw_RqTcfyCmtw%gQVV_T|?BOU^q@$D8A`F{3SNIS;pZz%1d86yc;_8cvCYFFV&%Q7*Z#Uj4UxT;Fn($Vp&6MYZ(IS<hd^AzrvLfbus zj(w43-HC4KydT%p0A8+eMT2#TShb8pgL<5z$h5oMQ?+xU)TjpG~m}n{wpeyvTi0tF>V|}#BIT7OrkcS!Q zJV3o|D|CG1@uqa`YN$~%*ST;Zyk05$+1`9OUeH2kOf6ucD>|}Jk5@w$x?X~P#6p+c z;}o*~UIi?4{@o6~N-bC(vd|HJ{SO7+frZxZOXAR~zG_tBSDUQW3Rvh?3xPu4n(JGr z`aR!575ZB&bdmga78UEr zPF>rVF0a4E0Z&n&=vuzaC6m*`wAAW(==BbN2W_l~V#-B@cK1g;Lc7I=|M8W+W|90B zrGGEKoog@CM{yFE?LYcxZ7^RSt(FeNup-?qQ!g>8=9O+HxSXFA*H!uJCD!SD{saQj zy4aH$bP!ZtB=(iJ3-$^C(?j|O>`^5F-P%JJ7`i`G=Ty+0cMHP&qJoUVrvHW59`cX)fS1&p*dU>obZZZdTo+OAxOLV>9-2A_ojN9hHZ>IayE1W-_(_6x6mb%(~o*x=7c$<}67Q^r zx2zt4({cApFSCr{ePnQ@FC#6)`ChyE!=VUdZ^f9Es-297nmPQJD<>mC-W{QnLVJXc z%CFUdNF6blD%|~&NdI@>kl{9owe|Ao4qSXX-U(N|i*!aYpgU9f;T;Zs^{xUJ$8rZQ zru+3zQTQ9Jgfc6aRoM*fvV^(*X$~*bA4m|3%|~%76RdVVedg=8h$Tc zD4hfS2Irskx5UhO^4rDCsro4L0P`Vz6!G!+H+^h2u2Z9rR+lR!EW18;0ifQim+H7> z&QvlnOv`GjhR~Ovf;BXRrX}ub@!5W{J6ZSalSmzrkI>z1FM0BrkSl-xZ}B+m{mbx} z_d3$6aEz9j_{U}b+W%eza$q`~5Jf#4DHM%m!i7%W%1F7@;W?3VtIR~C+zRzfcof?X zXeQy`7b#eT?V>OdWxMsQuq?v%d*MRI_S{IhW&5#6xn=wINV#SEN5&C9Yq=0;hV2{Q z&tvYzeu65-6LG+9Cf`&dAW(H-@X}=-6h3~BjpSd>+T{ix8}R^@;;L z6t0DSiYm8-3!Nq_BIQ<-XGh9y_vs%g&zf$vN2I*Lly4p>uQuhY-w2C5%#<&Sl$V?G zHzVa%75nKBWDWgj1Z|kna3)-?-DflkTX>kxDbNM}7JPWD8`$h1JO!+n_H(hCO&IPvNz&iFdPVhrthtzq0PZ$B`E83;<^fviZ z@5vvz6Rf|!(>EZMX+mLiX<#xoJh3!TN)gif2Oj^y%~DzxF6}9$Id2`zO;WYR1lG(U z4n8CJ8o5Z7?sQ^)Ure4gM>3(U(4U>=Tsj0M3)kAlg_ysXDaP0ybKheP7m&k7ytIpC#>lXv`QP>6Y;aahp75Bz(nQpiI zJ*=J;a$O5g;i(g1HD$3kd+4uvj-j$|K-cdA^1{hWd1e zWR4@O`C?`nS;)k?$!w07QtdlWPemM!c2OxYuN=7Eo`}SlgQlnRRf%L;oDBP);&SO) zI$%HdS=;nvF}gIBDr-T`#}8?YY{*r$eNLedhIL3vVFs$t*WW)VzQF^CLlu zts}$)nRp!uWx7um$};DqvH-Leebk3MD>sp8P`YHAZ_&x~eTz=SZ!rw6bAejmxuN|7 zysKZ-(gpuSV%%_43v~5_c*lTnp>vb{BIVX!wuzKm$LSU>*TL!A*QqNR&$=O=lOKMZ zwwyfUw!Nu{m*(TN%MnH_m}(~YP9HqqfbA>m@XotHJ5QQ1euH$)TTp{1iP5!JzaaNhnQMfxaR-@k@5^NWefQ^IBNe5%6LgVFObRwQiBl)s zTTwZNEV$J4Q(Uwl)2ze<@yf+sGrqhbCye9@lLlExV_PpeOdJ-HK0L!=?j|(58m=-9 z6XFTxZ5A`H_wFwuX5#P87N`HnUn`goO$rcgZ}GJ6+W&l2VdigeP=w>}lTRg6 zztpXhta%0Z%1EubUDyD)TVFa!Z6oRc^dkSD^ctr2HFH>6RI$FPBlnM<{AcuuOuZmx zGFicg6D;)F$~a=xOG&zx{FU9evTZO!4InYc0c6; zH^{CpVkR0ej<7yP;jCHk>9Um!*?7bqha#lXx-KUYR)b!HQHi&lUv#TD7uzG%5FX6n z4it21Ssn##Jnk*=?z7~syx;>g-!>;U-ibQ+h=1Tj`CG-*fv~JL#OL%6N zpS;5+KW&9CG{`)?A68nRi<+t_MHRdg(}nfA3_Dw`?UGMHrilC92AN0^d)P z2}w$F|5OGakAk6UImL-8+usEn38B-qM8#3d%4Aw6C{WOq5Jgf0C?pgAc$f=1kDnle zC4-L4p8TM5n_RKUyuqv|h)$+yvLJ$ueo54tr3Eg-@0PE{g*CU!)RPUP+&E@`0d77$ z-EgDJ2$}f6v5uiFl%Z+_{9z;zdT;1xz4jA4$%T1wUye^UHzCr=0Tv|(eoY|sji4MW zG#L=yr_L5RM5f95yP7ghl;3WtBc+eR6`+5SM>7GVpNW1>!=(n0v`kp%ooX4iqOd~! zxJY{KRlu}7VHFwV!v0k%HeI$7pK%B@h3 zvV5CJb8n7{%-zMXczqqn#<4SSJa06ICL?>kZ%?Fiq~^%bmYP0FXvmj5qwZ|Jkp&gE zoW_OJitXT>7ZKlnsZ}(cJr&CNfq^4}s2t%H>Ni{>^B!#CqH( zQR7R#U3DVAmVl%YgHGt3mPr_D1MkL+U6Iu`lKE}SuRQ~WMQDn^WJ>R1^Bex*6bcq; zxSKT0FM+zL;cyhe`k@o!bwV4jGq8y$kL?)V0z8K9m(F>IyaF@Tw0EiOmBc_#wKqcT z_|lSoTlAHc{6tN-wLmry%^+^1q4o25{E(T_7y}xCIvgP{!U#Eq*G1w|ZH(Xp#|I6f zBPGDNfqW1re3Ct+6EESzfvLeSB{Nm9!$3p@R83bl9ET~%%ifzmGb+*}dF8mcF zNp-C2aXEeq2>l1^y}0TA*}O}`f4MB!qYd_Q6dH${OI?M=x|nw#hcTjtyp1xJK}KBb zrKwd{RMi`}4zWdp8mTLOgwdm@&(m{j@B!B@OPuEV<0jLn_VdO^)#k)}4MMS4e}YGt ztG^@_Yk8O+DtQyuo7g75dteLp5!HmvO$H=SYrRCY>3^c<7m`A}5WTC;e+b-+{1i5P z1PnF?f(;PD2mP3_o&rpr{>!M2`%0~fo4TYXdy8meZf=^6~Ih%PrNdM|LCbY>yYVn&N~9JNHb)0Y|t0S zUKb%i5?~Usg}H&y=!X?JUZ5WT-9Hdgcc5A@$uYSt8pwG|05G}j*9c$eN5SkZ<}F|Z zl$%XoE0^g)@b0?4aB7%FKMi>Mba5ZVMF_RElwz-bkV_u_&Ftp`^|vK#`W#kB!QTym zIqW?6kPTtO!Iljj_}gZ2?j??XGPKRDQFMc?T2BB9K9yXGKW%mVm)}j+kh5W%_4v<1Vv=A2<(2R$Kd{mX zl2PMlXdc`ObC;|uH6qEp)^)gwrcYMtfBg6z}&cah>}O z5s-fYQ15<*u)JPX3Lj~wl1gTj7sE4pio$BLgUHra=vd|%csRdipZNlL&N~zXNbnm{ zoxHf3PBgOt4Q}T1j=O_&b22l!6d{QoP%VEx?9@em}$uaIWZ+j{;m$mW2K-tiB*DGYFJ59-{oF{ ztQ_cjn!MM6HyEO9Jf;5gc>&)%Dy+_$c?6fH;O96U43ra?qH&@ERLz+4-e+h$$M3ix zo%3!7tzdpFL>E32PP#=^SAcpDQ<`~%O=?t_#SV(LLRokHG{7SX(AX6V)QL6Son8(n zN!1^Qf1|FPsr@rb$>!xuA8Y0im8+m>nV5;o?8`%jnR-FAyK^wjLhmcRqR&#e0i#H| zmaWuguipt2q;+>3@w|cbaGd}jioNLD)JYmZnsrR9$4U$u!}Q73+ug5s8|nd=ML$Qi zfz^iGJh@lWG>0Wh^riu>tup|G^Xb4m=>JWH<{%+v!a{2A@{Jr@Y)N{$WG`MXU zi+`MTo#txT*VRI02r~{rn_T`>*r?KWQ>0Lsm>n*3+&qGEL%$Kx%6o+E8SUm79?Kd< zh+Y?oMyC(MpH%(X_&4A1Hwg;9?Zi=_W)4x+@cbo)KZK_lGxdTf+7_#??80@8S}BF< zYB4UQYuN;>UIxolgEwtndU}kWex4X0Bb*pRPvA||lEA`_nRwy^XR*f)hLsHsSwVBh z4Bvyp(UzjF+nxm9#;(=+TXb8&-$CP5jB35u8O8DamIR0;wEhTmTZf>;`+!KWD`tte zRisdwi?KPi{#Kyl#W+qI?jzPQbFWn8WKO+O0}EZ)pB_9pRa#Ruxu{|n{M)6X4F9fE ziCu}<%qur7YQ?*bv0404iXXH2gWpMe2|qBhG(v1lz;fOVzraN4`0;<|E}U554jFrR z%>+^niK`zotfd%iKbH43 zXu!;plP{;_g{;sw+63tpAQ=@dMl|zYA+sUfAtNZYnGMO__p=Ci@qJFfXW1z79-c+) zTDf^L9ou7)?m_l~p}l{sk`Fl1%3P7qc|+e+6~69R*#v7Wi1rVDg%N2HCTLf|$(GGr zjU7R_>5Djl;67!v1J{xPBuB;MNYr_-oXHeTTo2!8A-_tfy1CGlWMbR;Xs58y(AfYT zXC$X_gS453 zj0D&_naZnqt#4?Df=P96nQ|2PkRv6+x3^?2Ar5wCop6WJvSjUt6>&DR0m@vPb2O$l znX?TM5n|q36j$>8(1)5cu>lX#j&#)Zp?v6Z9w&hwk22z;q}HMUZ|xAjyi5@>=ofjs zdLoEu(%PWGWf=-nqfC711J0vXQit%U;O0YbWzx&fRST1=^T|D0fZY3Lobkyyr3dM8 zQO11oFvsX3Uqr+VDbqbBf=UlPXSFzyeDv@;_RvrW40SredCMPFMu4a{PamSlQ zb-HQbui8dCoqv-@gXz1>#^5-JG#yUKC&A4TvEVN38knU`2FLii8@^N0j8?G8n^+)! zF;kap)3sZx?Ka`tA?Ts_E@XP}f@J2fP4IWBY`?rB37+?sgeJ^LI4kJ_+?uN9qKXah zxFC6GqUq|{P-%`$S8yQ649p3kbR`Jt#Bl%{GB^zk@-O`0+Zw=5S^be1doOmjF zM*SJ=Q_|PxFC-Jpt;d_N)^>|6$r_xxTTD%;>h2cNB+P@Gw@5LUkf~wop&)?@IWJ4| z^Xv6pn%p|V5eMRH7>VcL?f8%DHPZG(rVTZTM*U_Cs{TN~Jvh;bE4jI_2<=Wp6^q^l zY%pVxwl`Kjq{R~-&NI)D){}j6N`;R-(AKg22)I)OIuFpi9O1`@T$K$`#ru(C8+i&D zh`Jwbb&uhvF52C5i7CeY!TrD~v+$Z8R4yI;H0iiH*vka3WZViujga5o>`eCch0bJm z+@S`Nsi=%i-+!kinb^C6CWU4HwS{edVeMn4(3!hStwnp!NBin66l!vAwO^y|BMSc* z3a7VZV%3AmmYM1vKz$i6n1w6@U0}1j7=v@(rBIz+oD_4Mh&Nzc_T(xdx=<=HIoXIP z!vEbw2dL0`Ryu`uc5cwv?LRIUeH8C zKf1!De&PMt5es*SrE-9igVt+4+Dg_9YiM|l@FE(TEv`cioqJk9Lz`18Mne-H6b*fM zr)uc9$0Hir;|sVX*G%gqkCX*W_-|-AH~;X%QJ@-hWKs5~%h8nj{!#Ea-}i;rl0sFU z^{bSiiuVhKg?zss0>7V~Q3dIel8pVx+@UHFl} z^r(J8rh#mJM>FB?iOMd{Dqvb$xncT#Qfm1DzKH7&@H3UT4a|)v>OnV&BcQj(A3NX4 zFldf-EYKDI8zCR3##Z6r+a#>8bfJgv$(;u5Xc%%kF5?M|l5vR3bUA6_KV#TLJsZ{{ z;rmd`Y}I$OM)7Y|`#!mgNJ5|7Q@Ap{w)%buXneAp{+1@5{+t$%oqUJ-=M&&dg>LPd zK8Lc3dfu6oZ;11Q>n1{L7-+Tb9r3$+P&MePf_VTj1N+R<$mPH^{(Cb#!MpqsvKAaA z{l&huoRWg2F{{<_XKuS_Pny^O4n^BtxGz;`7Wyz_*bjor;fp^>@W&*I$3x^4heYrf z{)>7B)~%tXbYAw`M3h`E{X2U1uPXs(9MX{4I?7%W{wm^;nF zin0l<`$S9ZgbzEP*8IpZJOSXET4dU{ru<1~XAb8rcLhdzwl1MTu9_ z+=W+&;Xo8t|9cV@s=SK~BOgW4o~Ec;SQ^aS(la^Ej3y}fds+MKJ{*%u91vh_8N$3K z=0h1=?Fb^q@%Cg-tVy6ja&l;5K}qfTFbPx4&=jQ>q0*mEAkQdAy!EA4Q5G1YLqv5P zrf!#mD-vQ}rCa9`-Z*lUOSF~q@7Ss)3~5EzAHjs9=|<{ zl^l4q&V7)l$M=_Z)W6vd^Zy#}$Yf3PZ_sVKJnzoUaLk(7P$i4NK0a~f6Zw(nGPOT$ z0V4UE7O1ZujRs4|s_}UzXvySHpMp-fMro>QH7j7pafgZ>@$W8`+$nAYyBi+qT6!9B zPSe&t26&av#vKH5e$=`tnruraK=3^dB+m7TfNPMF0tFR$9w`h%`^@P`Sro}mb`d@2ov{k5vKk30P54x0BR9ObS zHbd!0?dOz!AmjZhh;q$W8qToE9bpmox>X9y)njpgM05p{KnT^(}PWQ ziH7Tuk?2rhXJC2EOyAcr^CV(qn3;Jvy>6H}$1!t`&&+5>Rm03}f)Hiqvb8Z|YF}|L zMR6w{Z@@cs}XnX$jAoxZjoH(@KuIEpu z!hEw2bQ)VwPp%V9lE%A}s7*zcJY~O-=KK-i%I>o-L{FUxkw9Avb!#j1O-y-u6PWf) z>cD@)rcHY3O4-=bb?n%vS;N&!7tOR1}#7vIJ94grMLu z(DrIpq@k}JRNxG18T12Rt)$bzJUMTBOl2ja(S;@U{aH-Fz&k*kU0nBgXBVlpD{9fF zmwFFL7DnurQ>k0Q-X@Iw!~r}fRk5RO^IkmTyPdLh{Qj9{#rPBc;EM6~64!+IBIzU~ z{tlpq_&h13y9q1rftd00M+r&CzZu6APh{Dbj7VnXJO#r}sS6+sy&90Hi%Xvfg#nA1 zs$5x9wX$e5$IW))oq%9^aAM_+p~F_#&D<`XSP2DWVtWX;X2AURZy5Ohy_~DUSOXrs zGI`!RhP&&&44oLU?b&9QJxj1n68xZKy2?`{Ab2J|d`}TEVunw3w+CV1J#+kUd@WxrEi1GkxwrdsvS=MH+@iO1(QAZRoQc`W5&4U;#Af!Ptz&V#CJSu{ zMEG$wUh{SVCR$_2UfQL;TjE*Ni^OpZ1VqC|xCnetL>J0in3Cyv&ij5C^lXm1|Babx zDlxuwI6_4OOflY={@LAuB*`%LGSpW$*oj4QR1M_Cea9is5iCf1(0CZb%u@E?Z_`96 zDWM6BQ{#&&C+3}@ECOyYaYb`Eul0^#p<#T)NcXNxs~H@EktKJxG&(Wj5rLD~#UkzW zBK%3!uVzk^%JA*JU@oiocN24d5f;ki=Ivy}!$)n4UXjv0*>rtUsv7#D^#^ijg41)X+EpYi zE17uh>2C0t^E8`99%xQ&io1_kK>aaV4Hrx)Tz@ebI1miXuiX+Y!86Qzu-Rf7;^{*C z_a;l~0Z#(nS`HqxEa&~>>Tt`#aT~CBnnK&?!aYq_VG3IaH+r2m+ECK| zZ3eh0MdLg~aT#h>&k=cez^i}`KbimQn%1Lz-CZgRYr^b3e+x?>YTB7P7u^jKOeuUw z_;4@i7j4bSzcc-(pOH?-rr+dqWp*9i?oem2_#(V^?{mH>{||S16(gE$VdN@a)$Yzp`v$a zzzV_(8So@DO#}84(uvWf$-r6G6)Q^ zzLQOBw@;f7b4U(T^a=Z>PUWu=RP>wJt~YUzem|Mn|2dJ|43;}ED>KN)q#1BxYsL^0 zH_CAwz2y^*qxVa=Fu||~(X3T+UVpvdM#aLrn{NwrkVu*H#tf&zmn1{Wj@P$d?a$$} zZ0n6%gYnTcG$UN-Lee{rgQg#_jz)`tfb0CVt7#hKZ$l{cuDg@sg;#xa=^aauSa`=E zFmU{URHAM`YG8GNB}p#I$UbMCd}T$P?Wc!+TXRrivL3x;zA}Z->W{qX|WUcGh7uD-Ya#TG8#(-kfpZRHVSC*QjWJ^cw1Ha;o8!WZk{KBzHt(r#gmG`ft;s8hOY|)<-TK$O;#5$KE z9~y6!K5`-4B(O=>L`$8FLbG0U(FD3j_&`;E4BKMV|6{k=prMf4R9x=64TkF2=5mDB zcbg{w7iq8qw}*3^Mb}zgTesQEY+qzzSMB0FCKou1v@6;5<@t=s%JqiDX{RIj!b zAMq>R%&!IgAA2hzSgA?V; z6J6n3mA0-GWfvz(wW&DW(vR&V`jbYj{(QID?~;Jq^m(g*+iZnG<2HLEN=DtLJEJb? z{eN+r&^xTj4U3BMn=`N8KxSJ!I!WmDI8n9nUv>}tQ_iOy!d{K7vergNCDw>J*+%K);07~{v8p^nGT z1Sq!a|FadvI?O%}trFg6?EanOXog>R(lxfO73IfUwZxAzWv=2%pKGf>-(k956mXc| z{#C$XT2N>lhVz4{!+eC1?*GUM~8%RM+3Y>8R z)0-*lFeN)WEvKzQV*~uKbAYRBwLIR`^&KYLZmIS2D{kxD?|Z-JdzuqEhk2=oahQJ| zpXV^W9goioP#k8npRCcX!*p?I{daJpWG&aRTEFh4HX&tdCDdNWp(YMBnC6 zMY-Bg^Bv}$3jz-F)`9{K(}+UjFbg%B1h!CO-cxlQIZT->IHk|=++mT{*MD0xSKr-T z>K*l0IqMM2f!iEmKx z?!f3A78fa?lw)=e=`8M&s*NV9eiyblaPK3+)}WnjG0lRpH)_yoHgPs!6-tbP)b6DycgbSty@N z{(3lmrE!l+W^qkK42;-EAG5i^#-(Ny7QNG##;~8Q5o69NMxm&|zkzPw|8d z3Zl1vjKdZsKY(OFQ&>%hm5BtM>x0Jopelln_Cce4&tLK8|d;+FLWlls!M!ZUG+^- z#TF%V6W_u%o0N(JMc1B?b4JkN+niQSG5*Z#M6ltVDre5PUSu@;p}lDnozknm3Bq$gINffK}^Ly_A_7X z)`-|#FEjc)w5Ox{BZ6w7!HoOE>4CIv+bkN9B9QDfQI{^Wj^R_f{yV)Z~CAa1nusFrum@16IAMhCi$Rh zf_|V{HC7)f>kQ&c7ZCJ;54zZ|bv!}ye9*~0s1HGtebB)^Xmf&)(BX4%60GN)DL%Ii zA4Ac46?D@Gydo^!B3hTskW0xLG+bvN2!-p9`cZEZ+?Ia?>-yn(Ck@eAhTQc>3#fs= zf4%O13)gP}KQCN2qR@ovw=e{GjgT!It~+vklDwzwnaT&nl9HhmkMygN2=j3FM zajT0bh1{xE=!;w3{z1sC{{0vGi1&Ld<+r%iWBC2QWC7O#KhLd(lb~h+*J3E~hC^BT zZq*yF!=x&)(VgzLQ*X$G(GMF*HB}#VDXD$AYf;hIswGU3OKPX#0Rz zV!bZpBS)@H1u#FEjulB+&TGCN@Ap$pfcBNHoAbQ?@H3uYUb3AzCzOfpWg!0+$iE3e zbYY#H3}l)>rUQb)H{?(Jrk?P{O!v(MMO3>r_yqi}k(Qx{h>7W2I(DR#<-C)?kXN=3 zj3XR32&wM>@q7K^#X{pGN2AKoSakuZ;rn->fo3Kv8#`?xZ0vL>dxo$vK}l@nNc_c- zXfz}iAb?mI|16E?yrxCe%N4-28vEc+q?z;1g7m4_5JHSz4ls543FN3iogEG2W}&tx zA?K?uH!+azQfCW5AVd%O6CYM8LKF##2(eH;w;elH7^ZQ5xY+9Q`}0)~T`7by?qcb7 z(2X?PLflMj9VOmXiN7u=Li}na{*@3S@g6*yCy-?#)?$BF3P}5eMP!~J_FxD2dH|nBe&Qw5H}3$1aeloUPih--=&G( z5a|-~HVwxo3=;TFG5%CSgORD6(93!AIJGzL@SG~6Mr`GIK#2MJy?s9}}?q62kW(S>O)jd>%II-sxDh`(!E&jhYPAg-xqak>2@xa=IQd%5EV z$cmR-eXmC8GEhLCE>*#$cwx=e(G;<#$RKAm677~{cNNLwr+_@ZIIHK;rdNb&<0xUO zvK{CDc1*PUdU2&2MoNMBQ=VEqpe_)=P=KOjR5Zf|+&$zW4;DkJ&Oc-B8jP z+)SFBv3!Uf;wVbYHWTn4&9oup+@f;yb=2$!tin>Wbk^~(_FP>7(z|XH*FV)_Zp6R_ zp0DV@dr-^_ioD-2M555uVxH9-ZV(*~LEJy~Iuso!l~`6&wXCS(N_6k$nJ=x!_!Mtn zKk%C9s#h6g^dQxzbM0%Qk8Yqb0vAZ1at-<+bd!k<^$QQzLT8fuWwcQ$%U=_XESX>4 zn+N`a`&XeC{hF!1Mk4Fre?3RN^Wm`JUTv~f zgHpy-$~HE+YL1oiOQ4vA)63A!RLX1o!ZWl`&vZc*FG_60G#XUafFh*}9dCXNY6-YM zZJUW-ybnSt5OGQ>XhYkZ6qNJk8%J{9vMX8-5VMEYNU8IMPPxq1oZqeS`qs3sUvhUA zXL;p7i|=J*AczW~MqZ|Gr9`He5v-{Nv3jPeR$wYzm%trii8Ti&R#a}mAD~(-_~E;w z!h%H_=m9;45E!;)`6J&6nrMu3ub}l39?xSU24`p@iO^4+2#@E{FL{$wijET3MR+tX zcfNC_)Wv!d&@v30g7)J;$*A|xqMWxADWR!;`0I{{;YyD{P>-2lTvB_j*iw(78+vbC zPR9t*^-c~rI3{~fA~wzs~;871W$t__5pMV#?%58W$8c!1_6;|ZwUCi5J%@V z7G&j;aC?SHgy@}$+KP$}XFSA$PuRVrem+M>Lhdj}=8QW{1?j*z1bm_}-$pZUz~lvK zqz2=NB@{SNDg7Iimge;&(_R7GYc453S2f-{tO0f(Ym9C4Y6VsIU`VlA$ybzp4n_AN zsNaZ0C3K2ePR^avIIj*lg!cg*iUVThlw|5BZ`GyrCH`LOeR=}Do+p)Y!_7~Kc9|ii z@Z&7hJJmSFEhm_%A1N&LzD5@n4Agl0LJT&j9@ySFv-MPSJZ3K2PNu7-c(+RXOW4Ld zbg9VkncG0bpXnK1YTqQwQsp*O@vdXH4W)P-*peNI9+u#><0*k0mV}_<>AO%0J%&WK ziopY$3oT8DhM+9bJ{{?}`Vo%eeJVYbI~yU3^afk` zH++r-;C*0l7}0HrA)(YHVu+e9AVY&3LwT8q^eu!6ce>Tv_o7h7M}?Mwb5D|9W`$`a zNUE-4pwiA%!agq`gLP+7OkwTzcB#Q|AHFq1p9fk5?ll|k;U&I zuCD3&ePP#d*N1>EWWEsUY^d8)#D_?8_aI;NSFt$M#%tT~#dZ`Iwf4aI+2|4Ax7*E4 za3YM={_lCyz_oR%w$;f?26uwtj$Sg@X*Rl%d&%HJV0QeH!JK5|C4)KyrQk~jqw!q$ zC4+MTiM(WR0*cH_2F)BHBQF`e1Te}9y=353947C32J%(f$4&w;X9(v(Yk?ty`ZoE; zGN>=%;DKH&UXqDl{|Bkv8=)51no12`ks9drN48D35A?=I&lfdeL|Ty=)RRC2qtu{Y z`fFKgQ177U2U5IrdGFfnXwK@|@e@9K39m6Fas2KxVr@Of^oMkL&xjS2V6TFuy$f`? z{LX#ko1r(<7+{7#vr`aY@~#Zxz3!Db9-L@^71v+033{Id>fg{QT58xEGl_YWD8mq! z89Wce_7ok5Wb(UnBh|+(N^VF>)yZuf&-jS%c?@SQrSNwSIQvFMp>=`ak3t6XDl;sA zz`7DygCkwc`;6ecLFxC2xbtsL#I2(uegLBt5OL3A87o5~E@zPu@ih+XhVeR#3wa_w z0)#vf&-F);9r+W%FL;iB4P%ms=tj6`jBNxDaLo?km#qbkX&r-lhxH4<`@)Mt1FX*S zmeA7gf5SN&68t_;h74G_Z&8w#JCLGhJ}gSLpy>OV%alMg%ik6#*gEFbp3=^~6pMW% zsIDdqP@(arGfw+hP8qd@Q?@})_B16>6l&d zASy9cxrqD3sew&6JREwDSTe}OlJww3sZwb*Go%=tNZPSJLwZfsf})Cb0a_q$VtxG! z9GW-!XqtHUH1S43-%UdsXf+{>DX~F)@fTfF_D9cKpz8q0J_p%09=(_ZK+mG#{7-=9 zd*|h)N0+r;;CE_i_<10iEbP_M`=6jXa|{s^QYJs5!lao@5%Kq}gdBhu<1^1oXc z!|`fn`OYh3)MK02#^siLAjrEqcoi=U337zC#`o_$8uVWaJg>L2R4k5`^_Y zY+36)%g9pH9KEx!ITR!>YtUyK;he?udctttt;6K2F9T9vdMClP&4-M3U=7K0l)~zH z^cvn|kww&=Y6hi)jXi-=7Kmb{5)UQAUy! zghJ`TU!pi~Qt-l1$D_;-Iv+>IfkY^FD(BiodeV!RC# z<4q$0->}}FOqY*}c)o2x=1zk~h1TY5&nUkr*iZdZy>_}iHRvL0KTWiPeHA?244ZbY zfnl9tlvA!Y4}*ksY{Z$Z#Nahqfn@t3R{+K~pn;=Uj6gx@gZ;QBn^Q&7vGzAj{qcwq!%(8Is!>CT`eM!)dX(E)F=r8Qo4 zq0(&M-&4v9jbzUT$4XY#iLZC$u9r>`1s4RT%ZIIL>QMXW1p+Nt6>9kh4z9v|dx-nu z8FvLC*kLxaI)4$h1M>m<@(7hX4VBApl@ED^4zYDirJqvSg1o?O$HHR%=A7+DP7vSo zi5O6L#H_85q~kXKAy5~SB{F5=haUXL#=s3FXoRUDqUA*~lwo#?;*c~QU>2(V|EIFw zDTxe-<>e8X^Gg3nzAR@Pd80X#Xe7Qii!QSn?yE@4A{p+mCs?FO_DaN+@u(e`kA>0z z$#53}$)o}2gPeB~huqG`*=}&mP|p;f0(!!l2DWi( zs#aiG%zLvBE(hq!vyvF%674*f{&wS`Tg`twS@PV=$(OyJFMFjIFL>~lE=8%PT^HbM z4cM%eeOc>jl6K(SPH@*o5A76ap0RLLcvm9b3Mm`WU!_;+ki2bDrx! z-)`dHZ+q0^2p?wSviHM?=PB+{_HW}1T(XyYPp1}HIMOd1r-kO;+Qr^7$<~N;x{vf{ zAk8In3{S5(jAMO_!%4<8{sR~RJ&}Le*s5hBRSa9B7(=^|@s8J@o7up03S!Pbp)GIt z8F|*GBFiLyW0Gc)*(by+-V*Kw)o|0HJPB(%@lw z7@zG^Xz(eF0%Uui!YxYSIm^R%rWHa&Wy-{-`DBJF@+%IR*-<(^!#txm-V1XsBY$o@yisF0Y|@|D01a1BeGV@qnX zVyl7vv)J-*|5SKEhSA*$Qe99ASEFQ zL*W@mp_(SGi@j;tFwRQkC5BA3k4%%+DSbq!bTv(yioI(pr>nE_oHNfD>1oos*ldSD zlcr+NnrCYww)P~;!1ShmYcy$H?D+_C&UBf009hvw|eU0t&SLo3X zhj##tBtd!S7>1u5nym-Dk@_9Yz4A=_k?wxm1+(JnEP`o)Sw}Kmy&wXKaJ2S(y#LP3 z$8RcwvN(D6tp;*DPh(uNHm6iP3V(s%dT zw4u^-X~PH!rOXH>`h^mYL6Ws%4buL2{yw%1zp)&|7YXp#Za%`yPZP)|3KCQB5jwf} zTfV#6R7`Z74kWrHDKAardzTm;`~~OyFPhzeiLr_9r=1pD@f3b4DUrth0|525m*F$C ze=Tzj`gY8NhX(RJS~?U{#uvln!Hh5;gQwqv7(uU)sS{NGz<1FQ~KM=TIqX zkf7PEnnD$G7=beJCF@HyfFVV~%ax;d10c>M6GK#zPX6FAk{@t+wJ*R+OmUqp2Fa<* zG1nTz2(00RiFIGv?CAbjh;r8lleP(ayX66Zy}chPb{oV-L!-R4C_Z+jtfTXjbu3^O zOO03qp_t&uGU1)zncC99<7bF!9ne(S%7=ak=y)g~Fi^$38Pr_vU~lhutIUk#EKv^Ea!WeV{=j-HYr%V##Ox!iQOCzE^W56|6o4 zSufHF%o5X4BhrMHVWiD%SX*`TF=B_efXWO>E8}V=e%($5<40&5K>HFwGx4`$K6aoV zIP6UPIUfVuOD~$=+IcUVVS8Dz@vT-wzW{Y>m%LbZ5-Von#rBSSy`2XDv z_@VHI!WKV@osU5#taC~-1UyVZyvRFnVopjN!CE{{!jUD@y=kc%RTk9?1mg`7NKH`A z=`LL~OLqQq1i^ZuCFWb+Di);-f{WX8{(nqtF zbjPm1lLHE6_JG1#MSlV`f}#uI2_&q2<_W}kZvsPQsL#-Tqpjqr!M8;N1+FQ8>25Ou zY)Hn$igHoG;h#85wmw90LYHOUwV^NVh5>2U9QHdb`2mpf#CaWsMw|~2>%7-x;0xst zo!x#Jl`UP%n=xsCE52k(X1;sRyY+*&@V(fZ)^NBN0ayG$??Fswm}eMom?R?WWqq0Y zp3<4SANjG<((4V>l76i(laV|9GVvpP_bU8mjnxv;2173%o`jg%d!}*GFL-kAt;hHC1#Reutf~WZZoS zNiE~?j}0YePPi>_^Nd#b>4$~j_P9U zigp>A=BW3|9kF>zaX$YA?o#Nmf84`+a{c~M0o;!I$Bm+mNdLIx1Eey)%8lPxD(Dc$AS))FoBSB~V z9 zk*3bvk2>xz14KK~{<7Gqx$-`0EYe@TdC$Rbx!q_qufM#g5H(OH{!hQoDFTW1m-+G@ zzb^S5vA>~;IJS@ccFww^K3X5$Tpz7##m!FK409_{b=PPwy;_g!w*l5ay1!m281z$kVgk4C48)z z!#_op8z(cdvbSk2El<~4?D2w)X>kJGK}M2>cafv`2nPZoRlA7PGS)%lNwJ6bV85zu zCOlm)jVfR$$z(LLXX*u>>AvTGoXhMmk;c{BCZpE|XX3qm_`bIZe3;}m^`hKNMs+C( z@wozr7Trgg|GUT$|1r(V%wm{74um5}o!z94xSXm|1U{9@H5tVl`$$Dp!22Td+u3`n zK3a1=q>n|CI^q1EK8l>ETceM{HXbYFkt)V~6u-k!rexf|nBZjd6P&|<8+1tFYnO1L zW3VJrZaMvF?+_6;*e;EfTi$b#ax27h;c}JcJ`@@Ueh%@?yN^SaI52ZH^O2)cq(kjU zhuV_5x>QU(Y`QJfp5m%_o0-@*MrONi&KGrdGvQ*qhK1*;rMs_r$Ju|`Uj@PeV2W{T z**`E=Uf!2ro$n3Bh!r+RfqTrRp+e9O^C&v*h@n*g# za`vMJ1gfjv)N78F$;8rTk+Qcv0L{|7CD}WuG{{83X{yIot-8f49=3P3c zJ_aiYopG1fdW5^Oy*jV|(w?2e*G7NITI%nxmiFIUOZ~OA|C!czozUM4d6rUu-eE3J<^&Lzbb`z{9bU;($M)G`!z6s5r3MC07YlSFK*ZVk7*!LB+cGw>#eP zF9E{=iP6}M#GD{cuCDYjR zK_*e*7m9A;P>GJ!QA{=ZSg>!z3xZZNIK6hu!*SfP39Q>TbCXBDFMTpfnsEXMM;ead zPq^vFGJ}%r=jbeqq<2cfYhM;2>{U*S-r$Iey>A)WbV>R+9TxIjn?9v4X7NT&{?;b( znwCO9=VRpMg}MbXu{AbA;cEfYXTf*9b7H|^V*1_*zdPnf-U77f$ z8~?6R$gJJRzj7YjVcTfy?z1}YFUPM1zPA3f&DovPZ~CM3ZD!`bPyV^8*;<*I7?J|B zCn{dGH|&bukn<)|+j1BJE|>F$HqoEt#L-@Gc-)Q}>QSBK9jH8Dmx#3jZ`)!kmdBdl zr1*};W)fNA8#*hhmm##eQ?J0*gSv<~WfGKg<=90;MG(oA_vA>XKYRJ5z4L?7mFqW?685dBU` zW*`vahx^q&P@sGmC4TK(|Raoo*#P0a|J4gVtlELug1&TvB%9CbNkX&KtF@98;ss& zq{6!!k&%kEP+A%obNo@QEL<8H)ynclcF;#D$2m?*=`CoT&Hc^ml<`1*=Y86z2iQUjau#{WlZ;Sil&l}@Qo#~>jt z$_WtM0`O64&_M-8K<~XV;337yFyfnx%hz3sV9)1{{j=e+&c}n()&h@?H;nSVA#CV% zZ1e6g-G3T;CJ!Z;4-sQ(3ekkyg=i}H&fpT_UyVXD_q+?~IjV+^5nKsNMdr&!+aU%5 z?}I-m1o1xjj);3Q_+&0e6G%JIS}DgNQ+$dP^T`+3>;ahb{@s(OY+e$28N8$-#d3gUGF(IN z!24xqwhLCk$4hcS)J45;-Uh$1--!8A>kjOxntwR1Vm(kv7d^J(@DOplA31__w*Dca zWx*Y}?5z}-kxKcL?ZP>V>or{C2_^{IbDGlS-FV9CV3lV#m8S{2?l@Kin8-9?N8wVQ z;j!9cQ?9%ldK}qrvW@R9Oz{-c*pHY9h_qE_5w0p&937b83;y_(;bZsJhM!F#E9rtp(@f9kzghsPr! zu*a3o-@E38Paf!)qM7~>N#>^y!k=h=#vYgebKY2lfn>UtNMh@H0o1$#y^Av6X(XUl zXk`?r01sk}Px^%F7*8mpKk)Q!-QGquA8!~N)ZUsv5b^qogiD#CDWGFQJztQN94qpT!8%7`0IPoCQ!Oz&NA2 z6*WeOY4jcDXBO5}Ws54fP5}~_w@-no{NR$sCk?P>grkXYdXC~8jR&Hild8;;T1JJv zOIn+R%ZZJB9@WShuxQL1OYaR!7wV))PNbKM^SpIc=b7CSz!g2`tyl~0Z=J!@(!UX{ zij%3PnFSmEKd8qk}vWoo5Y(xWLFz3z1f>|gQSwRfEiMZ&Y($$m2`WLzs-Hi#b zelg;9fo#~eb8`Uo?#`ru4X1PlFCb+%GT8Xyp5TG+OBDI+rB8n6UmlD9`g)=Fl#UXle`0HQG8(rI@ z84M?7?vrGrasQ#2-7oc?V`LBnrckAZ0Y6^}+UfU{u6=ZdEG|?3lrsAg+0YmA3Oht% zXv|MF&Ef5uA8_S7UQ&m-A%%F%3K`bu-KZ!fV}AOTV~}Pu=`-`fc4!|FWN=3?kW6&T zA(DA7sIr!Xt@L{s{A^_&gNL(sNY}9pe*9yA!LRUoGOQ6CA@do09Y}`3oyp)PAqETB z%f21&N4{8KobmOakJmMb7m0m`@SYXpqpz)69gdR)`%Em{uQIVUSW+z1g7qg@qxzvh zZl;OZLkJ6OIFM0AvcPuQ@t8nOd>Tn|y7wdj2<3EEsz93?1!|gPaL?b@<~t2}+zzi| zb`;|F_xR3Z|IPEAdBdZ=^Wk(3=jz+fogrF*n+88rmhU}(C7vc%-Zt=_cSW+uiC?oi z(n;rAH=n=#C0`77zC#22mHbZrzC7LWmn47t{xSYWewU}eN97Y0LH_>E>7>!$m26k$ zfSv2_Sf9TsTZ6y5wqU*gS%34}^7uP4kH1y;@POrS;o#rL-{Ztn`xcYG@8f@nzn$~> z>&ivqQ0zJ@z+a!=$=`ZDe-|Ned8hs{{%-j;Pk-CWI#bZTvoYvd{oQfe@6+Ff#8dq( z_!Id1$L4=Xe_wo)$6ue#qWyR40Ds?}`uq6H5l{K+P5w5^=g&n$6P=I1f}cO$Ml%Sc z{AF-_k1=x}U?x*#k&J{j4ze?m$Sfq6SY%c$WNI+;LJ~+UY25>TA`9JPn8SA=5-8=w zI=ALs?9FzoNi4#*a22*Kn>5pyoYroZWkG+XaMmTVfcZ>1u_zqfVqSc+JnJ~=0}=g@ zzx#37Ty8Jp!APmz$#{TNH0Q0ZqRQ!57+55$xD6Zy=LI31%E^&&S<$J#M%6{-Y$n0I zagkCWGu%NQWh3!SU`4d=kI$j8vf~`h$}M}Gp|uiICy?8kH}DbY3-0xU*Lld{d8tO? zCkQ0mKO-fjl&=o!DgXctuaW_ch0S$LD8su?S8P&nT}n6&O$YB*#RgV)dW!tSOmPo_ z-@Rcg?P!|zz*414EPuoR6ts%-1Th@G>=m(E6#j4oZpUeK4J?pxokrGZ?2BUJ300_L zUX_%rUY2S~#MYclvs($?G!zAwC8fI!B%b!=vt1Yr$c_~jJt0C3&k$tw!gO@j^^~+o z|IB$m<>@d)=UJe3rlkiW@O&+})hguP;u9iarSKP7v|5ibIscatPv&W3y0og=XjO4KqC-wP)5eqtJYO66K2amQQ4PaAavYv~!SWH1E!`f08F01J>!h+!JCWOuCwYIf}KSpt#@GPq{+5T7V>|DvHaSC>< ztxC&OrT*+Qh+AM)Y8_`NNXecmOJ?1~HMHZtxu}C^?lf-atL3H1gI}rOF`Ym!pe=L> zQ#u|&ZkRP3++kCgRKc&QzVq~14?o{!O@C*m=dIwRj{!m#9jkmqW3vo;V5 z?aW-ZL1Y9hObg?M?hk@{iK;tvKyRBUJ&p0yO-A*%zSOiL39)V{Dij5rMyWKxtOaJF z`L(h9VOIt-N;g7_0o1d(Dz(;qk%W*b>@yh1lA%@@bCPJP5nV2SPkQiF*cBk*ekWAq zF02;iy#0}!$O1RFn|TsR(RKkEcGC8-Xh*P`fOFmuA%V!s6Gx2W;u94!cvE@!OHX({ z1&Ki;EN)PRhl7P!Xmx6k6b)R6^mYl_Y&KWt;0Cz+%?{^M??h=AEE+zVXvLarPf+I~ zyW8p8rg&}9@OZ8_8hcHfjD(ZF&CYJ$(<19N!QKkZ?}fUZjR$qImKn^5Hwv_N_1hiv zT*J*p0o;wA?Hu>)wQw>ZKV6WBf>MV1m2hX6V@O~p;<-96V z!#;{ApSNDH@CI!H-UPD&n0goJp&gGq*2VVzf&!}mWegaSJ(}G4T4{jop&0x6HuCV% zws!$=#w#%^N{6ur^{{O1ho7|a+7=BzU&k1J{GR5IML;bT*NEJS_Pe6pHXSrKMw)Zn z`>i1gvo$oDA0OOE1-G>=gDfD@ zVH63CN;h`U%6nZSt@NbB2K$OV^&K9S_UM4#Eg^dBfWaOhhS*H1mO4O z_EH*)`$dIH{o!2v#m~$NwtO!`seiQLR(X_`CuGCjtzh*t!_`la$5N*1yF&Br>x4=C zKjN+gPRr^0&$J_EsF>!%gSb8@ zySet=2u{r9ZiGh+E@EzOajy8G6%Kuyam3lA@54tU`kp$*kG>lSPSE!m{7sNz{%tXR z8$WgEyLo4ue+O&y)%T=t<*%{4H|@g|DQ3o)!q$3L2b+IW=+ZN3@N@>%N4{r8^u3)8`kvdg zRs37A%%QJ{u9q_OFGr(qHJ^=#>#4)PyhU(AzPl5Bjkk`zBV76h?Pc?CC|#8%`Pbc( zzTG1FZiMR#F8V|9PlblOgNrUgNWOD1WfPKb4CFuK`r*$nIXjNRM1}sA_QGF1E`j_0 zB`3F3yv`j(uX7HbGopE6$tY1#Di{y5U$czTX{F-`uCR2}we&}5$V$xm@q!TX;>PI3 zT=9ZS42<{j0+T(xiH_97)!f9Wa;^gVhu3ecolUot1yy(PN4HDGD{Mj(Eq5a?k(^t? zeH)x}MOh&}y?i#XK!@6Mw|!X2v#JuY>rPd&iA;qmp$@1@b`h1_A}OgNyDc5XkGOhr zLb(0$ak>Np+K2WSl-EM|1AJ82um?kO;Tv+zuXGd%LseA=ZD2b)NF>pC|KNZZ! zUNR$X`KZqTrISJji z2Crqmjoo)-W7E^w*gDu)FZ2z6OAGPWvaxlrG4VQg6ulm78(Dk!jx{TUkr5!|bS3=} zs-ATL8yR8Zg=T%24ZeI{&yrEsSi*0DHF*H$dc0|Do zOjf+19W1Jt%93SUy;4?T7}}7JOhdcqC+7ATMng_bJSwi8a41HvNEVl_W8iWLd=?(l z7+Nms(G5h^U-P3`t{VEHW4xi&Sca*Zt|W&b3~j*%{Is$?Py9+{!oe7ZhN%Y4(lN~~ zs-)#Y-ImlmI$97OO51rb^@}z`Hw=#Fs_Ec#G(grpf4TkxC%#DHCS+FsaQ-soK9s2V zr-NtwLvVr-Z^OF;&%s=_BEDVmzC+&>zCT-^U*%}@t)|1E9`W~E1SjJkqObAR(RYMP z-#!C{;cD~0F%kc|d(yXCMBj}VnuCi-#SN7ahx4cD*H1u;^25wQlGeP%y0>(xSCgB^ zsB+Oc)OX?_l36^=ok-@zxdeB{%}}_JN9r6^a3g*jxi6Iwkg)e;dLOf*(@0Tc?56Ig zwYd20%(>pd1S`AbtY)62Rg`WwHLqhBDU;I~%P9K#Xk+a{_1eW125R8Gj_M-Y40Alh zF_p4pQA`C~EN{b=7L{Mjyms}u>a876U%RRy2-^9t=;XX+`}3UkNvGV*o{=TI zo<{4KT;$ZX8_iQi@pVzw5#5TC(QVVzH_)!n%#`smDzou~?>A=JhrVJa>yz#(uSG8> z!2gbc{~fLSU(WgW9S!OxN^`l97KP{_9^ITJENB5oC3I_6&oN*GDq?Q-rhX*njbUh5 z&gB9VSgGI)&_FK8n5ntf=ynE*He?YIsbE)$i=XGfa|MNLz?44FyOb9WDRR+ZD6=&W z1XfZl1NqU&W4iXgg?hKAkQ}s{*G#**dWY?8=(nwRt$=6feV9+zcKp|olH<#qJ{N~D zFr~k?D+Gk^=@ylPhzkDH1mbSo)WOpF>-NS+~6 z0SJVasV0cRPB4;1uzP!*&)S~YpF520iESWuSUxFKDmac*DQ<6KV|pQ%1}_t+m5@08 z3&X0XQH(X@sWE#KuVXnF*+5VUo1)P|`Tr*2`jUH2CtA&#vIJEW~uYQhoG2aL=b!)#E zS~{sPSd2)!_Cg)pjpV$bmg!~R`83|iVnIkM7zUg$)(MtIu-Ce<2?O@I z2(|}cgTq<+rU#AjJ!cPbG;ZW-FOA#V#q1tpZk@(mG+t=jKKKibgD$xmHyyLfsvf*g z{BKh{Z6&f!#hVSTv*IlzlZN8GEDHP;?|06;YKnJF3#EzpuES@L-AZ`HHUE-|cM8>S zE8eSi9UZhf4xl>5QyriD87bZ!N>TTKu$>^gRRipa^y;eg?C? zLOV`i*a>cDQQbjC;#>+R>@yGtQ$~Tethi?&))Iz{Gfo%ScARlHiVSEUzq&;upMMnCX2?ejxs|^%$+iwm4aksl~?#HYrjbPJZA4 zts*Nw5F5f)okNv{JF&*_Bjz(SsZytNhfo(yJ=m)FD2(nAkP>fKWBP*guD&)Th8ZH;6x+j zD-rA&F6=%A?5GH~EntHdr&RWtm|`(2cC zjL8#@#+VvS%b|z`s0%hw$DT#HZUIJa?^$e>rj@h~&le-G@vBq6OnNkJl z5eD~EP{~}!Fd!!SWimI|f+~%63NJ=fLW4Y<1$xM5_v&-7L&}JHIDfe>6QV_CxT5KN z@?dPS(P(XJ5U3b^o)gnPUqP70Npj2BA>UMRiiJ}n zf*<3vI-$;GA?KS-RBheePg*7<^VqnU!zap|a7Hp_Z2UIXTJq5eUuzK=m^5d7Vr2C7 zKu1Om;jL{M8FmN4k*U{C2{kCp#wj6PE*C>Cle}iPe_(G23GPk&O*hx500aI%=NhMf z1dh-U-k*o=RB)^)@E^kO+Ch!jatPmU8&!b)!{rzShr%U_gPij_T0o8oQ!E&NXJ^r!|D%4V-8Q|B3qsN0160aA5};uyZ5WivSz+UPdaTC!rmy z_8d|AnKn`&%u36&3$ z^?(T%kIydVW+73rX(@3RpIxMQ8#@X{Rs^rn>PtxxxVS2y{UPD^6lW1eVF^HfXDsG( zyI4OOKYAqsTmXXo2jm9vH#rDq18TVNsZTcIYQ|sbDxu*+p*PhtHZ?|Tr7d2)MEg|d z8~Xr-SGH2Y!+XN)leBvx7#D89Xv&mPVY5ra!u71`b8!z5b#Zxcrid6)^q9Q9c3$wKz@7+sMXvO3Hb@Z}^VAJ*TN39~em&T|- zLqeUI`VF{E1tL~<#+neub6z!+fF7-ea9$iNW4m;yXDs>~ z$t2{c9#-v0T#GUd(}>r!a;j$6FL^r1)GYmi(Im? zX5TzbeUt6_geNlek7M2k7H3?u|6!t`#Kf>`p%D|nurXV;WJfwgC#vD;Z?b8cr_u*!@HNT5~hNi`7ee- z946*UnZz5YR6=ft-&JR+7IWh1I?kkPDWAbG=-L?W%9x-v^d2?DydVw4&6j+`AqC}- z33aPX&R2I4DTy-EGK{?x=qC0JFd-H6^J$8|?|oMpf$r&Z%@InicxRsHEgQ(RBE|{j zRzq@&PV3_mV_2`96$wC6Z2Y6;1?J<+M{2AVq3h*xpNrusb-Jsmj~5VBQbaNWuVZ>V z8MRDuAjn=?)8NNr1Ga}&wSwb-7ZQ{2hZzCw;Ep6!_Bdq}_)=DaVfRWqY_JZn03blk zIBNjq$M$w+sOK*tS=E_EXyRhF@x%P!G^fqADX%uix|nbHVfJ@1Z}7v+cQLz#m@3pF z(G@~;i;_k2lkj56p3_}t2j7qi4##cF_+~=!$oW~<=9DDncS(F^-W;AYtqfo-AEH}2 zb4EQ+ey%j}@r*9n^rOX3=V}p6w_PB8yrg>f-$_L@4#Xn+FxOaRRafw~V2tM5!evi+Yy3wNjNW^}78O}7gFBf9m0>ekVsTf6Ap zx^(BLTfKHv-D(vPH)nyO_~@u`vM5B`g5stj#fL{gcPb#+_wUFrF@t7AA>VllNcMeh z2y_C-lyTuv1SI?Z8wf_b?Z8ni>YZQGcRp+{yBymAaAz{#ZIoCfjPuNqn``kp8(*3G zn!-E2d=`4amU|@Kho78>Ptuv?t+ z%Cgri5>;SKYq8xM_{d4=_IIC6GUf4h1{>Y*JlM-muj3`m>PLLMj1li8L~69O#ilz5 zgGF}ksdU{((E#~oP4p%q-W(_2d=$NDC*HJ`Z{CXD>?qz4x0v!#f*#|eQHW?7FKl?q zYkOp6-!gJa*6?${on+$ms>4eXuY*g)Ww*QTg>as z^@%}7!gj+w1x{_ z-Gid6gTb@@!-y}bpaf(`w^qp-Mxq9(n)hRv7=xOkjWE!@A@h{>=|1&h75Q(ydb~Fv zQjeNS#Nnd#Ky*{Pv=bQvnt<8qMgsK)@* zAl2h)j4Fte(;kAM*auM&*teQgXQPDLG(5f@-^iDSf(vu#Fz z4|-%?LtQ)X1ZT7=CMRHxRxy~ZUCa~xFn>DUX*0(U^K}>V6Y`sNQ+vIO`LG{mR~K`T zi`lJjw?1lqvIrJuY@@EgO&Q`_6J^BnYx~1ik~Bmwmzv*#N)RE@+nbOt75fzNR^5Gg zCIK*fD%b~?m;e~9q=GgNZmK;oNpl&b0rFH8kFKK9`RZ}*7n^E(B-h}6q#ns{3F``O z4qseK9@~Trs3OY8b=PAi5P)4wC1_5>OdH^2RLmp^7&tb3yAp4Mg~XcT`K{0Dc6PUO z%#4cAJ&1~G%@;l9-yQKgcIGKzkI(epJ13p1wYUshbuzWMC&4DgeAU?})l93%&Pkhg z!gJr9w7Nu4L?u@1`82K7$8bLFXyhqx7tL0~X;S_)yvMB1TY63jHXdJ>lcyxEL-tO6 z4UGCor}Kz7=yWB(@fTn6VpLMMN_uR{k4Abe%3`S17Hr(3JSmGbm;OXcwy3^_UzoQP z`RCx)SHy3CIPKr@UEB+UY1~SWmg(rks7xp=ESS*5VQ6j<Y#kqnn{nE^d70(|ssxl)mc!#N?o{-Z*Aq)I9_zb*F%7m23+a||6{5yTw4l8LEg za3+OA|IP2wl6ual{z$=$0jv?tK2GD8GfHRZHn@RR2{;$bCibNch1;)weRCsSubeZB z(gM3B)}4Qy*28w)pp{T2f+iBjPM&JFy=u zn^;HrhcB+9;E&fh>rVqM65y@I0EU?*6Cd9)^24m*yU{6`3G}&=BGS#NC4E0m=IURr zhIb%FOYh(&9xtT|g*R^pZU#Gpd#)f_D~nH-kEZWe_LZj3g8c;y$eGobK5H3-pC~*C zL`OlZ^b^ldA+AEDa6|xJg%HfP;v$mrqrnsPEiu87pGl!%GNu*ghE~W<1>a_JF&Cb| z{HqJ|Y!`E+Uz>ZonB7B6eWungSp$QfI65&|ck?34KM^`IsBbtcs)q`4rX@sp%-{UG zs3Wdu;IAJN=wT7)^4B)j-ZFA>R?h8j2yLeK-A@mzdK2%VU{sr6<<2w{8Toeh@ZN+* z-#(wb%?SF`HzA&QZHRaiBhJg2)^{>=u}lnHXMGH-XA6g-t_oI=(MaDj>m?Qu)spHR z*3t>JRJBwgg9LqmK!sLJLOk#IhGOQQo|xqbz7GEF)hBFqF6hdcrStD5++P~;@Ars5 z;{hu8NA5wgp?=hXYuGQ$rP>7lmQnCd{Oe0-H!=TiI#D8Sb4^IY(ToWGB_`)ggL73Z z%v)-(a6D{DvG9h;Aq#ImEv)D_KsYSyMWBL(7lI&%gGt$87L6*DDj?^ zIo#g-79M*fzmf}@GY+qHKVV-xKNk}rEz(sqt5ttAQhB&D-etc`{jkTo{BXSEsFNa3 zBh=g<>_MQa1|5b*C0gq;&elp4JtQHzBN_DciRUs=Ebql03sZV*n*%+Jmo91MfatW4b8lW009_`Mlzd?r_0|-oy3&>-A;?r$+8~&ve-#!O`lEZLicZhHc6+*B zfuRrC@3)qoP{X8`1w-U4taxN~*6>}JM+kx0G{mCCfoa+{tiZM{y>okt3Jkka_8ZRO zw&v#I>Qmy!fZL!enjL%3=qIMBuf0(p*=88u!#33_y8Ima>dz=*hUw5Mx-5IE9tahi z`QaDYf-Xi8ra3XI=v03pY(H*+m-mY{Bkx9c%NLI<&l>(Oh>U$feWD(^QV;B2Ghb-t zbhUG=J_>1&pl{}u>_o)jEHAC!lXZz1E@&24L!pkWr)k66d&MK)6I)Uj&1eN>M~Kn# z7;PrD_Xggt?z)6~(-2yyWc!4M^NxUb3=2Letqo!J# zZbXetQz|$D{TTz2(oM%0VI`3uqLD{XPjDxB9xM7#wiN0dM%zU7@Qz}>x$_OY=(3y8 z{46?sog+BaB;-`+tM!djrh6gR0^fg#HWrZ*FdOEAn^e7_lQftL>tnZ+3i5PZf!O&u zg{a%Dz?4{Bdm1r;>Z^RaxA8VM9y$Fe(u^=3IgTIG#3Rb-m+1E)aY{)chHNTSQ{G%3f1911&D$Xe#B zTF};&tp3*EP@o1_eQ>3`p}eDP7+vp7tLyyCR(lWEgG5g>6y88ZBGCgg6t;~bXs)?U z^T%f`r=%%>F*aRB*qW+HraSHyUCsE(EOtVao)qlH0t$MQD|nQPK2?(t9t=w%6ZflG zolK%Z3dXcZ7sa!3?8-61qnPKd#LY)EiNozR%%KL%G;wv#J><7KCn|Er({x4Ly)zc6 zua&UF(uN~0A;*D~`x9&m@L0M-Xc#>Bj52sdMrfDP2F9Q=J^!f4Wd4!=W|r`m6_~dB zc@!`*HgBNFNzUBOu@gF*3if(I5fSl5w?yw8`?K7(@Fkcs8gz&KQhp2#w<0&6lzDd8 z4B}ZaXg?@A0SAK>3J+xxo=C*Sq%wGBX54^!Ed0Mm1EvvyQrunXx2XYNJ`ifa@QZ{7 zT>f~x28?}5F+ZIKj74Qzq5;PV=2Z$?VLn`hqD&gll0#K;Fk7Yp#&?}UNn+$73Gkkg z)0h~c61xeN(E6Dljv_2O0k$7&1-Zi-asnLAQIwYojuJgnY7xE!JLza@RI`*C5PBXd54y;@Mm=mZNAx z48`79Y2%*=B5Bc%_sOJ!DNr&zPesgz{}QO39sKsB=i-B1z{Z|*QQTP+Q;Yz6=ZVq; zYV6@2vKN?pl{Os(65wY6l1*M0RI}^;nHKy~iAwnv#kg^ixAIe@gO*dl32grb9A@(V zg-@w;qv#4!G6^I{CE=C4>pa9{g4w%coGMyWm}JZ{g~>g~y-+2+a|_#H!|(R~913#&0Z$HrKjD;RR^##o-~%#v1I~8ePJkx_>?5dOz}9B0@nN zK{eyiI9LV%BbJTg;8MiFoFZe19F4AEhTI!PJa%1y=c;xf6ZKN14D>ejSEki|5x*I@ z8~--y>y0ARHw$~7;zntv*{C}O1kH9xCp$qW!D@4NiqJ)y=wy92Fd$jgjs|NP>da@tdS&>GM-+p3I^d~ za3leD5KSN&MP*f_Hqcr#Sia;TS6<%P5oUEv#=SWz)gnwi?v)wQiRi5cA;&gM2wSI7 z1P)vv3nAm1U33)!vw}e%5GKsc8C#~!O-NdKkX8Ub1jM%_Y8it;+gQ~xMj-MTsh|U5 zthD+;0aZxX2~?xiuQ<&Qqb!j{9|)?ZLx-lquT7#G<9Z|$G5&1=5z`(`hy?mXdfX9@ zLcM^9T@37mpk9gTJ(6Ea)eN(XQm*F=dUp8r%(+5=b9(F0v` z+LP1`u&Ll^pjWlU8(G3u*Nhh}c)vrL6w+fSqZ!gkL*Ovt6RrLP-q zEbk?iHxxkymyl$nbcFC~?;-8d_ETIR!(FCZ;DK&qP|{^XcOIhc^H75(y^tL$Mi;++i}+v;8xX#yLyIL*n~MKh3#~yv20tQ^wJeXHofWRe;u1ro!HvPY9iWSA z8st1!X30=`XnaZGKtMaixiDIqrs+a#-Fzj7F$v9@NBqB$i!wsk+!a3Z0j zHa+fof_*7{q#+{*7t$egb0^SuW7tmgJcXKNL808VolJ#3bU7_rv%`mSa<|qlB6TJA z0z@wP@L-fkgr}BpJ8)cj1Y&HbVlBUc;DpEj>_K?^)P00!%+Gx2+jtq#hv5tkC(722 zCaMh*570==@+7gMJS4F*k=QCEQF#I%3i~mI1_xUVvB@hvDB|ECYL=K=2M0SxTfDj%)nJbdX=jP2rD@xU1oO>N#xSR2MFooYVc#^* zk^2nTh$Wt!2g=}r5xkHsV)x_IN@L+q=#<5!ypJix4us>AxUpQTx0)(&>;2TOcPG8x zBG{^4Z{!Uzh6(33r?L_D-#Q!+!wN+oC78mtL&!0w#=W8&aRIg-jI7BTPG6Dcp|`jE ziWQ^s$_i|aXQU_58!i@;J)JOHgtD?t94S)#D4iNt^bTerE;1&E)~#(I$h_TQBTslK zfH8Mre^9E=BFLgHh7wGIPnw8;ASOP>iT4(FVVhSt|DVefqdMpRCD0%640C^D{$D1F z;X!yRJYD*<&7v4qNNx@y;Cq=v2^{Tn^0~8yk}hc)pS} zGMv)?NsW~hfHl-!nVizUB1qt5z?GuTR4~-UoX?m*rsQRq47f&Niat#WlL45A&e_nQ zaORssR!*aT3v;I67U`a7kx8vs#aaS*5R%O0HpA=yrAFd9j3bk=X@Z>FAIE%j%{cr| zg!!pp?j3M#96le2Cekoa)yG52?~pB@zlTDkf~$x=;3qwa zjg2%{vT{AEYP>6fx^R!kbD&3Q9SHf3H6@w@x%D>a1v`*^fGYW7*1|l!5ky9ABT2L* zZMQKhq7VWN-NxQ14%)z|l-npJHz6X`_IE=!_kf+pM5>)&N046;Oc}Y3WKYBBMWzq} zpc@>R!ovqph)#x|3TjBwB|V`SoFzdmY)h@E6MITBm{WjlLwJIkr`dm*$3t!*4{Q1~ zIpNSv+dU(7IY~7p$5(**49}8}Zq|erCljze7~9!b*&W52#lhJSHf$7geU3%K=my&D z1T#zJ7YN;8=3RP|F_>}V5fI1eWM+OJF=eg>!^xM1C&G>$71LX{E+@8Wkfy$Mx9jzh z$H_Ao0C}=GMZ0i5V@@KgIWK2inWbgSc?xOac}ja-2@XIIx%5Z#iPB2~Mw?~3Eu#t? zg&BT?*b24X8N3y0FTvEj!ci-Sx1e(hJ7d-~s|NN*55JM^gPB7NWjK=K0@accMvwdFMB>VTn7o!Efg z*mfOQ=24fUPhvgVt?x;rK3A&Hrw@6k&SR$Hk(Y%?*mdet6PAddK0%RlLv2JWm!naA zYz^P}uQoz&t-O%wY0}OsYY~vgwXNAisG2HHFy@t%OxI>K#MRcJmAbn;<)EnV@_doX z%w3-SP=p*-%q~yq1tT9yCIucoz!M7^q^gA^cnlb0_b#0`cXa3>sxQW)54c6wN$Tyz z==ws7Ir=)|aI}Xc^r7H5 z<1P&M|3s)g7?pMom65s81)m=V*E6BCj*sb4X)lEPQ~~eLL7Dt3CXq`|WbTwvxUA1( zuD@1^DD-ma_>TcZMMWYGIfl{Xw|g+BTY;u*oi}K zRG67Fu4AQ;t*&4S}C}I1ha~w)k1~# zMHGFZVi&G0jXH~k3a7v6(~OT{R9!O`{}Z`3?A5#iYR+lK13+**`&4zDP{IwsTE4L} z_lm+N>KN>er*el&@uI0VAZ%bw0Pv#;?Q5^jGe`yzqXB`yx7VJJxT=! z&f!CUmGryW+v?EY(8Fl+H=lO9{YoO74*it?PZkapg}8cD0DVXvMD7*XW$vH2-IQ)g z(MB(Kt3Wk1EK;7Y06TbOSZ0P$S}YaxCa+N1VrV